/* font family */
@import url(https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap);

/* variable */
:root {
    --dark-gray: #1a1c22;
    --medium-gray: #646772;
    --white:#fff;
}

/* reset */
html {
    font-size: 16px;
    overflow-x: clip;
}
body { 
    color: var(--medium-gray);
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 30px;
    overflow-x: clip;
}
img {
    max-width: 100%;
    height: auto;
}
img, svg {
    vertical-align: middle;
}
section {
    padding: 110px 0;
}
section .sub-title {
    background-image: linear-gradient(70deg, #F0F2F8 0%, #F0F2F800 95%);
    border-radius: 50px 50px 50px 50px;
    padding: 4px 25px 3px;
    color: var(--dark-gray);
    font-size: 12px;
    line-height: 30px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 28px;
    text-transform: uppercase;
}
section .title-row {
    margin-bottom: 5.5%;
}
.cover-background {
    position: relative;
    background-repeat: no-repeat;
    overflow: hidden;
    background-position: center center;
    background-size: cover;
}
.container, .container-fluid, .row > * {
    padding: 0 15px;
}
.row {
    margin-right: -15px;
    margin-left: -15px;
}

/* Typography */
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    font-weight: inherit;
    color: var(--dark-gray);
}  
h1, .h1 {
    font-size: 4.688rem;
    line-height: 4.688rem;
}  
h2, .h2 {
    font-size: 3.438rem;
    line-height: 3.438rem;
    letter-spacing: -2px;
    font-weight: 600;
}  
h3, .h3 {
    font-size: 2.813rem;
    line-height: 3.125rem;
}  
h4 {
    font-size: 2.375rem;
    line-height: 2.7rem;
}  
h5 {
    font-size: 2rem;
    line-height: 2.2rem;
}  
h6 {
    font-size: 1.75rem;
    line-height: 1.95rem;
}

/* Font weight */
.fw-100 {
    font-weight: 100 !important;
}
.fw-200 {
    font-weight: 200 !important;
}
.fw-300 {
    font-weight: 300 !important;
}
.fw-400 {
    font-weight: 400 !important;
}
.fw-500 {
    font-weight: 500 !important;
}
.fw-600 {
    font-weight: 600 !important;
}
.fw-700 {
    font-weight: 700 !important;
}
.fw-800 {
    font-weight: 800 !important;
}
.fw-900 {
    font-weight: 900 !important;
}

/* button */
.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
    border-color: initial;
    color: initial;
  }
.btn-box-shadow {
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s cubic-bezier(0.2, 0, 0.3, 1);
    transition: all 0.3s cubic-bezier(0.2, 0, 0.3, 1);
}
.btn-box-shadow:hover {
    -webkit-box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
    -webkit-transform: translate3d(0, -2px, 0);
    transform: translate3d(0, -2px, 0);
}
.btn {
    font-size: 16px;
    line-height: 32px;
    display: inline-block;
    border: 2px solid transparent;
    border-radius: 5px;
    letter-spacing: 0;
    width: auto;
    font-weight: 500;
    transition: all 300ms ease-in-out;
}
.btn:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.btn:hover {
    background-color: inherit;
}
.btn i, .btn svg {
    position: relative;
    margin-left: 6px;
}
.left-icon i, .left-icon svg {
    margin-right: 6px;
    margin-left: 0;
}
.btn.btn-switch-text {
    padding: 0;
}
.btn.btn-switch-text > span {
    padding: 9px 25px 11px 25px;
}
.btn.btn-switch-text.btn-medium > span {
    padding: 11px 28px 12px 28px;
}
.btn.btn-switch-text > span {
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.btn.btn-switch-text .btn-double-text {
    transition: opacity 0.65s, transform 0.85s;
    transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
}
.btn.btn-switch-text .btn-double-text:before {
    content: attr(data-text);
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    top: 50%;
    opacity: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    transition: opacity 0.5s, transform 0.8s;
    transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
}
.btn.btn-switch-text:hover .btn-double-text, .btn.btn-switch-text:active .btn-double-text {
    transform: translateY(-200%);
}
.btn.btn-switch-text:hover .btn-double-text:before, .btn.btn-switch-text:active .btn-double-text:before {
    transform: translate(-50%, 150%);
    opacity: 1;
}
.btn.btn-dark-gray {
    background-color: var(--dark-gray);
    color: var(--white);
}
.btn.btn-dark-gray:hover, .btn.btn-dark-gray:active {
    background-color: transparent;
    border-color: var(--dark-gray);
    color: var(--dark-gray);
}
.btn.btn-box-shadow.btn-dark-gray:hover, .btn.btn-box-shadow.btn-dark-gray:active {
    background: var(--dark-gray);
    color: var(--white);
}
.btn.btn-white {
    background-color: var(--white);
    color: var(--dark-gray);
}
.btn.btn-white:hover, .btn.btn-white:active {
    background-color: transparent;
    border-color: var(--white);
    color: var(--dark-gray);
}
.btn.btn-box-shadow.btn-dark-gray:hover, .btn.btn-box-shadow.btn-dark-gray:active {
    background: var(--dark-gray);
    color: var(--white);
}
.btn.btn-box-shadow.btn-white:hover, .btn.btn-box-shadow.btn-white:active {
    background: var(--white);
    color: var(--dark-gray);
}
.btn.btn-link {
    font-size: 14px;
    padding: 0 0 2px;
    position: relative;
    text-decoration: none;
    border: 0;
    border-bottom: 2px solid;
    letter-spacing: 0;
    background-color: transparent;
    color: var(--dark-gray);
    line-height: 1.5;
}
.btn.btn-hover-animation-switch.btn-link {
    border-bottom: 0;
    padding-bottom: 0;
}
.btn.btn-hover-animation-switch.btn-link:hover {
    opacity: 1;
}
.btn.btn-hover-animation-switch > span {
    display: inline-flex;
    align-items: center;
}
.btn.btn-hover-animation-switch .btn-text {
    margin-left: -13px;
    position: relative;
    z-index: 3;
    transition: transform 0.6s 0.125s cubic-bezier(0.1, 0.75, 0.25, 1);
}
.btn.btn-hover-animation-switch .btn-icon {
    margin-left: 6px;
    position: relative;
    transition: opacity 0.4s 0.25s, transform 0.6s 0.25s;
    transition-timing-function: cubic-bezier(0.1, 0.75, 0.25, 1);
    line-height: 0;
    z-index: 3;
}
.btn.btn-hover-animation-switch .btn-icon i,
.btn.btn-hover-animation-switch .btn-icon svg {
    margin: 0;
    line-height: 0;
}
.btn.btn-hover-animation-switch .btn-icon svg {
    width: 12px;
}
.btn.btn-hover-animation-switch .btn-icon + .btn-icon {
    order: -2;
    opacity: 0;
    transition-delay: 0s;
    margin-left: 0;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
}
.btn.btn-hover-animation-switch:hover .btn-text {
    transition-delay: 0.1s;
    transform: translateX(23px);
}
.btn.btn-hover-animation-switch:hover .btn-icon {
    transition-delay: 0s;
    transform: translateX(10px);
    opacity: 0;
}
.btn.btn-hover-animation-switch:hover .btn-icon + .btn-icon {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.225s;
}
.btn.btn-hover-animation-switch.btn-icon-left .btn-text {
    margin-right: -15px;
    margin-left: 0px;
    position: relative;
    z-index: 3;
}
.btn.btn-hover-animation-switch.btn-icon-left .btn-icon {
    opacity: 0;
    margin-left: 0;
    transition-delay: 0s;
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
}
.btn.btn-hover-animation-switch.btn-icon-left .btn-icon + .btn-icon {
    opacity: 1;
    margin-left: 0;
    margin-right: 6px;
    transition: opacity 0.4s 0.25s, transform 0.6s 0.25s;
    transition-timing-function: cubic-bezier(0.1, 0.75, 0.25, 1);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}
.btn.btn-hover-animation-switch.btn-icon-left:hover .btn-text {
    transition-delay: 0.1s;
    transform: translateX(-20px);
}
.btn.btn-hover-animation-switch.btn-icon-left:hover .btn-icon {
    transform: translateX(0px);
    opacity: 1;
    transition-delay: 0.225s;
}
.btn.btn-hover-animation-switch.btn-icon-left:hover .btn-icon + .btn-icon {
    opacity: 0;
    transition-delay: 0s;
    transform: translateX(-10px);
}

/* video */
.fit-videos {
    overflow: hidden;
}
.fit-videos video {
    background-size: cover;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

/* Float animation */ 
.animation-float {
    animation: float 2s linear .5s infinite alternate both;
}

/* vertical counter */ 
.vertical-counter-number {
    overflow: hidden;
    width: 100%;
    height: auto;
}
.vertical-counter-number ul {
    text-align: center;
    margin: 0;
    padding: 0;
    list-style: none;
    will-change: transform;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.counter-style-01 .vertical-counter:after {
    content: attr(data-text);
    display: inline-block;
    font-size: 2.2rem;
    top: -10px;
    position: relative;
    margin-left: 1px;
    word-break: normal;
}
.counter-style-01 .counter-title {
    font-size: 17px;
    line-height: 26px;
    display: block;
    font-weight: 500;
    color: var(--dark-gray);
}

/* label */
.popular-label,
.premium-label,
.free-label,
.new-label {
    background-color: #FFEDED;
    color: #E75050;
    display: table;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: normal;
    white-space: normal;
    border-radius: 13px 13px 13px 13px;
    padding: 6px 15px 6px 15px;
}
.premium-label {
    background-color: #EAEEFF;
    color: #2C51F2;
}
.free-label {
    background-color: #dbf2e7;
    color: #1b855d;
}
.new-label {
    background-color: #e75050;
    color: #FFFFFF;
}

/* width */
.w-50 { width: 50% !important; }
.w-55 { width: 55% !important; }
.w-60 { width: 60% !important; }
.w-65 { width: 65% !important; }
.w-70 { width: 70% !important; }
.w-75 { width: 75% !important; }
.w-80 { width: 80% !important; }
.w-85 { width: 85% !important; }
.w-90 { width: 90% !important; }
.w-95 { width: 95% !important; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(5px); }
    100% { transform: translateY(10px); }
}

.animation-rotation {
    -webkit-animation: rotation 8s infinite linear;
}
  
@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
    }
}

