@import url(./theme.css);

.row {
    --bs-gutter-x: 30px
}

.gutter-y-30 {
    --bs-gutter-y: 30px
}

body {
    font-family: var(--thm-landing-font);
    color: var(--thm-landing-gray);
    font-size: 16px;
    line-height: 30px;
    font-weight: 400
}

a {
    color: var(--thm-landing-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--thm-landing-font-two);
    color: var(--thm-landing-black);
    margin: 0
}

p {
    margin: 0
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999
}

.preloader {
    width: 60px;
    height: 60px;
    display: inline-block;
    padding: 0;
    text-align: left;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px
}

.preloader span {
    position: absolute;
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background: var(--thm-landing-base);
    -webkit-animation: preloader 1.3s linear infinite;
    animation: preloader 1.3s linear infinite
}

.preloader span:last-child {
    animation-delay: -0.9s;
    -webkit-animation-delay: -0.9s
}

@keyframes preloader {
    0% {
        transform: scale(0, 0);
        opacity: .5
    }

    100% {
        transform: scale(1, 1);
        opacity: 0
    }
}

@-webkit-keyframes preloader {
    0% {
        -webkit-transform: scale(0, 0);
        opacity: .5
    }

    100% {
        -webkit-transform: scale(1, 1);
        opacity: 0
    }
}

.scroll-to-top {
    display: flex;
    align-items: center;
    width: auto;
    height: 35px;
    background: #fff0;
    position: fixed;
    bottom: 60px;
    right: -12px;
    z-index: 99;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: rotate(-90deg);
    cursor: pointer;
    transition: all 0.2s ease
}

.scroll-to-top:hover {
    color: var(--thm-landing-base)
}

.scroll-to-top__text {
    display: inline;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 700;
    margin-left: 10px
}

.scroll-to-top__wrapper {
    display: inline-block;
    width: 30px;
    height: 4px;
    background-color: var(--thm-landing-base);
    position: relative;
    overflow: hidden
}

.scroll-to-top__inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--thm-landing-black)
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    bottom: 70px
}

.container {
    padding-left: 15px;
    padding-right: 15px
}

@media (min-width:1200px) {
    .container {
        max-width: 1200px
    }
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden
}

.thm-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    font-weight: 700;
    font-size: 16px;
    color: var(--thm-landing-white);
    background-color: var(--thm-landing-base);
    padding: 15px 40px 15px;
    border-radius: var(--thm-landing-bdr-radius);
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    overflow: hidden;
    font-family: var(--thm-landing-font-two);
    text-transform: uppercase;
    letter-spacing: .1em;
    z-index: 1;
}

.thm-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--thm-landing-black-rgb), .10);
    z-index: -1
}

.thm-btn::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 150%;
    height: 500%;
    border-radius: 45%;
    background-position: bottom top;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .3s;
    transition-property: all;
    transform-origin: top;
    transform-style: preserve-3d;
    transform: scaleY(1) translateX(-50%);
    background-color: var(--thm-landing-base);
    z-index: -1
}

.thm-btn:hover::after {
    width: 0;
    height: 0;
    transform: scaleY(1) translateX(-50%)
}

.thm-btn:hover {
    color: var(--thm-landing-black);
    transition-delay: 400ms
}

.thm-btn span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1
}

.thm-btn span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: -3px;
    bottom: 0;
    background-position: center top;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .3s;
    transition-property: all;
    transform-origin: top;
    transform-style: preserve-3d;
    transform: scaleY(0);
    background-color: var(--thm-landing-white);
    z-index: -1
}

.thm-btn:hover span::before {
    transform: scaleY(1);
    transition-delay: 400ms
}

.hero-section {
    position: relative;
    display: block;
    padding: 100px 0 650px;
    overflow: hidden;
    z-index: 2
}

.hero-section__bg {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1
}

.hero-section__bg::before {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: .7;
    content: "";
    z-index: -1
}

.hero-section__img-one,
.hero-section__img-two,
.hero-section__img-three,
.hero-section__img-four,
.hero-section__img-five {
    position: absolute
}

.hero-section__img-one img,
.hero-section__img-two img,
.hero-section__img-three img,
.hero-section__img-four img,
.hero-section__img-five img {
    max-width: 100%;
    height: auto;
    display: block
}

.hero-section__img-one {
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10
}

.hero-section__img-two {
    bottom: -15px;
    left: 30%;
    transform: translateX(-50%);
    z-index: 2
}

.hero-section__img-three {
    bottom: -15px;
    left: 15%;
    transform: translateX(-50%)
}

.hero-section__img-four {
    bottom: -15px;
    right: 30%;
    transform: translateX(50%);
    z-index: 2
}

.hero-section__img-five {
    bottom: -15px;
    right: 15%;
    transform: translateX(50%);
    z-index: 1
}

.hero-section__img-one img {
    width: clamp(220px, 30vw, 570px)
}

.hero-section__img-two img,
.hero-section__img-four img {
    width: clamp(180px, 24vw, 470px)
}

.hero-section__img-three img,
.hero-section__img-five img {
    width: clamp(140px, 21vw, 390px)
}

.hero-section__inner {
    position: relative;
    text-align: center;
    z-index: 1
}

.heor-section__title {
    color: var(--thm-landing-white);
    font-size: 55px;
    line-height: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 38px;
    margin-bottom: 28px
}

.hero-section__page-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px
}

.hero-section__page-list li {
    font-size: 25px;
    font-weight: 600;
    color: var(--thm-landing-white);
    text-transform: uppercase;
    letter-spacing: .05em;
    font-family: var(--thm-landing-font-two);
}

.hero-section__page-list li span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--thm-landing-base)
}

.hero-section__btns-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 45px
}

@media (max-width:991px) {
    .hero-section {
        padding: 80px 0 500px
    }

    .heor-section__title {
        font-size: 40px
    }
}

@media (max-width:767px) {
    .hero-section {
        padding: 60px 0 260px
    }

    .heor-section__title {
        font-size: 32px
    }

    .hero-section__img-one {
        bottom: 0
    }

    .hero-section__page-list li {
        font-size: 16px
    }

    .hero-section__btns-box {
        flex-direction: column
    }

    .hero-section__img-two {
        left: 37%;
        bottom: -35px
    }

    .hero-section__img-three {
        left: 21%
    }

    .hero-section__img-four {
        right: 37%;
        bottom: -35px
    }

    .hero-section__img-five {
        right: 21%
    }
}

.demo-one {
    position: relative;
    display: block;
    padding: 120px 0 90px
}

.demo-one_shape {
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: luminosity;
    opacity: .2
}

.demo-one_shape img {
    width: auto
}

.demo-one_shape1 {
    position: absolute;
    bottom: 0;
    right: 0;
    mix-blend-mode: luminosity;
    opacity: .2
}

.demo-one_shape1 img {
    width: auto
}

.demo-one .row {
    justify-content: center
}

.demo-one__single {
    background-color: var(--thm-landing-white);
    box-shadow: 0 10px 60px 0 rgb(0 0 0 / 7%);
    text-align: center;
    border-radius: var(--thm-landing-bdr-radius);
    transition: 500ms ease;
    transform: translateY(0);
    margin-bottom: 30px
}

.demo-one__single:hover {
    transform: translateY(-10px)
}

.demo-one__image {
    position: relative;
    overflow: hidden;
    border-top-left-radius: var(--thm-landing-bdr-radius);
    border-top-right-radius: var(--thm-landing-bdr-radius)
}

.demo-one__image img {
    max-width: 100%;
    width: 100%;
    border-top-left-radius: var(--thm-landing-bdr-radius);
    border-top-right-radius: var(--thm-landing-bdr-radius);
    transition: filter 500ms ease;
    filter: blur(0)
}

.demo-one__single:hover .demo-one__image img {
    filter: blur(2px)
}