/* accordion */
.accordion .accordion-item {
    border: none;
}
.accordion-item a {
    color: #232323;
    text-decoration: none;
}
.accordion-item .accordion-title {
    border-radius: 5px;
    display: flex;
    font-size: 18px;
    font-weight: 600;
    padding: 13px 20px;
    align-items: center;
}
.accordion-item .accordion-title svg {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    fill: var(--dark-gray);
}
.accordion-item.active-accordion .accordion-title {
    background-color: #f4f5fa;
}

/* swiper css */
.marquee-slide {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
    position: relative;
}
.swiper-width-auto .swiper-slide {
    width: auto;
}
.big-text-marquee .swiper-slide {
    font-size: 15.625rem;
    line-height: 15.625rem;
    font-weight: 700;
    letter-spacing: -6px;
    padding: 0px 0px 20px 0px;
    color: #EBEEF5;
}
.big-text-marquee .image {
    position: absolute;
    z-index: 1;
    top: -40px;
    left: 0;
    text-align: center;
}
.big-text-marquee .image img {
    margin-left: 345px;
}
.big-text-marquee .image.right {
    width: auto;
    left: inherit;
    top: 45px;
    right: 300px;
}
.big-text-marquee .image.right img {
    margin: 0;
    width: auto;
}
.big-text-marquee {
    padding: 0 0 50px 0;
}

/* Tab style 01 */
.tab-style-01 .nav-tabs > li {
    width: 100%;
}
.tab-style-01 .nav-tabs > li.nav-item {
    padding: 0;
}
.tab-style-01 .nav-tabs .nav-item .nav-link {
    font-size: 18px;
    font-weight: 600;
    border: none;
    padding: 13px 25px 11px 25px;
    margin-bottom: 12px;
    background: transparent;
    border-radius: 5px;
    -webkit-transition: all 0.3s cubic-bezier(0.12, 0, 0.39, 0);
    transition: all 0.3s cubic-bezier(0.12, 0, 0.39, 0);
    display: flex;
    align-items: center;
}
.tab-style-01 .nav-tabs .nav-item .nav-link svg {
    display: inline-flex; 
    height: 24px;
    width: 24px;
    margin-right: 12px;
    fill: var(--dark-gray);
}
.tab-style-01 .nav-tabs .nav-item .nav-link span {
    color: #15161d;
    -webkit-transition: all 0.3s cubic-bezier(0.12, 0, 0.39, 0);
    transition: all 0.3s cubic-bezier(0.12, 0, 0.39, 0);
}
.tab-style-01 .nav-tabs .nav-item .nav-link:hover, .tab-style-01 .nav-tabs .nav-item .nav-link.show, .tab-style-01 .nav-tabs .nav-item .nav-link.active {
    background: #f4f5fa;
    color: var(--dark-gray);
}