.demo-one__btns {
    background-color: rgba(var(--thm-landing-black-rgb), .70);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    transform: scale(1, 0);
    transition: transform 500ms ease, opacity 600ms linear;
    transform-origin: top center;
    opacity: 0
}

.demo-one__single:hover .demo-one__btns {
    transform: scale(1, 1);
    opacity: 1;
    transform-origin: bottom center
}

.demo-one__title {
    margin: 0;
    text-align: center;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    color: var(--thm-landing-black);
    text-transform: capitalize;
    padding-top: 20px;
    padding-bottom: 22px
}

.demo-one__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0 95%/0px 1px no-repeat;
    transition: all 500ms ease
}

.demo-one__title a:hover {
    background-size: 100% 1px
}

.demo-one__btn {
    padding: 15px 20px 15px;
    width: 160px;
    text-align: center
}

.feature {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-landing-primary);
    padding: 103px 0 90px;
    z-index: 1
}

.feature_shape1 {
    position: absolute;
    top: 0;
    right: 0;
    mix-blend-mode: luminosity;
    opacity: .05
}

.feature_shape1 img {
    width: auto
}

.feature_shape2 {
    position: absolute;
    left: 0;
    bottom: 0;
    mix-blend-mode: luminosity;
    opacity: .05
}

.feature_shape2 img {
    width: auto
}

.section-title {
    position: relative;
    display: block;
    margin-bottom: 60px
}

.section-title__title {
    color: var(--thm-landing-black);
    font-size: 56px;
    line-height: 1.2em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 11px
}

.section-title .round-box {
    position: relative;
    display: block;
    width: 12px;
    height: 12px;
    border: 3px solid var(--thm-landing-base);
    border-radius: 50%;
    margin: 20px auto 0
}

.section-title .round-box::before {
    position: absolute;
    top: 2px;
    left: -50px;
    width: 40px;
    height: 3px;
    background: var(--thm-landing-base);
    content: ""
}

.section-title .round-box::after {
    position: absolute;
    top: 2px;
    right: -50px;
    width: 40px;
    height: 3px;
    background: var(--thm-landing-base);
    content: ""
}

.feature__list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -15px
}

.feature__list li {
    flex: 0 0 20%;
    max-width: 20%;
    width: 100%;
    padding: 0 15px;
    margin-bottom: 30px;
    cursor: pointer
}

.feature__list-single {
    position: relative;
    display: block;
    background-color: var(--thm-landing-white);
    box-shadow: 0 10px 60px 0 rgb(0 0 0 / 7%);
    text-align: center;
    padding: 50px 10px 47px;
    border-radius: var(--thm-landing-bdr-radius)
}

.feature__icon {
    position: relative;
    display: block
}

.feature__icon img {
    display: block;
    height: 60px;
    margin: 0 auto 0;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1)
}

.feature__list li:hover .feature__icon img {
    transform: scale(.9)
}

.feature__title {
    font-size: 20px;
    line-height: 20px;
    font-family: var(--thm-landing-font);
    color: var(--thm-landing-gray);
    margin-top: 27px
}

.inner-pages {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 103px 0 82px;
    z-index: 2
}

.inner-pages__shape {
    position: absolute;
    bottom: 0;
    right: 0;
    mix-blend-mode: luminosity;
    opacity: .1
}

.inner-pages__shape img {
    width: auto
}

.inner-pages__shape2 {
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: luminosity;
    opacity: .1
}

.inner-pages__shape2 img {
    width: auto
}

.inner-pages .container {
    max-width: 1320px
}

.inner-pages__inner {
    position: relative;
    display: block
}

.inner-pages__filter {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px
}

.inner-pages__filter li {
    position: relative;
    display: inline-block
}

.inner-pages__filter li+li {
    margin-left: 15px
}

.inner-pages__filter li p {
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 15px;
    line-height: 15px;
    color: var(--thm-landing-white);
    background-color: var(--thm-landing-base);
    padding: 16px 35px 14px;
    font-weight: 500;
    cursor: pointer;
    overflow: hidden;
    border-radius: 25px;
    text-transform: uppercase;
    transition: all 0.5s linear;
    z-index: 1;
}

.inner-pages__filter li.active p {
    color: var(--thm-landing-white)
}

.inner-pages__filter li p:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 0%;
    background-color: var(--thm-landing-black);
    transition: all 0.3s ease;
    z-index: -1
}

.inner-pages__filter li.active p:before {
    height: 100%
}

.inner-pages__single {
    position: relative;
    display: block;
    margin-bottom: 30px
}

.inner-pages__img {
    position: relative;
    display: block;
    background: var(--thm-landing-primary);
    padding: 20px 20px 20px;
    border-radius: 10px
}

.inner-pages__img-inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px
}

.inner-pages__img-inner img {
    width: 100%
}

.inner-pages__img-inner .btn-box {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    transform: translateY(90px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
    z-index: 2
}

.inner-pages__single:hover .inner-pages__img-inner .btn-box {
    opacity: 1;
    transform: translateY(0)
}

.inner-pages__img-inner .btn-box .thm-btn {
    width: 100%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    text-align: center;
}

.inner-pages__img-inner .btn-box .thm-btn:hover {
    color: var(--thm-landing-white)
}

.inner-pages__img-inner .btn-box .thm-btn span::before {
    background-color: var(--thm-landing-black)
}

.inner-pages__single-title {
    position: relative;
    display: block;
    text-align: center;
    margin-top: 16px
}

.inner-pages__single-title h2 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    text-transform: capitalize
}

.inner-pages__single-title h2 a {
    color: var(--thm-landing-black)
}

.inner-pages__single-title h2 a:hover {
    color: var(--thm-landing-base)
}

.responsive {
    position: relative;
    display: block;
    padding: 0
}

.responsive .img-box {
    position: relative;
    display: block
}

.responsive .img-box img {
    width: auto
}

.Sliding-text {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1
}

.Sliding-text__inner {
    position: relative;
    display: block
}

.Sliding-text__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    white-space: nowrap;
    min-width: 100%;
    margin: 0 -12px
}

.Sliding-text__list li {
    position: relative;
    display: block;
    padding: 0 12px
}

.Sliding-text__list li:first-child {
    margin-left: 24px
}

.Sliding-text__list li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--thm-landing-black);
    font-size: 24px;
    line-height: 24px;
    font-weight: 500;
    font-family: var(--thm-landing-font-two);
    background-color: var(--thm-landing-primary);
    border-radius: 8px;
    padding: 18px 25px 18px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease
}

.Sliding-text__list li a span {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 25px;
    padding-right: 20px
}

.Sliding-text__list li a:hover {
    background-color: var(--thm-landing-base);
    color: var(--thm-landing-white)
}

.Sliding-text__inner--two {
    margin-top: 15px
}

.main-footer {
    position: relative;
    display: block;
    background-color: var(--thm-landing-black);
    padding: 147px 0 0;
    overflow: hidden;
    z-index: 1
}

.main-footer__pattern {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: -1
}

.main-footer__img1 {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: .2;
    z-index: -1;
    mix-blend-mode: luminosity
}

.main-footer__top {
    position: relative;
    display: block
}

.main-footer__top .container {
    max-width: 1200px
}

.main-footer__top-inner {
    position: relative;
    display: block;
    text-align: center
}

.main-footer__title {
    font-size: 55px;
    font-weight: 700;
    color: var(--thm-landing-white);
    line-height: 60px;
    text-transform: uppercase
}

.main-footer__text-1 {
    font-size: 24px;
    line-height: 34px;
    color: #bababa;
    margin-top: 15px;
    margin-bottom: 46px
}

.main-footer__btn-box {
    position: relative;
    display: block
}

.main-footer__bottom {
    position: relative;
    display: block;
    margin-top: 110px
}