/* Only for safari browser */
@media not all and (min-resolution: 0.001dpcm) {
    [data-anime] [class*=text-shadow-] {
        text-shadow: none;
    }
    [data-anime][class*=text-shadow-] {
        text-shadow: none;
    }
    [data-fancy-text] [class*=text-shadow-] {
        text-shadow: none;
    }
    [data-fancy-text][class*=text-shadow-] {
        text-shadow: none;
    }
    /* font awesome icon gradient color */
    .review-star-icon i {
        display: inline;
    }
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    /* color issue */
    .text-white a[href^=tel] {
        color: var(--white);
    }
    .text-dark-gray a[href^=tel] {
        color: var(--text-dark-gray);
    }
}  
.no-animation .anime-text .whitespace {
    display: inline-block;
}
.no-animation .anime-text .whitespace::after {
    content: "r";
    opacity: 0;
    font-size: 70%;
}
.no-animation [data-anime], .no-animation [data-fancy-text] {
    opacity: 1;
    transition: none;
}

/* Anime animation */
[data-anime] {
    opacity: 0;
    transition: none;
}
[data-anime].appear {
    opacity: 1;
}
[data-anime].btn {
    transition: none;
}
[data-anime].btn.anime-complete {
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

/* Box shadow animation  */
[data-shadow-animation] {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}
[data-shadow-animation].shadow-in {
    box-shadow: 0 20px 100px rgba(0, 0, 0, 0.1);
}
[data-shadow-animation].shadow-in svg {
    opacity: 1;
    transition-delay: 0.35s;
}
[data-shadow-animation] svg {
    opacity: 0;
    transition: opacity 0.65s cubic-bezier(0.5, 1, 0.5, 1);
}

/* Highlight separator */
  .highlight-separator[data-shadow-animation] {
    box-shadow: none !important;
    display: inline-block;
  }
  .highlight-separator[data-shadow-animation] span {
    clip-path: inset(0px 100% 0px 0px);
    float: left;
    width: 100%;
    height: 20px;
    transition: clip-path 1s;
    transition-timing-function: cubic-bezier(0.4, 0.6, 0.4, 1);
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .highlight-separator[data-shadow-animation] span img {
    position: absolute;
    left: 0;
    bottom: 0;
    transition: none;
    width: 100%;
    height: 14px;
  }
  .highlight-separator.shadow-in[data-shadow-animation] span {
    clip-path: inset(0px 0 0px 0px);
  }

/* Data top bottom transition animation */
[data-top-bottom] {
    transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Parallax liquid  */
[data-parallax-liquid] {
    will-change: transform;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateY(0) scale(1.201);
    position: relative;
}
[data-parallax-liquid] .liquid-parallax {
    will-change: transform;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateY(0px) scale(1.201);
    position: relative;
    top: 50px;
}

/* header */
header .navbar {
    left: 0;
    z-index: 99;
    transition: .3s;
    padding: 0;
    position: absolute;
    width: 100%;
}
header .container-fluid {
    padding-left: 45px;
    padding-right: 45px;
}
header .navbar-brand {
    margin-right: 0;
    vertical-align: middle;
    padding: 30px 0;
    display: inline-block;
    font-size: 0;
}
header .navbar [class*=col-] {
    padding: 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
}
header .navbar [class*=col-], 
header .navbar [class*=col-] .navbar-nav {
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
}
header .navbar [class*=col-] .navbar-nav .nav-item, 
header .navbar [class*=col-] .navbar-nav .nav-item a,
header .navbar [class*=col-] .header-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
header .navbar [class*=col-].text-end {
    justify-content: flex-end !important;
}
.header-button .btn {
    background-color: #292c36;  
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 0;
    font-size: 14px;
}
.header-button .btn svg {
    margin:-2px 0 0 5px;
}
.header-button .btn:hover {
    background-color: #292c36 !important; 
}
.header-button .btn.btn-switch-text.btn-medium > span {
    padding: 7px 20px 7px 20px;
}

.navbar ul li {
    list-style: none;
}
.navbar .navbar-nav .nav-link {
    font-size: 16px;
    line-height: 20px;
    padding: 10px 22px;
    position: relative;
    font-weight: 500;
    opacity: 1;
    word-break: normal;
    transition: .3s;
    color: #fff;
}
.navbar .navbar-nav .nav-item:hover .nav-link {
    opacity: .6;
}
.navbar .navbar-nav .dropdown.submenu {
    position: inherit;
}
.navbar .navbar-nav .dropdown .dropdown-menu {
    box-shadow: 0 95px 75px 0 rgba(0, 0, 0, 0.8);
    background-color:#15161d;
    margin: 0;
    padding:55px 0 60px;
    border: 0;
    top: 100%;
    -webkit-animation: hide-animation .5s;
    animation: hide-animation .5s;
    border-radius: 0;
}
.navbar.submenu-light {
    background-color: #15161d;
}
.navbar .navbar-nav .dropdown.open .dropdown-menu {
    display: block;
    -webkit-animation: show-animation .5s;
    animation: show-animation .5s;
}
@-webkit-keyframes hide-animation {
    0% { 
        opacity: 1; }
    to { 
        opacity: 0; } 
}
@-webkit-keyframes show-animation {
    0% {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
.navbar .navbar-nav .nav-item>.dropdown-toggle {
    display: none;
}
.navbar .navbar-nav .submenu-content {
    width: 100%;
    border-top: 1px solid #424242 !important;
    left: 0;
}
.navbar .navbar-nav .submenu-content .mega-menu {
    width: 1190px;
}
.navbar .navbar-nav .submenu-content ul {
    padding: 0 15px 0;
    list-style: none;
}
.navbar .navbar-nav .submenu-content .blog-mega-menu {
    padding: 0;
}
.navbar .navbar-nav .submenu-content ul:nth-child(4n+1) {
    clear: both;
}
.navbar .navbar-nav .nav-item .dropdown-menu a {
    color: #a8a8a8;
    font-size: 15px;
    line-height: 26px;
    padding: 4px 0px 4px 0px;
    font-weight: 400;
    text-decoration: none; 
    transition: .3s;
}
.navbar .navbar-nav .dropdown .dropdown-menu li a:hover {
    padding-left: 3px;
    color: #fff;
}
.navbar .navbar-nav .dropdown .dropdown-menu a .label {
    display: inline-block;
    padding: 5px 10px;
    font-size: 10px;
    line-height: initial;
    margin-left: 8px;
    font-weight: 600;
    white-space: nowrap;
    text-transform: uppercase;
    border-radius: 26px;
    color: rgba(255, 255, 255, .60);
}
.navbar .bg-solitude-blue {
    background-color: #253384;
}
.navbar .bg-light-red {
    background-color: #892828;
}
.navbar .bg-light-majorelle-blue {
    background-color: #423282;
}
.navbar .bg-white-ice {
    background-color: #2a6e39;
}
.navbar .navbar-nav .simple-dropdown .dropdown-menu {
    display: none;
    width: 245px;
    padding: 30px 0;
    border-radius: 5px;
}
.navbar .navbar-nav .simple-dropdown.dropdown-with-icon .dropdown-menu {
    width: 325px;
    padding: 35px 40px;
}
.navbar .navbar-nav .simple-dropdown.dropdown-with-icon .dropdown-menu li {
    padding: 0;
}
.navbar .navbar-nav .simple-dropdown.dropdown-with-icon .dropdown-menu li:last-child .navbar-icon-box {
    margin-bottom: 0;
}
.navbar .navbar-nav .simple-dropdown .dropdown-menu .dropdown {
    position: relative;
}
.navbar .navbar-nav .simple-dropdown .dropdown-menu li {
    padding: 0 45px 0 40px;
}
.navbar .navbar-nav .simple-dropdown .dropdown-menu li a {
    padding: 4px 0px 4px 0px;
}
.navbar .navbar-nav .simple-dropdown .dropdown-menu .dropdown img {
    position: absolute;
    right: 35px;
    top: 11px;
    opacity: 0.7;
    width: 14px;
    height: 14px;
    transition: 0.5s;
}
.navbar .navbar-nav .simple-dropdown .dropdown-menu .dropdown-menu {
    display: none;
    position: absolute; 
    left: calc(100% + 1px);
    top: -35px;
}
.navbar .navbar-nav .simple-dropdown .dropdown-menu .dropdown.open>.dropdown-menu {
    display: block;
}
.navbar .navbar-nav .simple-dropdown .dropdown-menu .dropdown .dropdown-menu {
    -webkit-animation: none;
    animation: none;
}
.navbar-nav .simple-dropdown .dropdown-menu .dropdown:hover>a {
    color: #fff;
}
.navbar-nav .simple-dropdown .dropdown-menu .dropdown:hover>a img {
    opacity: 1;
}
.navbar .navbar-nav .submenu-content ul .sub-title {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 8px;
}
.navbar .shop-feature-box {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    position: relative;
}
.navbar .shop-feature-box .box-link,
.navbar .navbar-icon-box .box-link {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    padding: 0 !important;
}
.navbar .shop-feature-box:first-child {
    padding-top: 0;
}
.navbar .shop-feature-box:last-child {
    border: 0;
    padding-bottom: 0;
}
.navbar .shop-feature-box .navbar-feature-box {
    display: flex;
}
.navbar .shop-feature-box .navbar-feature-box .feature-box-icon svg {
    max-height: 54px;
}
.navbar .shop-feature-box .navbar-feature-box .feature-box-content {
    margin:5px 0 0 16px;
    color: #A8A8A8;
    font-size: 15px;
    line-height: 22px;
}
.navbar .shop-feature-box .navbar-feature-box .feature-box-content p {
    margin: 0;
}
.navbar .shop-feature-box .navbar-feature-box .feature-box-content span {
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    display: block;
    font-weight: 500;    
}
.navbar .navbar-nav .submenu-content .features-ai-box {
    padding:0 0 0 75px;
}
.navbar .shop-feature-box.image-feature-box {
    background-color: #C5184F;
    border-radius: 6px 6px 6px 6px;
    padding: 0;
    margin-bottom: 13px;
}
.navbar .shop-feature-box.image-feature-box::before {
    content: "";
    background-image: url(../images/arrow-up-right.svg);
    width: 20px;
    height: 20px;
    position: absolute;
    right: 10px;
    top: 12px;
    opacity: .80;
    background-size: contain;
}
.navbar .shop-feature-box.setup-wizard {
    background-color: #D75F1F;
}
.navbar .shop-feature-box.animations-engine {
    background-color: #7629E1;
}
.navbar .shop-feature-box.template-library {
    background-color: #2A9D4B;
}
.navbar .shop-feature-box.image-feature-box .navbar-feature-box .feature-box-content {
    padding: 21px 0 21px;
    margin: 0;
}
.navbar .shop-feature-box.image-feature-box .navbar-feature-box .feature-box-content p {
    color: #fff;
    opacity: 0.7;
}
.navbar .shop-feature-box.image-feature-box .navbar-feature-box .feature-box-icon {
    display: flex;
    align-items: center;
    margin-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, .20);
}
.navbar .navbar-icon-box {
    width: 100%;
    position: relative;
    display: flex;
    margin-bottom: 25px;
}
.navbar .navbar-icon-box .icon {
    font-size: 26px;
    color: #fff;
}
.navbar .navbar-icon-box .icon svg {
    height: 26px;
    width: 26px;
    vertical-align: top;
}
.navbar .navbar-icon-box .content span {
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
}
.navbar .navbar-icon-box .content {
    margin:0px 0 0 12px;
    color: #A8A8A8;
    font-size: 15px;
    line-height: 22px;
}
.navbar .navbar-icon-box .content p {
    margin-bottom: 0;
}
.navbar .navbar-nav .submenu-content .premium-element {
    padding: 35px 40px;
    border-radius: 13px;
}
.navbar .navbar-nav .submenu-content .premium-element .sub-title {
    color: #15171c;
    font-weight: 600;
    font-size: 18px;
}
.navbar .navbar-nav .dropdown .dropdown-menu .premium-element li a,
.navbar .navbar-nav .dropdown .dropdown-menu .premium-element li a:hover {
    color: #15171c;
    font-size: 16px;
}
.navbar .explore-more-features {
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .15);
    margin-top: 15px;
    padding-top: 30px;
    margin-left: 15px;
    margin-right: 15px;
}
.navbar .navbar-nav .nav-item .explore-more-features .btn-explore-more {
    padding: 0 0 2px;
    position: relative;
    border: 0;
    border-bottom: 2px solid #fff;
    letter-spacing: 0;
    background-color: transparent;
    font-size: 16px;
    line-height: 20px;
    box-shadow: none;
    border-radius: 0;
    display: inline-block !important;
    font-weight: 500;
    color: #fff;
}
.btn-explore-more:hover {
    border-bottom: 2px solid #fff;
}
.btn-explore-more > span {
    display: inline-flex;
    align-items: center;
  }
  .btn-explore-more .btn-text {
    margin-left: -26px;
    position: relative;
    z-index: 3;
    transition: transform 0.6s 0.125s cubic-bezier(0.1, 0.75, 0.25, 1);
  }
  .btn-explore-more .btn-icon {
    margin-left: 0;
    position: relative;
    transition: opacity 0.4s 0.25s, transform 0.6s 0.25s;
    transition-timing-function: cubic-bezier(0.1, 0.75, 0.25, 1);
    line-height: 0;
    z-index: 3;
  }
  .btn-explore-more .btn-icon i {
    margin: 0;
    line-height: 0;
    font-size: 26px;
  }
  .btn-explore-more .btn-icon svg {
    height: 26px;
    width: 26px; 
    margin-left:0;
  }
  .btn-explore-more .btn-icon + .btn-icon {
    order: -2;
    opacity: 0;
    transition-delay: 0s;
    margin-left: 0;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  .btn-explore-more:hover .btn-text {
    transition-delay: 0.1s;
    transform: translateX(26px);
  }
  .btn-explore-more:hover .btn-icon {
    transition-delay: 0s;
    transform: translateX(10px);
    opacity: 0;
  }
  .btn-explore-more:hover .btn-icon + .btn-icon {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.225s;
  }
  /* end header */

  /* landing page hero section */
.landing-hero-section {
    padding-bottom: 0;
    background-size: cover !important;
    background-position: center !important;
}
.landing-hero-section .hero-big-title {
    font-size: 15.625rem;
    line-height: 15.625rem;
    letter-spacing: -6px;
    background: linear-gradient(to bottom, #363a46 30%, #0a0b0d 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    margin-bottom: -110px;
}
.landing-hero-section .hero-title {
    width: 80%;
    font-size: 3.7rem;
    line-height: 3.7rem;
    letter-spacing: -1px;
    margin-bottom: 16px;
    text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.43);
}
.landing-hero-section p {
    width: 60%;
    font-size: 19px;
    line-height: 29px;
    color: #717580;
    margin-bottom: 28px;
}
.landing-hero-section .btn {
    margin: 0 8px;
}
.landing-hero-section .btn-dark-gray {
    background-color: #292c36;
}
.landing-hero-section .btn.btn-box-shadow.btn-dark-gray:hover, .landing-hero-section .btn.btn-box-shadow.btn-dark-gray:active {
    background: #292c36;
    border-color: #292c36;
}
.landing-hero-section .shape-left {
    position: absolute;
    left: 25px;
    bottom: 65px;
    width: 30px;
}
.landing-hero-section .shape-right {
    position: absolute;
    right: 35px;
    top: 145px;
    width: 41px;
}
.hero-section-img {
    position: relative;
    z-index: 1;
    margin-bottom: -2.5%;
}
.hero-section-img .seal-img {
    position: absolute;
    left: 65vw;
    top: 0;
}

/* power elite section */
.power-elite-section {
    padding: 150px 0 60px;
    background-color: #f4f5fa;
    position: relative;
    overflow: hidden;
}
.power-elite-section .sub-title {
    background-image: linear-gradient(70deg, #B8EB8E 0%, #F4F5FA00 100%);
}
.power-elite-section h2 {
    letter-spacing: -1.5px;
    width: 95%;
    margin-bottom: 20px;
}
.landing-power-elite-left p {
    width: 75%;
    line-height: 26px;
}
.power-elite-section .feature-box {
    margin-bottom: 45px;
}
.feature-box .feature-box-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    font-size: 28px;
    color: var(--dark-gray);
    background-color: #ffffff;
    border-radius: 100%;
    box-shadow: -0.576px 10px 15px 0px rgba(26.000000000000004, 28.000000000000007, 34, 0.1);
    margin-bottom: 20px;
}
.feature-box .feature-box-icon svg {
    height: 32px;
    width: 32px;
    fill: var(--dark-gray);
}
.feature-box .feature-box-title {
    font-size: 18px;
    line-height: 26px;
    color: var(--dark-gray);
    display: inline-block;
    margin-bottom: 5px;
}
.feature-box p {
    margin: 0;
    line-height: 26px;
    width: 92%;
}
.power-elite-section .counter-style-01 {
    margin-top: 45px;
}
.counter-style-01 .vertical-counter {
    font-size: 3rem;
    line-height: 3.1rem;
    letter-spacing: -1px;
    margin: 0 15px;
}
.landing-builder-section {
    margin-top: 110px;
}
.power-elite-section .bg-top-right {
    position: absolute;
    top: 25%;
    right: -30px;
}
.power-elite-section .bg-left-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
}
.builder-box-item {
    margin-bottom: 30px;
}
.builder-box {
    position: relative;
    overflow: hidden;
    border: 2px solid #ffffff;
    border-radius: 10px;
    box-shadow: -0.471px 9px 15px 0px rgba(26.000000000000004, 28.000000000000007, 34, 0.1);
    background-image: linear-gradient(180deg, #FFFFFF 0%, #FBFBFD 35%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.builder-box .builder-box-content {
    padding: 50px 50px 0;
}
.builder-box .popular-label,
.builder-box .premium-label {
    margin-bottom: 12px;
}
.builder-box-content h3 {
    font-size: 2rem;
    line-height: 2.375rem;
    letter-spacing: -0.7px;
    font-weight: 600;
    margin-bottom: 20px;
}
.builder-box-content h3 .separator {
    border-bottom: 2px solid;
    font-weight: 700;
}
.builder-box-content p {
    line-height: 26px;
}
.landing-features-icon {
    margin-top: 55px;
}
.landing-features-icon img {
    margin: 0 21px;
}

/* demo section */
.demo-section {
    background-image: linear-gradient(to top, #ffffff, #fefefe, #f3f2f8, #f3f4f9, #f4f5fa);
    padding: 0 0 70px;
    overflow: hidden;
    position: relative;
}
.demo-section .demo-number {
    font-size: 25rem;
    font-weight: 700;
    line-height: 25rem;
    letter-spacing: -15px;
    margin-bottom: -100px;
    background: linear-gradient(to bottom, #d8dbe7 38%, #f0f2f8 95%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
}
.demo-section .title-left-img {
    position: absolute;
    left: 100px;
    top: 37px;
}
.demo-section .title-right-img {
    position: absolute;
    right: 40px;
    top: 55px;
}
.demo-list {
    max-width: 1900px;
    padding-left: 31px;
    padding-right: 31px;
    margin-top: 20px;
}
.demo-list > .row {
    padding: 0 3%;
}
.demo-list .demo-item {
    padding: 20px;
}
.demo-list .demo-item-box {
    position: relative;
    padding: 14px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .08);
    background-color: #fff;
    transition: all 350ms cubic-bezier(.37,0,.63,1);
    will-change: transform;
    height: 100%;
}
.demo-list .demo-item-box:hover {
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}
.demo-list .demo-item-box a {
    text-decoration: none;
}
.demo-list .demo-item-box img {
    width: 100%;
    border-radius: 5px;
}
.demo-item-content-box {
    padding: 22px 20px 10px 20px;
    align-items: center;
}
.demo-item-content-box .demo-name {
    font-size: 18px;
    line-height: normal;
    font-weight: 600;
    color: var(--dark-gray);
    display: block;
    margin-bottom: 5px;
}
.demo-item-content-box p {
    font-size: 15px;
    line-height: 26px;
    color: #717580;
    margin: 0;
}
.demo-item-label {
    display: flex;
}
.demo-item-label .popular-label, 
.demo-item-label .free-label,
.demo-item-label .new-label {
    display: inline-flex;
    font-size: 11px;
    line-height: 26px;
    padding: 0 15px;
    margin-left: 8px;
}

/* tab section */
.tab-section {
    padding-top: 0;
}
.tab-section h2 {
    margin-bottom: 10px;
}
.tab-section p {
    margin-bottom: 5px;
}
.tab-section .tab-content {
    padding-left: 13px;
}

/* sticky section */
.sticky-section {
    background-color: #f4f5fa;
    position: relative;
}
.sticky-section .sticky-section-bg {
    position: absolute;
    top: 15%;
    right: 0;
}
.sticky-section .sticky-section-bg-alt {
    position: absolute;
    top: -110px;
    right: -105px;
    z-index: 0;
}
.sticky-section .position-sticky {
    top: 120px;
    margin-top: 27%;
}
.sticky-section .sub-title {
    background-image: linear-gradient(90deg, #DEE1EB 0%, #F4F5FA00 100%);
    padding-left: 25px;
    padding-right: 25px;
    margin-bottom: 23px;
}
.sticky-section .title {
    margin-bottom: 20px;
}
.sticky-section .title {
    margin-bottom: 23px;
}
.sticky-section .position-sticky p {
    line-height: 26px;
    margin-bottom: 30px;
}
.sticky-section .position-sticky p strong {
    color: #15161d;
    font-weight: 600;
}
.sticky-section .outside-right {
    position: relative;
    z-index: 1;
    margin-right: -16rem;
}
.sticky-section .btn svg {
    width: 16px;
}
.sticky-section .feature-box-wrapper {
    margin-top: 12%;
}
.sticky-section .feature-box {
    margin-bottom: 60px;
}
.sticky-section .feature-box-icon {
    width: 80px;
    height: 80px;
    font-size: 32px;
    margin-bottom: 25px;
}
.sticky-section.right {
    background-color: #E9E7F2;
}
.sticky-section.right .sticky-section-bg {
    right: inherit;
    left: 0;
}
.sticky-section.right .sticky-section-bg-alt {
    left: -220px;
    right: inherit;
}
.sticky-section.right .outside-right {
    margin: 0 0 0 -16rem;
}
.sticky-section:not(.right) .sticky-content {
    padding-right: 5%;
}
.sticky-section.right .sticky-content {
    padding-left: 6%;
}

/* template section */
.slider-section {
    position: relative;
    overflow: hidden; 
    padding-bottom: 150px;
}
.slider-section .number {
    color: var(--dark-gray);
    font-size: 12.5rem;
    line-height: normal;
    letter-spacing: -5px;
    font-weight: 700;
}
.slider-section .top-img {
    position: absolute;
    top: -65px;
    left: 260px;
}
.slider-section .bottom-img {
    position: absolute;
    left: 110px;
    bottom: -19px;
}
.slider-section .sub-title {
    padding-left: 25px;
    padding-right: 25px;
    margin-bottom: 18px;
}
.slider-section .title {
    margin-bottom: 15px;
}
.slider-section p {
    width: 85%;
    line-height: 26px;
    margin: 0;
}
.slider-section p strong {
    color: var(--dark-gray);
    font-weight: 600;
}
.slider-section .swiper {
    margin-top: 70px;
}
.slider-section .bg-overlay-slider-bottom {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 14.87%, rgba(255, 255, 255, 0.831169) 55.17%, #FFFFFF 75.13%);
    opacity: 1;
    height: 400px;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 40px;
    content: "";
    z-index: 9;
}
.slider-section .slider-bottom-img {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 110px;
    margin: 0 auto;
    z-index: 9;
}

/* trusted customers */
.trusted-customers {
    background-image: linear-gradient(to top, #ffffff, #fefefe, #f3f2f8, #f3f4f9, #f4f5fa);
    padding-bottom: 75px;
}
.trusted-customers .sub-title {
    background-image: linear-gradient(70deg, #DEE1EB 0%, #DEE1EB00 95%);
    margin-bottom: 20px;
}
.trusted-item-box {
    background-color: var(--white);
    padding: 45px 50px 50px 50px;
    border-radius: 6px;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    margin-bottom: 30px;
}
.trusted-item-box .content {
    font-size: 17px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0px;
    margin-bottom: 22px;
}
.trusted-item-box .content span {
    font-weight: 600;
    color: var(--dark-gray);
    border-bottom: 1px solid;
}
.trusted-item-box .bottom-box .icon {
    margin-right: 15px;
}
.trusted-item-box .bottom-box .review-star-icon {
    color: #191B21;
    line-height: normal;
    display: flex;
    align-items: center;
}
.trusted-item-box .bottom-box .review-star-icon svg {
    margin-right: 1px;
    fill:#191B21;;
}
.trusted-item-box .bottom-box .right-content span {
    font-size: 16px;
    line-height: 27px;
    letter-spacing: -0.3px;
    color: var(--dark-gray);
    display: inline-block;
}
.trusted-customers-bottom-content {
    margin-top: 45px;
}
.trusted-customers-bottom-content .logo {
    padding: 0 25px 0 0;
    margin: 0 25px 0 0;
    border-right: 1px solid #DBDCDD;
}
.trusted-customers-bottom-content .content {
    font-size: 21px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: -0.5px;
    color: var(--dark-gray);
    padding: 0;
}

/* landing icon box */
.landing-icon-box .title-row {
    margin-bottom: 6%;
    align-items: center;
}
.landing-icon-box .title-row span {
    line-height: 27px;
    color: var(--dark-gray);
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
}
.landing-icon-box .title-row p {
    width: 90%;
    margin-bottom: 0;
    line-height: 26px;
}
.landing-icon-box .box-item img {
    margin-bottom: 5px;
}
.landing-icon-box .box-item {
    text-align: center;
    margin-bottom: 50px;
}
.landing-icon-box .box-item .box-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: 0px;
    color: var(--dark-gray);
    display: block;
    margin-bottom: 14px;
}
.landing-icon-box .box-item .box-pills {
    background-color: #F0F2F8;
    padding: 3px 10px 5px 10px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: var(--medium-gray);
    text-align: center;
    display: inline-block;
    min-width: 165px;
}
.pills-bottom-row .bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3%;
}
.pills-bottom-row .pills {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 22px;
    color: var(--white);
    letter-spacing: 0px;
    background-color: #C72424;
    white-space: normal;
    border-radius: 50px;
    padding: 3px 15px 3px 15px;
    margin: 0px 12px 0px 0px;
}
.pills-bottom-row .content {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 26px;
    color: var(--dark-gray);
}
.pills-bottom-row .content .separator {
    position: relative;
    z-index: 1;
}
.pills-bottom-row .separator .shap {
    left: 0;
    bottom: -3px;
    opacity: 1;
    transform: scale(1, 1);
    height: auto;
    background-color: transparent;
    z-index: -1;
    display: inline-block;
    will-change: transform;
    position: absolute;
    margin-bottom: 0;
    width: 100%;
}
.pills-bottom-row .separator .shap svg {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    transition-delay: inherit;
    transition: inherit;
    -webkit-text-stroke-width: 0;
    stroke-width: 0;
    max-height: none;
    height: 29px;
}

/* crafto power ai */
.crafto-power-ai {
    background-color: transparent;
    background-image: linear-gradient(180deg, #F4F5FA 0%, #FFFFFF 100%);
    position: relative;
    padding-top: 130px;
}
.crafto-power-ai::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: url('../images/crafto-landing-page-bg-05.webp');
    background-position: center center;
    background-repeat: no-repeat;
}
.crafto-power-ai .left-image,
.crafto-power-ai .right-image {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    margin-top: 20px;
}
.crafto-power-ai .right-image {
    align-items: end;
}
.crafto-power-ai .image-box {
    background-color: var(--white);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 12px;
    text-align: center;
    width: 100%;
}
.crafto-power-ai .image-box img {
    border-radius: 4px;
    width: 100%;
}
.crafto-power-ai .left-image .image-box.first {
    margin-left: 0;
}
.crafto-power-ai .left-image .image-box:last-child {
    margin-left: -40px;
}
.crafto-power-ai .right-image .image-box.first {
    margin-right:-40px;
}
.crafto-power-ai .right-image .image-box:last-child {
    margin-right: 0;
}
.crafto-power-ai .image-box .image-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: -0.3px;
    color: var(--dark-gray);
    margin: 17px 0 6px 0;
}
.crafto-power-ai .center-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.crafto-power-ai .ai-logo {
    margin-bottom: 40px;
}
.crafto-power-ai .sub-title {
    font-size: 13px;
    line-height: 30px;
    margin-bottom: 0;
    background-image: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF00 100%);
}
.crafto-power-ai .sub-title i {
    font-size: 18px;
    vertical-align: middle;
}
.crafto-power-ai .center-content h2 {
    font-size: 6.188rem;
    font-weight: 700;
    line-height: 5.563rem;
    letter-spacing: -3px;
    margin: 25px 0 20px 0;
    width: 90%;
}
.crafto-power-ai .center-content .description {
    font-size: 19px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.4px;
    color: var(--dark-gray);
    margin-bottom: 30px;
    width: 78%;
}
.crafto-power-ai .center-content .btn > span {
    padding: 10px 25px 11px 30px;
}
.crafto-power-ai .center-content .btn svg {
    height: 24px;
    width: 24px;
    top: 0;
    margin-left: 3px;
}

/* elite author */
.power-elite-author {
    padding: 15px 0;
}
.elite-author-content {
    display: flex;
    align-items: center;
    justify-self: center;
    padding: 0 15px;
}
.elite-author-content img {
    width: 35px;
    margin-right: 10px;
}
.elite-author-content span {
    font-size: 19px;
    font-weight: 500;
    line-height: 38px;
    letter-spacing: -0.3px;
    color: var(--dark-gray);
}
.elite-author-content span .separator {
    font-weight: 700;
    border-bottom: 2px solid;
}

/* premium elements */
.premium-elements {
    padding-bottom: 90px;
}
.premium-elements .title-row {
    margin-bottom: 80px;
}
.premium-elements .title-row .number {
    font-size: 12.5rem;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -10px;
    color: var(--dark-gray);
}
.premium-elements .title-row .text-shap-img {
    position: absolute;
    left: 280px;
    bottom: -18px;
}
.premium-elements .title-row .shap-img {
    position: absolute;
    top: -10px;
    left: 395px;
}
.premium-elements .title-row .right-text p {
    line-height: 26px;
    width: 95%;
    margin-bottom: 0;
}
.premium-elements .title-row .right-text p span {
    color: var(--dark-gray);
    font-weight: 600;
    display: block;
}
.premium-elements .title-row .right-text h2 {
    margin: 20px 0px 15px 0px;
}
.premium-elements .sub-title {
    margin-bottom: 0;
}
.premium-elements .swiper {
    padding: 17px 0px;
}
.premium-elements .swiper-wrapper .swiper-slide {
    padding: 22px 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: var(--white);
    box-shadow: 0 5px 25px rgba(89, 101, 124, .15);
    border-radius: 10px;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 17px;
}
.premium-elements .swiper-wrapper .swiper-slide i {
    font-size: 24px;
    margin-right: 10px;
}
.premium-elements .swiper-wrapper .swiper-slide svg {
    height: 24px;
    width: 24px;
    margin-right: 10px;
}
.bg-overlay-light {
    background: linear-gradient(180deg,rgba(255,255,255,0) 10%,#FFFFFF 80%);
    opacity: 1;
    height: 280px;
    bottom: 50px; 
    position: absolute;
    left: 0;
    width: 100%;
    content: "";
    z-index: 9;
}

/* endless features */
.endless-features {
    background-color: #15161D;
    padding-top: 30px;
}
.endless-features .big-text {
    margin-bottom: -130px;
    font-size: 20rem;
    line-height: 20rem;
    font-weight: 700;
    letter-spacing: -8px;
    color: #2D3147;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(180deg, #2D3147 45%, #15161D 75%);
}
.endless-features .title-row h3 {
    font-size: 3.438rem;
    font-weight: 600;
    line-height: 3.438rem;
    letter-spacing: -1px;
    color: var(--white);
    margin: 0;
    display: inline-block;
    width: 55%;
}
.endless-features .title-row .image-wrapper {
    position: absolute;
    top: 28px;
    right: 53px;
    z-index: 1;
}
.endless-features .title-row .image-wrapper .runing-image {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.endless-features .endless-features-item {
    margin-bottom: 30px;
}
.endless-features .features-item-inner {
    background-color: #1D1E26;
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: all 350ms cubic-bezier(.37,0,.63,1);
    height: 100%;
}
.endless-features .features-item-inner .img-box {
    height: 343px;
    text-align: center;
}
.endless-features .features-item-inner:hover {
    transform: translate3d(0, -3px, 0);
}
.endless-features .features-item-inner .content {
    padding: 0 12% 12% 12%;
}
.endless-features .features-item-inner .content span {
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    display: block;
    margin-bottom: 5px;
    color: var(--white);
}
.endless-features .features-item-inner .content p {
    line-height: 26px;
    margin-bottom: 0;
}
.endless-features .features-item-inner .fit-videos {
    border-radius: 6px;
}
.endless-features .features-item-inner .fit-videos-wrapper {
    padding: 42px 42px 60px;
    height: 343px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.endless-features .features-item-inner .parallax-first-img {
    position: absolute;
	z-index: 9;
}
.endless-features .features-item-inner .parallax-second-img {
    position: relative;
	z-index: 9;
}
.endless-features .features-item-inner .atropos .atropos-shadow {
    background-color: transparent;
    filter: inherit;
}
.endless-features .features-item-inner .atropos .atropos-highlight {
    background-image: inherit;
}
.endless-features .features-item-inner .endless-features-particles {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.endless-features .features-item-inner .particles-image-wrapper {
    position: relative;
    height: 343px;
    text-align: center;
}
.endless-features .features-item-inner .particles-image-wrapper img {
    position: relative;
    z-index: 1;
}
.endless-features .features-item-inner .scrolling-animation-img-wrapper {
    height: 343px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
}
.endless-features .features-item-inner .scrolling-animation-img-wrapper h4 {
    margin: 0;
    font-size: 7.188rem;
    font-weight: 600;
    line-height: 7.188rem;
    letter-spacing: -5px;
    color: #B9B9B9;
}
.endless-features .features-item-inner .scrolling-animation-img-wrapper h5 {
    font-size: 5rem;
    font-weight: 600;
    line-height: 5rem;
    letter-spacing: -3px;
    color: #4D4E52;
    margin: 0;
    position: relative;
    z-index: 1;
}
.endless-features .features-item-inner .scrolling-animation-img-wrapper img {
    position: absolute;
    left: 0;
    top: 0;
    margin-top: -50px;
    margin-left: 50px;
    z-index: 1;
}
.endless-features .features-item-inner .parallax-effect-wrapper {
    position: relative;
    padding: 42px 42px 60px;
    display: flex;
    flex-direction: column;
    height: 343px;
}
.endless-features .features-item-inner .parallax-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
}
.endless-features .features-item-inner .parallax-effect-wrapper .first-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1;
}
.endless-features .interactive-marquee-wrapper .swiper {
    padding: 7px 0px;
}
.endless-features .interactive-marquee-wrapper .swiper-wrapper .swiper-slide {
    padding: 12px 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #323242;
    box-shadow: 0 5px 25px rgba(89, 101, 124, .15);
    border-radius: 6px;
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0px 0px 1px 1px #3F404B inset;
}
.endless-features .interactive-marquee-wrapper .swiper-wrapper .swiper-slide svg {
    fill:var(--white) ;
    margin-right: 5px;
    width: 16px;
    height: 16px;
}
.endless-features .interactive-marquee-wrapper {
    height: 343px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.endless-features .interactive-marquee-wrapper::before {
    content: "";
    display: block;
    background-color: transparent;
    background-image: linear-gradient(180deg, rgba(0,0,0,0) 29%, #1D1E26 87%);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 11;
}
.endless-features .features-item-inner .fancy-images-box {
    position: relative;
    padding: 42px 42px 60px;
    display: flex;
    flex-direction: column;
    height: 343px;
    justify-content: center;
    align-items: center;
}
.endless-features .features-item-inner .fancy-images-box h3 {
    margin-bottom: 0;
    font-size: 6.25rem;
    font-weight: 600;
    letter-spacing: -4px;
    white-space: nowrap;
    text-shadow: 0px 0px 22px rgba(0, 0, 0, 0.9);
    color: var(--white);
    z-index: 1;
    position: absolute;
}
.endless-features .pills-bottom-row .pills {
    background-color: #00AF6B;
}
.endless-features .pills-bottom-row .content {
    color: var(--white);
}
.endless-features .features-item-inner .atropos-box-image {
    height: 343px;
}

/* footer */
footer {
    padding-top: 110px;
    padding-bottom: 110px;
}
footer h2 {
    letter-spacing: -2px;
    margin: 0 auto 20px auto;
    width: 60%;
    font-size: 4.688rem;
    line-height: 4.688rem;
}
footer .sub-heading {
    font-size: 14px;
    text-transform: uppercase;
    line-height: 30px;
    letter-spacing: 0.6px;
    margin-bottom: 25px;
    padding: 6px 30px 6px 30px;
    border: 1px solid #3F424B;
    border-radius: 100px;
}
.footer-description {
    font-size: 20px;
    line-height: 25px;
    letter-spacing: -0.2px;
    color: #717580;
    display: block;
    margin-bottom: 40px;
}
.footer-purchase-button {
    font-size: 22px;
    border-radius: 50px;
    background: linear-gradient(60deg,#e77d13,#fa4722,#ee2370,#a23cb3,#2c5cba,#007dab);
    background-size: 200% 200%;
    color: var(--white);
    -webkit-animation: footeranimatedgradient 10s ease infinite alternate;
    animation: footeranimatedgradient 10s ease infinite alternate;
}
.btn.btn-switch-text.footer-purchase-button > span {
    padding: 22px 37px 23px 37px;
}
.btn.footer-purchase-button:active, .btn.footer-purchase-button:hover {
    border-color: transparent;
    color: #fff;
}
.footer-purchase-button svg {
    width: 22px;
}
.footer-logo {
    margin-top: 5.5%;
}

.mfp-bg {
    background: #232323;
    opacity: 0.9;
}
.mfp-wrap button.mfp-close {
    right: 30px;
    top: 30px;
    background-color: rgba(0, 0, 0, .5);
    height: 50px;
    width: 50px;
    opacity: 1;
    border-radius: 100%;
    position: fixed;
    padding: 0 0 0 1px;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 30px;
}
@-webkit-keyframes footeranimatedgradient {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    to {
        background-position: 0 50%
    }
}