.main-footer__copyright {
    position: relative;
    display: block;
    text-align: center;
    font-size: 16px;
    color: var(--thm-landing-white);
    background-color: rgba(var(--thm-landing-white-rgb), .10);
    border-top-left-radius: var(--thm-landing-bdr-radius);
    border-top-right-radius: var(--thm-landing-bdr-radius);
    padding: 26px 0
}

.main-footer__copyright a {
    color: var(--thm-landing-white)
}

.main-footer__copyright a:hover {
    color: var(--thm-landing-base)
}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .heor-section__title {
        font-size: 60px
    }

    .feature__list-single {
        padding: 50px 10px 47px
    }

    .feature__title {
        font-size: 16px
    }

    .inner-pages__filter li p {
        padding: 16px 25px 14px
    }

    .inner-pages__shape {
        display: none
    }

    .responsive .img-box img {
        width: 100%
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .heor-section__title {
        font-size: 45px
    }

    .feature__list li {
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .main-footer__title {
        font-size: 40px;
        line-height: 50px
    }

    .inner-pages__shape {
        display: none
    }

    .inner-pages__filter li+li {
        margin-left: 10px
    }

    .inner-pages__filter li p {
        font-size: 14px;
        line-height: 14px;
        padding: 13px 17px 12px
    }

    .responsive .img-box img {
        width: 100%
    }
}

@media only screen and (max-width:767px) {
    .section-title__title {
        font-size: 35px
    }

    .section-title__text br {
        display: none
    }

    .heor-section__title {
        font-size: 28px
    }

    .hero-section__page-list {
        gap: 10px
    }

    .hero-section__page-list li {
        font-size: 20px;
        line-height: 20px
    }

    .hero-section__btns-box {
        flex-direction: column
    }

    .hero-section__logo a img {
        width: 150px
    }

    .feature__list li {
        flex: 0 0 50%;
        max-width: 50%
    }

    .main-footer__title {
        font-size: 30px;
        line-height: 40px
    }

    .main-footer__text-1 br {
        display: none
    }

    .main-footer {
        padding: 99px 0 0
    }

    .inner-pages .container {
        max-width: 540px
    }

    .inner-pages__filter li {
        display: block
    }

    .inner-pages__filter {
        display: block;
        max-width: 300px;
        margin: 0 auto 60px
    }

    .inner-pages__filter li+li {
        margin-left: 0;
        margin-top: 10px
    }

    .inner-pages__filter li p {
        justify-content: center
    }

    .responsive .img-box img {
        width: 100%
    }
}

@media only screen and (max-width:539px) {
    .feature__list li {
        flex: 0 0 100%;
        max-width: 100%
    }
}

.device-section {
    position: relative;
    width: 100%;
    min-height: 52vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.device-mockup-container {
    position: relative;
    width: 50%;
    max-width: 1400px;
    aspect-ratio: 16/9
}

.device-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/devices/responsive-img.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 10;
    pointer-events: none
}

.screen-layer {
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.screen-pc {
    top: 8%;
    left: 29%;
    width: 46%;
    height: 49%;
    z-index: 1;
}

.screen-laptop {
    top: 43%;
    left: 12%;
    width: 30%;
    height: 39%;
    z-index: 2
}

.screen-tablet {
    top: 46%;
    right: 11%;
    width: 25%;
    height: 34%;
    z-index: 3
}

.screen-mobile {
    bottom: 8%;
    left: 84%;
    width: 8%;
    height: 31%;
    z-index: 4
}

.screen-watch {
    bottom: 12%;
    left: 76%;
    width: 5%;
    height: 10%;
    z-index: 5
}

.screen-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

@media (max-width:1024px) {
    .device-mockup-container {
        max-width: 100%
    }
}

@media (max-width:768px) {
    .device-mockup-container {
        width: 100%
    }

    .device-section {
        min-height: 26vh
    }
}

.versions-container {
    max-width: 700px !important
}