@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&amp;family=Poppins&amp;display=swap');

/*----------  Body CSS  ----------*/
:root {
    --font-size: 16px;
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --letter-spacing: 0em;
    --text-color: #000;
    --link-color: #000;
    --link-color-hover: #003366;
    --link-color-active: #003366;
    --text-color-white: #ffffff;
    --bg-white: #ffffff;
    --btn-color: #ffffff;
    --btn-border: #003366;
    --btn-bg: #003366;
    --btn-white-color: #000;
    --btn-white-border: #212121;
    --btn-white-bg: #ffffff;
    --btn-color-hover: #000;
    --btn-border-hover: #212121;
    --btn-bg-hover: #ffffff;
    --btn-white-color-hover: #ffffff;
    --btn-white-border-hover: #003366;
    --btn-white-bg-hover: #003366;
    --new-label-color: #ffffff;
    --new-label-bg: #0067f0;
    --coming-soon-label-color: #ffffff;
    --coming-soon-label-bg: #fa4616;
    --theme-orange-color: #003366;
    --section-background-1: #fafafa;
    --section-background-2: #fff;
    --transition-effect: 350ms ease-in-out;
    --box-shadow: 0px 10px 25px 0px rgb(0, 0, 0, .2);
    --letter-spacing-0: 0em;
    --letter-spacing--25: -0.025em;
    --letter-spacing--2: -0.02em;
}

/* START: Animate */
@-webkit-keyframes rotate_animation {
    from {
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -moz-transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    to {
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate_animation {
    from {
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -moz-transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    to {
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotate_animation2 {
    from {
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -moz-transform: rotate(-180deg);
        -webkit-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }

    to {
        -moz-transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes rotate_animation2 {
    from {
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -moz-transform: rotate(-180deg);
        -webkit-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }

    to {
        -moz-transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes waterSpread {
    from {
        width: 0%;
        height: 0%;
        opacity: 0.5;
    }

    to {
        width: 1000px;
        height: 1000px;
        opacity: 0;
    }
}

@keyframes flash {
    from {
        transform: scale(3) rotate(-45deg) translate(-55%, -170%);
    }

    to {
        transform: scale(3) rotate(-45deg) translate(55%, 370%);
    }
}

/* END: Animate */

html * {
    outline: none !important;
    scroll-behavior: smooth;

}

body {
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    font-size: var(--font-size);
    font-weight: var(--font-weight-normal);
    line-height: normal;
    letter-spacing: var(--letter-spacing);
    overflow-x: hidden;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    animation: slowAppear 500ms 500ms ease forwards;
    opacity: 0;
}

*,
::after,
::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    position: relative;
    text-decoration: none !important;
    outline: none !important;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    display: inherit;
    color: inherit !important;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    text-transform: inherit;
}

.link {
    font-size: var(--font-size);
    font-weight: var(--font-weight-bold);
    line-height: normal;
    letter-spacing: var(--letter-spacing);
    color: var(--link-color);
}

.link-underline {
    display: inline-block;
    vertical-align: top;
}

.underline {
    text-decoration: underline !important;
    text-underline-offset: 1px;
}

.disable-scrolling {
    overflow-y: hidden;
    padding-right: 15px;
}

.disable-scrollbar::-webkit-scrollbar {
    display: none;
}

.disable-scrollbar::-webkit-scrollbar-track {
    display: none;
}

.disable-scrollbar::-webkit-scrollbar-thumb {
    display: none;
}

.disable-scrollbar::-webkit-scrollbar-thumb:hover {
    display: none;
}

img {
    max-width: 100%;
    height: auto;
    border: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
    stroke: currentColor;
}

fieldset {
    margin: 0;
    padding: 0;
    border: none;
}

.visually-hidden {
    position: absolute !important;
    overflow: hidden !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    word-wrap: normal !important;
}

.clearfix:after {
    content: '';
    display: block;
    clear: both;
}

.container {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.max-width-1382 {
    max-width: 1382px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.max-width-1520 {
    max-width: 1520px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.box-shadow {
    box-shadow: var(--box-shadow);
}

.button {
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: var(--font-size);
    font-weight: var(--font-weight-bold);
    padding: 13px 5px;
    line-height: normal;
    border-radius: 10px;
    letter-spacing: var(--letter-spacing);
    color: var(--btn-color);
    background-color: var(--btn-bg);
    border: 2px solid var(--btn-border);
    min-width: 160px;
    width: auto;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.button::after {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 120%;
    height: 100%;
    backface-visibility: hidden;
    transform: rotate(10deg) translate(-1.2em, 110%);
    transform-origin: 0% 100%;
    transition: transform 500ms ease;
    background-color: var(--btn-bg-hover);
}

.button.button-medium {
    min-width: 190px;
}

.button.button-large {
    min-width: 250px;
}

.button.button-box-shadow {
    -webkit-box-shadow: 0px 3px 10px 0px rgba(35, 25, 204, 0.3);
    box-shadow: 0px 3px 10px 0px rgba(35, 25, 204, 0.3);
}

.button.button-white {
    color: var(--btn-white-color);
    border-color: var(--btn-white-border);
    background-color: var(--btn-white-bg);
}

.button.button-white::after {
    background-color: var(--btn-white-bg-hover);
}

.button.button-disabled {
    color: #a7a7a7;
    background-color: rgb(236, 235, 235);
    cursor: not-allowed;
    border: none;
}

.button-group {
    font-size: 0;
    letter-spacing: 0;
}

.button-groupItem p {
    display: block;
    font-size: 12px;
    font-weight: var(--font-weight-normal);
    color: var(--text-color);
    letter-spacing: var(--letter-spacing);
    line-height: 1.5;
    text-align: center;
    max-width: 170px;
    margin: 11px auto 0 auto;
}

.button-groupItem+.button-groupItem {
    margin-top: 15px;
}

.main-content {
    position: relative;
    overflow: hidden;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.bg-overlay:hover {
    cursor: url(https://cdn.shopify.com/s/files/1/0585/4439/0331/t/81/assets/cross.svg), url(https://cdn.shopify.com/s/files/1/0585/4439/0331/t/81/assets/cross.svg), zoom-out;
}

.bg-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.themevale_section {
    position: relative;
    z-index: 1;
}

.theme-color {
    color: var(--theme-orange-color);
}

.theme-green-color {
    color: #508d7e;
}

.theme-yellow-color {
    color: #ecc83f;
}

.theme-purple-color {
    color: #3f3aca;
}

[data-animated-btn] {
    position: relative;
    overflow: hidden;
}

.ripples {
    position: absolute;
    background: #fff;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border-radius: 50%;
    transform-origin: center center;
    animation: waterSpread 1s linear infinite;
    opacity: 0.5;
}

.d-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.d-out {
    transform: translateY(200%);
}

.d-none {
    display: none;
}

.typed-cursor {
    font-weight: var(--font-weight-normal);
}

.no-break {
    white-space: nowrap;
    overflow: hidden;
}

.flash-hover {
    position: relative;
}

.flash-hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(3) rotate(-45deg) translate(-55%, -170%);
}

.flash-hover:hover::after {
    animation: flash 700ms ease-in forwards;
}

/* START: Heading */
.themevale_heading {
    display: block;
    text-align: center;
    max-width: 853px;
    margin: 0 auto 31px auto;
}

.themevale_heading .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    text-align: center;
    margin: 0 auto 22px auto;
    box-shadow: 0px 3px 15px 0px rgba(35, 25, 204, 0.3);
}

.themevale_heading .title {
    display: inline-block;
    vertical-align: top;
    font-size: 48px;
    font-weight: var(--font-weight-bold);
    line-height: normal;
    letter-spacing: var(--letter-spacing-0);
    position: relative;
    margin: 0;
    color: var(--theme-orange-color);
}

.themevale_heading .title .text {
    display: inline-block;
    vertical-align: top;
    position: relative;
}

.themevale_heading .title .highlight {
    display: inline;
    position: relative;
}

.themevale_heading .title .highlight:before {
    content: '';
    position: absolute;
    top: 50%;
    left: -7px;
    height: 5px;
    width: calc(100% + 14px);
    z-index: 1;
    background-color: #ef7440;
    transform: translateY(-50%);
}

.themevale_heading .description {
    font-size: var(--font-size);
    font-weight: var(--font-weight-normal);
    line-height: 22px;
    letter-spacing: var(--letter-spacing-0);
    color: var(--text-color);
    margin: 7px 0 0 0;
}

.themevale_heading .image {
    display: block;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
}

/* END: Heading */

/* START: Grid */
.themevale_grid {
    display: block;
    font-size: 0;
    letter-spacing: 0;
    margin: 0 -22px;
}

.themevale_grid .items {
    display: inline-block;
    vertical-align: top;
    padding: 0 22px;
    margin: 0 0 30px 0;
}

.themevale_grid.feature-grid.column-3 {
    display: flex;
    flex-wrap: wrap;
}

.themevale_grid.column-2 .items {
    width: 50%;
}

.themevale_grid.column-3 .items {
    width: 33.3333333%;
}

.themevale_grid.column-4 .items {
    width: 25%;
}

.themevale_grid.feature-grid .items {
    margin-bottom: 25px;
}

/* END: Grid */

/* START: Banner */
.themevale_banner {
    margin: 0;
}

.themevale_banner>a {
    display: inline-block;
    vertical-align: top;
}

.themevale_banner img {
    margin-left: auto;
    margin-right: auto;
}

/* END: Banner */

/* START: List */
.themevale_list {
    display: block;
    font-size: 0;
    letter-spacing: 0;
    margin: 0 -15px;
}

.themevale_list .items {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: auto;
    padding: 0 15px;
    margin: 0 0 5px 0;
}

.themevale_list.column-2 .items {
    width: 50%;
}

.themevale_list.column-3 .items {
    width: 33.3333333%;
}

.themevale_list.column-4 .items {
    width: 25%;
}

/* END: List */

/* START: Slick */
.slick-prev,
.slick-next {
    width: 60px;
    height: 60px;
    fill: #969ba8;
    stroke: #969ba8;
    z-index: 5;
}

.slick-prev {
    left: 0;
    transform: translate(-50%, -50%);
}

.slick-next {
    right: 0;
    transform: translate(50%, -50%);
}

.slick-prev:before,
.slick-next:before {
    content: none;
}

.slick-dots {
    top: auto;
    left: 0;
    right: 0;
    bottom: -35px;
    z-index: 5;
    padding: 0;
    line-height: 0;
    transition: all 0.3s ease;
}

.slick-dots li:only-child {
    display: none;
}

.slick-dots li {
    width: auto;
    height: auto;
    margin-left: 12px;
    margin-right: 12px;
    vertical-align: top;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid var(--link-color);
    background-color: transparent;
    transition: all 0.3s ease;
}

.slick-dots li button:before {
    content: none;
}

.slick-dots li.slick-active button {
    opacity: 1;
    border-color: var(--link-color);
    background-color: var(--link-color);
}

/* END: Slick */

/* START: Padding */
.padding-top-20 {
    padding-top: 20px;
}

.padding-bottom-20 {
    padding-bottom: 20px;
}

.padding-top-25 {
    padding-top: 25px;
}

.padding-bottom-25 {
    padding-bottom: 25px;
}

.padding-top-30 {
    padding-top: 30px;
}

.padding-bottom-30 {
    padding-bottom: 30px;
}

.padding-top-35 {
    padding-top: 35px;
}

.padding-bottom-35 {
    padding-bottom: 35px;
}

.padding-top-40 {
    padding-top: 40px;
}

.padding-bottom-40 {
    padding-bottom: 40px;
}

.padding-top-45 {
    padding-top: 45px;
}

.padding-bottom-45 {
    padding-bottom: 45px;
}


.padding-top-50 {
    padding-top: 50px;
}

.padding-bottom-50 {
    padding-bottom: 50px;
}

.padding-top-60 {
    padding-top: 60px;
}

.padding-bottom-60 {
    padding-bottom: 60px;
}

.padding-top-65 {
    padding-top: 65px;
}

.padding-bottom-65 {
    padding-bottom: 65px;
}

.padding-top-70 {
    padding-top: 70px;
}

.padding-bottom-70 {
    padding-bottom: 70px;
}

.padding-top-75 {
    padding-top: 75px;
}

.padding-bottom-75 {
    padding-bottom: 75px;
}

.padding-top-80 {
    padding-top: 80px;
}

.padding-bottom-80 {
    padding-bottom: 80px;
}

.padding-top-85 {
    padding-top: 85px;
}

.padding-bottom-85 {
    padding-bottom: 85px;
}

.padding-top-90 {
    padding-top: 90px;
}

.padding-bottom-90 {
    padding-bottom: 90px;
}

.padding-top-95 {
    padding-top: 95px;
}

.padding-bottom-95 {
    padding-bottom: 95px;
}

.padding-top-100 {
    padding-top: 100px;
}

.padding-bottom-100 {
    padding-bottom: 100px;
}

.padding-top-150 {
    padding-top: 150px;
}

.padding-bottom-150 {
    padding-bottom: 150px;
}

/* END: Padding */

/* Border radius */
.border-radius-10 {
    border-radius: 10px;
    overflow: hidden;
}

.border-radius-left-10 {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    overflow: hidden;
}

.border-radius-right-10 {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
}

/* Border radius */

/* START: Header */
.header {
    padding: 50px 0;
    position: relative;
    background-color: var(--bg-white);
    transition: all 0.3s ease;
}

.header-transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 11;
    background-color: transparent;
}

.icon-nav {
    display: block;
    padding: 12px 0;
    text-align: center;
    border: none;
    cursor: pointer;
    background-color: transparent;
}

.icon-nav .icon-line {
    position: relative;
    pointer-events: none;
}

.icon-nav .icon-line,
.icon-nav .icon-line:before,
.icon-nav .icon-line:after {
    display: block;
    width: 30px;
    height: 3px;
    margin: 3px 0;
    background-color: var(--link-color);
}

.icon-nav .icon-line:before,
.icon-nav .icon-line:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
}

.icon-nav .icon-line:before {
    top: -11px;
}

.icon-nav .icon-line:after {
    bottom: -11px;
}

.nav-logo {
    display: block;
    margin-top: 0;
    margin-bottom: 0;
}

.nav-logo>a {
    display: flex;
    align-items: center;
}

.nav-logo img {
    max-width: 143px;
    transform: translateY(-8px);
}

.header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 11;
    padding: 10px 0;
    background-color: var(--bg-white);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .06), 0 1px 2px 0 rgba(0, 0, 0, .1);
}

.navPage-deal {
    height: 100px;
    width: 100%;
    background-color: red;
}

.navPage-container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.navPage-item {
    font-size: 0;
    letter-spacing: 0;
}

.navPage-left .item {
    display: inline-block;
    vertical-align: middle;
}

.navPage-left .item+.item {
    margin-left: 30px;
}

.navPage-right ul {
    display: flex;
    align-items: center;
}

.navPage-right ul li {
    display: inline-block;
    vertical-align: top;
}

.navPage-right ul li .link {
    white-space: nowrap;
}

.navPage-right ul li .link-underline .text {
    display: inline;
    background-image: linear-gradient(transparent 97%, #97aac1 3%);
    background-repeat: repeat-x;
    background-position-y: 0;
}

.navPage-right ul li+li {
    margin-left: 15px;
}

.header .main-menu {
    position: relative;
    font-size: 0;
    letter-spacing: 0;
}

.header .main-menu .menu-item {
    display: inline-block;
    vertical-align: top;
    margin-right: 20px;
}

.header .main-menu .menu-item a {
    display: block;
    font-size: var(--font-size);
    font-weight: var(--font-weight-normal);
    letter-spacing: var(--letter-spacing);
    line-height: normal;
    color: var(--link-color);
    padding: 13px 0;
    text-transform: capitalize;
}

.header .main-menu .menu-item a .text {
    position: relative;
}

.header .main-menu .menu-item a .text:after {
    content: "";
    display: block;
    margin: 0 auto;
    position: relative;
    top: 6px;
    bottom: 0;
    transition: all 280ms ease-in-out;
    width: 0;
    opacity: 0;
    backface-visibility: hidden;
    border-bottom: 2px solid var(--link-color-active);
}

.header .main-menu .menu-item:last-child {
    margin-right: 0 !important;
}

.header-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: 470px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 60px 50px 60px 120px;
    background-color: var(--bg-white);
    max-width: calc(100% - 60px);
    border-right: 1px solid #f4f4f4;
    transition: all 0.5s ease;
}

.header-sidebar .close-menu {
    position: absolute;
    top: 66px;
    left: 60px;
    z-index: 2;
}

.header-sidebar .close-menu svg {
    width: 18px;
    height: 18px;
    fill: #bdbdbd;
    stroke: #bdbdbd;
}

.header-sidebar .main-menu .menu-item {
    display: block;
    padding: 10px 0;
}

.header-sidebar .main-menu .menu-item a {
    position: relative;
    font-size: var(--font-size);
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    letter-spacing: var(--letter-spacing);
    line-height: 1.5;
    text-transform: uppercase;
}

.header-sidebar .main-menu .menu-item a:before {
    content: "";
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    position: absolute;
    background-color: var(--link-color-hover);
    transition: all 0.3s ease;
}

.header-sidebar.hidden {
    left: -500px;
}

.header-sidebar::-webkit-scrollbar-track {
    background-color: #f4f4f4;
}

.header-sidebar::-webkit-scrollbar {
    width: 4px;
    background-color: #f4f4f4;
}

.header-sidebar::-webkit-scrollbar-thumb {
    background-color: #646464;
}

/* END: Header */

/* START: Parallax Banner */
.banner-parallax,
.banner-dot-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.banner-dot-background {
    background-image: url(../images/dot-background.png);
    opacity: 0.05;
    background-repeat: repeat;
}

.banner-dot-background::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to bottom, transparent, white, white, white);
}

.banner-parallax-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}


.banner-parallax .banner-parallax-layer.square,
.banner-parallax .banner-parallax-layer.blob,
.banner-parallax .banner-parallax-layer.triangle {
    position: absolute;
    mix-blend-mode: normal;
}

.banner-parallax .banner-parallax-layer.square,
.banner-parallax .banner-parallax-layer.triangle {
    z-index: 2;
}

.banner-parallax .banner-parallax-layer.blob {
    z-index: 3;
}

.banner-parallax .banner-parallax-layer.square {
    top: -3%;
    right: 21%;
}

.banner-parallax .banner-parallax-layer.blob {
    top: -1.5%;
    left: -47%;
    width: 60vw;
    height: 60vw;
}

.banner-parallax .banner-parallax-layer.blob .banner-parallax-image {
    -moz-transform: rotate(-15deg);
    -webkit-transform: rotate(-15deg);
    -o-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    transform: rotate(-15deg);
}

.banner-parallax .banner-parallax-layer.triangle {
    top: 4%;
    right: -7%;
}

.banner-parallax .banner-parallax-layer.triangle .banner-parallax-image {
    animation: rotate_animation 50s linear infinite;
}

/* END: Parallax Banner */

/* START: Top Banner */
:root {
    --top-banner-title-color: #141414;
    --top-banner-description-color: #383838;
    --top-banner-title-bg: #d7eefd;

    --device-background-color: #f9f8f6;
    --device-border-color: #dbdbdb;
}

.homepage-banner {
    padding-top: 17vw;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 10%;
}

.homepage-banner .banner-content {
    width: 100%;
    flex-shrink: 0;
    text-align: center;
    order: 2;
}

.homepage-banner .banner-image {
    position: relative;
    overflow-x: visible;
    overflow-y: visible;
    z-index: 2;
    width: 80%;
    margin: 0 auto 0 16%;
    order: 1;
    padding-bottom: 48%;
}

.banner-image .macbook-slider,
.banner-image .iphone-slider,
.banner-image .parallax-play-pause-buttons {
    position: absolute;
    z-index: 6;
    display: block;
}

.banner-image .parallax-play-pause-buttons {
    width: 50px;
    height: 50px;
    top: 10%;
    left: -1.4%;
    cursor: pointer;
    position: relative;
}

.banner-image .spinner-pause-btn {
    width: 50px;
    height: 50px;
}

.banner-image .spinner-pause-btn .spinner {
    --spinner-percent: 20;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(90deg);
}

.banner-image .spinner-pause-btn .spinner svg {
    position: relative;
    width: 40px;
    height: 40px;
    overflow: visible;
}

.banner-image .spinner-pause-btn .spinner svg circle {
    width: 40px;
    height: 40px;
    fill: none;
    stroke-width: 3;
    stroke: #000;
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    stroke-linecap: round;
}

.banner-image .spinner-pause-btn .spinner svg circle:nth-child(1) {
    stroke-dashoffset: 0;
    stroke: #f3f3f3;
}

.banner-image .spinner-pause-btn .spinner svg circle:nth-child(2) {
    stroke-dashoffset: calc(157 - (157 * var(--spinner-percent)) / 100);
    stroke: #000;
}

.banner-image .macbook-slider {
    top: 0;
    left: 8%;
    width: 96%;
    pointer-events: none;
    padding: 4.5%;
    background-color: var(--device-background-color);
    border: 1px solid var(--device-border-color);
    border-radius: 1vw;
    box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.1);
}

.banner-image .macbook-slider::after {
    content: '...';
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 4.5vw;
    color: #585858;
    line-height: 0;
    letter-spacing: -0.03em;
    margin-top: -20px;
}

.banner-image .iphone-slider {
    top: 53%;
    left: -8.2%;
    width: 26%;
    pointer-events: none;
    border: 0.3vw solid var(--bg-white);
    border-radius: 2vw;
    overflow: hidden;
    box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.1);
    background-color: var(--bg-white);
}

.banner-image .iphone-slider img {
    transform: translateY(-2px);
}

.banner-image .parallax-play-pause-buttons .play-button {
    position: absolute;
    opacity: 1;
    transition: opacity 250ms 250ms ease-in-out;
    width: 4vw;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner-image .parallax-play-pause-buttons .spinner-pause-btn {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 250ms 0ms ease-in-out;
}

.banner-image .parallax-play-pause-buttons.playing .play-button {
    opacity: 0;
    transition-delay: 0ms;
}

.banner-image .parallax-play-pause-buttons.playing .spinner-pause-btn {
    opacity: 1;
    transition-delay: 250ms;
}

.banner-image .parallax-play-pause-buttons .pause-bars {
    display: flex;
    gap: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner-image .parallax-play-pause-buttons .pause-bars .bar {
    width: 3px;
    height: 14px;
    background-color: #333;
}

.homepage-banner .banner-image .parallax-play-pause-buttons img,
.homepage-banner .banner-image .macbook-slider img,
.homepage-banner .banner-image .iphone-slider img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.homepage-banner .banner-content {
    position: relative;
    text-align: center;
    padding: 0px 15px 0 15px;
}

.homepage-banner .banner-content .title {
    position: relative;
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    line-height: normal;
    letter-spacing: -0.01em;
    color: var(--top-banner-title-color);
    margin: 0 0 10px 0;
}

.homepage-banner .banner-content .title .text {
    position: relative;
}

.homepage-banner .banner-content .description {
    display: block;
    font-size: var(--font-size);
    font-weight: var(--font-weight-normal);
    letter-spacing: var(--letter-spacing);
    line-height: 1.5;
    color: var(--top-banner-description-color);
    padding: 0;
    margin: 0 auto;
}

.homepage-banner .button-group {
    margin: 20px auto 0 auto;
}

.homepage-banner .button-group .button {
    width: 100%;
}

/* END: Top Banner */

/* START: Top Video */
.themevale_video {
    max-width: 960px;
    margin: 0 auto;
}

.themevale_video iframe {
    border-radius: 10px;
    box-shadow: 0px 10px 25px 0px rgb(0, 0, 0, .1);
}

/* END: Top Video */

/* START: Icon With Text */
:root {
    --icon-title-color: #000;
}

.homepage-custom-icon {
    margin-top: 7px;
    background-image: linear-gradient(to top, var(--section-background-1) 75%, var(--section-background-1) 5%, transparent);
    position: relative;
}

.icon-collection {
    padding: 10px 20px;
    margin: 0;
    text-align: center;
    background-color: var(--bg-white);
    border-radius: 10px;
    -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: background-color var(--transition-effect);
    z-index: 4;
}

.icon-collection:hover {
    background-color: var(--theme-orange-color);
}

.icon-collection .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    text-align: center;
    margin: 0 auto;
    margin-top: 18px;
    margin-bottom: 23px;
}

.icon-collection .icon-wrapper .icon {
    width: 100%;
    height: 100%;
    fill: var(--btn-bg);
    transition: fill var(--transition-effect);
}

.icon-collection:hover .icon-wrapper .icon {
    fill: var(--bg-white);
}

.icon-collection .content-wrapper {
    padding: 0px 0 0px 0;
    max-width: 385px;
    margin: 0 auto;
}

.icon-collection .content-wrapper .title {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    line-height: 27px;
    letter-spacing: var(--letter-spacing);
    color: var(--icon-title-color);
    margin: 0 0 20px 0;
    transition: color var(--transition-effect);
}

.icon-collection .content-wrapper .description,
.icon-collection .content-wrapper .description a {
    margin: 0;
    font-size: var(--font-size);
    font-weight: var(--font-weight-normal);
    line-height: 26px;
    letter-spacing: var(--letter-spacing--25);
    color: var(--text-color);
    transition: color var(--transition-effect);
}

.icon-collection .content-wrapper .description {
    margin-bottom: 24px;
}

.icon-collection:hover .content-wrapper .title,
.icon-collection:hover .content-wrapper .description,
.icon-collection:hover .content-wrapper .description a {
    color: var(--text-color-white);
}

/* END: Icon With Text */
/* START: Achievement */
.homepage-achievement {
    padding-top: 70px;
    padding-bottom: 60px;
    background-color: var(--section-background-2);
}

.homepage-achievement .themevale_heading {
    margin-bottom: 58px;
}

.homepage-achievement .themevale_heading .description {
    margin-top: 3px;
}

.homepage-achievement .achievement {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 38px;
}

.homepage-achievement .achievement .icon-wrapper {
    width: 110px;
    height: 110px;
    border: 2px solid var(--theme-orange-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.homepage-achievement .achievement .icon-wrapper .icon {
    width: 54px;
    height: 54px;
    fill: var(--theme-orange-color);
}

.homepage-achievement .achievement .content-wrapper .title {
    font-size: 18px;
    font-weight: var(--font-weight-normal);
    color: var(--text-color);
    letter-spacing: var(--letter-spacing-0);
    margin-bottom: 0;
}

.homepage-achievement .achievement .content-wrapper .description {
    font-size: 48px;
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    letter-spacing: var(--letter-spacing-0);
    margin-bottom: 0;
}

.homepage-achievement .achievement-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin-top: 17px;
}

.homepage-achievement .achievement-proof .achievement {
    max-width: 690px;
}

.homepage-achievement .slick-dots {
    bottom: -20px;
}

/* END: Achievement */

/* START: Theme Skin */
:root {
    --tab-2-color-active: var(--theme-orange-color);
    --tab-2-bg-active: #fff;
    --nav-bg-color: #f0f0f0;
}

.themevale-skin .themevale_heading {
    margin-bottom: 45px;
}

.themevale-skin-2 .themevale_heading {
    margin-bottom: 25px;
    max-width: 950px;
}

.themevale-skin .themevale_heading .title .text.vertical {
    display: flex;
    flex-direction: column;
}

.themevale-skin .nav-tabs {
    flex-wrap: nowrap;
    justify-content: center;
    text-align: center;
    border-bottom: none;
    max-width: max-content;
    margin: 0 auto;
    margin-top: 35px;
    margin-bottom: 42px;
    background-color: var(--nav-bg-color);
    border-radius: 10px;
    scroll-snap-type: x mandatory;
    overflow-x: scroll;
}

.themevale-skin .nav-tabs .nav-item {
    display: inline-block;
    vertical-align: middle;
    padding: 0 5px;
    margin-bottom: 0;
    scroll-snap-align: start;
}

.themevale-skin .nav-tabs .nav-item:first-child {
    padding-left: 0;
}

.themevale-skin .nav-tabs .nav-item:last-child {
    padding-right: 0;
}

.themevale-skin .nav-tabs .nav-link {
    display: inline-block;
    vertical-align: top;
    font-size: calc(var(--font-size) - 2px);
    font-weight: var(--font-weight-bold);
    line-height: normal;
    letter-spacing: 0.025em;
    padding: 5px 15px;
    color: var(--link-color);
    text-transform: capitalize;
    border-radius: 0;
    border: none !important;
    position: relative;
    border-radius: 10px;
}

.themevale-skin .nav-tabs .nav-link.active {
    color: var(--tab-2-color-active);
    background-color: var(--tab-2-bg-active);
}

.themevale-skin .nav-tabs .nav-link.active:after {
    backface-visibility: hidden;
    transition: width 350ms ease-in-out;
    width: 100%;
    opacity: 1;
}

.themevale-skin-2 .nav-tabs {
    margin-bottom: 38px;
}

.themevale-skin-2 .themevale_heading .description {
    padding-bottom: 13px;
}

.themevale-skin {
    background-color: var(--section-background-1);
}

.main-drop {
    position: relative;
    font-size: 72px;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -7px;
}

.back-drop {
    position: absolute;
    top: 3%;
    left: 3%;
    color: white;
    -webkit-text-stroke: 1px var(--theme-orange-color);
    z-index: -1;
}

.themevale-skin .description {
    margin-top: 23px;
}

/* END: Theme Skin */

/* START: Theme Demo */
:root {
    --theme-title-color: #000;
    --theme-breadcrumb-color: #666;
    --theme-breacrumbt-hover-color: var(--theme-orange-color);
    --expand-icon-color: #cccccc;
    --expand-icon-hover-color: var(--theme-orange-color);
    --expand-icon-size: 31px;
}

.theme-demo:not(.custom) {
    position: relative;
    box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform var(--transition-effect), box-shadow var(--transition-effect);
    overflow: hidden;
}

.theme-demo:not(.custom):hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 10px 2px rgba(0, 0, 0, 0.1);
}

.theme-demo .image-wrapper {
    position: relative;
    overflow: hidden;
}

.theme-demo:not(.pending) .image-wrapper .theme-demo__image-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
    opacity: 0;
    transition: opacity var(--transition-effect);
}

.theme-demo:not(.pending) .image-wrapper .theme-demo__image-overlay::before,
.theme-demo:not(.pending) .image-wrapper .theme-demo__image-overlay::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 4px;
    width: 50px;
    background-color: var(--bg-white);
    transform: translate(-50%, -50%);
    transition: transform 250ms ease-in-out;
    border-radius: 5px;
}

.theme-demo .image-wrapper:hover .theme-demo__image-overlay {
    opacity: 1;
}

.theme-demo .image-wrapper:hover .theme-demo__image-overlay::before {
    transform: translate(-50%, -50%) rotate(90deg);
}

.theme-demo .image-wrapper:hover .theme-demo__image-overlay::after {
    transform: translate(-50%, -50%) rotate(180deg);
}



.theme-demo.pending,
.theme-demo.pending .content-wrapper {
    cursor: pointer;
    background-color: #f2f2f2;
}

.theme-demo.pending .image-wrapper {
    overflow: visible;
}

.theme-demo .image-wrapper.comingSoon:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.2);
}

.theme-demo .image-wrapper::after {
    content: "";
    display: block;
    padding-bottom: 131.9%;
}

.theme-demo.page-acc .image-wrapper:after,
.theme-demo.page-login .image-wrapper:after {
    padding-bottom: 80%;
}

.theme-demo.page-password-1 .image-wrapper:after,
.theme-demo.page-password-1 .image-wrapper:after {
    padding-bottom: 56%;
}

.theme-demo .image-wrapper.small:after {
    padding-bottom: 154.055%;
}

.theme-demo .image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    transition-duration: 2s;
}

.theme-demo .image-wrapper .label {
    position: absolute;
    z-index: 10;
    top: 5px;
    right: 5px;
    font-size: calc(var(--font-size) - 2px);
    font-weight: var(--font-weight-medium);
    letter-spacing: var(--letter-spacing);
    line-height: 20px;
    padding: 4px 12px;
    min-width: 58px;
    text-align: center;
    border-radius: 5px;
    text-transform: capitalize;
}

.theme-demo .image-wrapper .label.new {
    background-color: var(--new-label-bg);
    color: var(--new-label-color);
}

.theme-demo .image-wrapper .label.comingSoon {
    background-color: var(--coming-soon-label-bg);
    color: var(--coming-soon-label-color);
}

.theme-demo .content-wrapper {
    padding: 33px 30px 20px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.theme-demo .title-wrapper {
    position: relative;
    width: calc(100% - var(--expand-icon-size));
    padding-right: 5px;
}

.theme-demo .title-wrapper .breadcrumb {
    font-size: 14px;
    color: var(--theme-breadcrumb-color);
    font-weight: var(--font-weight-medium);
    letter-spacing: var(--letter-spacing-0);
    align-items: center;
    gap: 5px;
    margin-bottom: 0;
    padding: 0;
    background: none;
    flex-wrap: nowrap;
}

.theme-demo .title-wrapper .breadcrumb,
.theme-demo .title-wrapper .title .text {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.theme-demo .title-wrapper .breadcrumb svg {
    width: 10px;
    height: 10px;
    fill: var(--theme-breadcrumb-color);
    flex-shrink: 0;
}

.theme-demo .title-wrapper .breadcrumb:hover {
    color: var(--theme-breacrumbt-hover-color);
}

.theme-demo .title-wrapper .breadcrumb:hover svg {
    fill: var(--theme-breacrumbt-hover-color);
}

.theme-demo .content-wrapper .expand-icon {
    width: var(--expand-icon-size);
    height: var(--expand-icon-size);
}

.theme-demo .content-wrapper .expand-icon svg {
    width: var(--expand-icon-size);
    height: var(--expand-icon-size);
    fill: var(--expand-icon-color);
    transition: fill var(--transition-effect);
}

.theme-demo .content-wrapper .expand-icon:hover svg {
    fill: var(--expand-icon-hover-color);
}

.theme-demo .title-wrapper .title {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    line-height: 26px;
    letter-spacing: var(--letter-spacing);
    color: var(--theme-title-color);
    text-transform: capitalize;
    margin: 15px 0 7px 0;
}

.theme-demo .title-wrapper .title a {
    display: inline-block;
    vertical-align: top;
    position: relative;
}

.theme-demo .title-wrapper .title a:after {
    content: "";
    display: block;
    margin: 0 auto;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    transition: all 280ms ease-in-out;
    width: 0;
    opacity: 0;
    backface-visibility: hidden;
    border-bottom: 1px solid var(--theme-title-color);
}

.theme-demo .image-wrapper a {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 99;
}

/* END: Theme Demo */

/* START: Theme Mobile First */
:root {
    --scrollbar-background: #f2f2f2;
    --scrollbar-thumb: #ccc;
    --text-default-color: #cacaca;
    --text-active-color: var(--text-color);
}

.themevale-mobile-first .themevale_heading {
    margin-bottom: 70px;
    max-width: 920px;
}

.themevale-mobile-first .themevale_unique_features {
    margin-right: 35px;
    padding-right: 13px;
    max-height: 752px;
    overflow-y: auto;
    overflow-x: hidden;
}

.themevale-mobile-first .themevale_unique_features::-webkit-scrollbar {
    width: 8px;
}

.themevale-mobile-first .themevale_unique_features::-webkit-scrollbar-track {
    background-color: var(--scrollbar-background);
    border-radius: 5px;
}

.themevale-mobile-first .themevale_unique_features::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb);
    border-radius: 5px;
}

.themevale_unique_features .item {
    padding: 34px 25px 33px 40px;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: transform var(--transition-effect), border-color var(--transition-effect);
    cursor: pointer;
}

.themevale_unique_features .item .title,
.themevale_unique_features .item .description {
    color: var(--text-default-color);
    transition: color var(--transition-effect);
    letter-spacing: var(--letter-spacing-0);
}

.themevale_unique_features .item .title {
    font-size: calc(var(--font-size) + 8px);
    font-weight: var(--font-weight-bold);
}

.themevale_unique_features .item .description {
    font-size: calc(var(--font-size) + 2px);
    font-weight: var(--font-weight-normal);
    letter-spacing: var(--letter-spacing-0);
    line-height: 25px;
    margin-bottom: 0;
}

.themevale_unique_features .item:hover:not(.active) {
    transform: translateX(10px);
}

.themevale_unique_features .item:hover .title,
.themevale_unique_features .item:hover .description,
.themevale_unique_features .item.active .title,
.themevale_unique_features .item.active .description {
    color: var(--text-active-color);
}

.themevale_unique_features .item.active {
    border-color: var(--theme-orange-color);
}

.themevale_mobile_view {
    /* margin-left: 105px; */
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.themevale_mobile_view .images-container {
    position: relative;
    width: 438px;
    height: 840px;
    margin-left: 30px;
    margin-top: -44px;
}

.themevale_mobile_view img {
    position: absolute;
    inset: 0;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transition: opacity var(--transition-effect), box-shadow var(--transition-effect);
    border-radius: 50px;
}

.themevale_mobile_view img.active {
    opacity: 1;
}

/* END: Theme Mobile First */

/* START: Theme Feature */
.themevale-feature .themevale_heading .description {
    display: block;
    max-width: 495px;
    margin-left: auto;
    margin-right: auto;
}

.themevale-feature .themevale_list .items {
    vertical-align: middle;
}

.themevale_mutipleLayout {
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
    text-align: center;
}

.themevale_mutipleLayout .items {
    padding: 10px;
}

.themevale_mutipleLayout img {
    border-radius: 5px;
    box-shadow: 0px 10px 30px 0px rgba(113, 211, 250, 0.2);
}

.themevale_mutipleLayout iframe {
    border-radius: 10px;
    box-shadow: 0px 10px 25px 0px rgb(0, 0, 0, .1);
    height: 430px;
}

.themevale_mutipleLayout .link {
    display: inline-block;
    vertical-align: top;
}

.themevale_mutipleLayout .title {
    display: block;
    text-align: center;
    font-size: var(--font-size);
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--letter-spacing);
    line-height: 1.625;
    text-transform: capitalize;
    color: var(--link-color);
    margin: 24px 0 0 0;
}

.themevale-feature-3 {
    background-color: var(--section-background-1);
}

.themevale-feature-3 .themevale_grid .items.column-1 {
    padding-right: 10px;
    padding-left: 27px;
}

.themevale-feature-3 .themevale_grid .items.column-2 {
    padding-left: 10px;
    padding-right: 27px;
}

.themevale-feature-3 .themevale_grid .items.column-full {
    width: 100%;
    padding-left: 27px;
    padding-right: 27px;
}

.themevale-feature-3 .themevale_grid .items.column-full .google-seo {
    width: 100%;
    display: flex;
}

.themevale-feature-3 .google-seo-illustration,
.themevale-feature-3 .google-seo-text {
    width: 50%;
    background-color: var(--bg-white);
    position: relative;
    height: 594px;
}

.themevale-feature-3 .google-seo-illustration img {
    position: absolute;
}

.themevale-feature-3 .google-logo {
    width: 10%;
    height: auto;
    top: 6%;
    left: 3.5%;
}

.themevale-feature-3 .search-field {
    width: 78%;
    top: 5%;
    left: 17.3%;
}

.themevale-feature-3 .active-result {
    width: 95%;
    top: 22%;
    left: 0;
}

.themevale-feature-3 .result {
    width: 85%;
    top: 56%;
    left: 5.3%;
}

.themevale-feature-3 .result-2 {
    width: 85%;
    top: 79%;
    left: 5.3%;
}

.themevale-feature-3 .themevale_grid .items.column-full .google-seo-text .content-wrapper {
    background-color: var(--bg-white);
}

.themevale-feature-3 .themevale_grid .items.column-full .google-seo-text .title,
.themevale-feature-3 .themevale_grid .items.column-full .google-seo-text .description {
    color: var(--theme-orange-color);
}

.themevale-feature-3 .themevale_grid .items {
    margin-bottom: 10px;
}

.themevale-feature-3 .content-wrapper {
    height: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-white);
    padding: 10px;
}

.themevale-feature-3 .content-wrapper:not(.image):not(.google-seo-text) {
    background-color: var(--theme-orange-color);
}

.themevale-feature-3 .themevale_heading {
    margin-bottom: 0;
    border-radius: 10px;
}

.themevale-feature-3 .themevale_heading .title,
.themevale-feature-3 .themevale_heading .description {
    color: var(--text-color-white);
}

.themevale-feature-3 .themevale_heading .description {
    max-width: 660px;
    font-size: calc(var(--font-size) + 2px);
    margin-top: 19px;
}


.themevale-feature-3 .themevale_heading .description.pre-description {
    font-size: calc(var(--font-size) + 8px);
    margin-top: 10px;
}

.performance__fast-loading-1 {
    background-image: url('../images/imgess/imgess/imgess/PERFORMANCE.gif');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.performance__fast-loading-2 {
    background-image: url('../images/SEO.gif');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.themevale_list-featured {
    display: block;
    margin: 0;
    padding: 28px 0 18px 0;
    font-size: 0;
    letter-spacing: 0;
    column-count: 2;
    -webkit-column-count: 2;
}

.themevale_list-featured li {
    font-size: var(--font-size);
    font-weight: var(--font-weight-normal);
    letter-spacing: var(--letter-spacing);
    line-height: 1.5;
    color: var(--text-color);
    margin: 0 0 16px 0;
    padding: 0 0 0 20px;
    position: relative;
}

.themevale_list-featured li a {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
}

.themevale_list-featured li:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    background-color: var(--text-color);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

/* END: Theme Feature */

/* START: Theme Customization  */
.themevale-customization {
    background-color: var(--section-background-1);
}

.themevale-customization .themevale_heading {
    margin-bottom: 5px;
    max-width: 900px;
}

.themevale-customization .themevale_heading .description {
    margin-top: 13px;
}

.themevale_customization_images {
    position: relative;
}

.macbook-customization {
    display: block;
    border-radius: 20px;
    margin: 0 auto;
    margin-left: 285px;
}

.customization {
    position: absolute;
    bottom: -64px;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
}

.customization-1 {
    left: 67px;
    width: 370px;
}

.customization-2 {
    left: 456px;
    width: 240px;
}

.customization-3 {
    left: 716px;
    width: 245px;
}

.customization-4 {
    left: 981px;
    width: 250px;
}

/* END: Theme Customization  */

/* START: Theme Testimony  */
:root {
    --border-color: #bfbfbf;
    --testminony-text-color: #131424;
    --box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
    --slick-bot-pos: -54px;
    --slick-arrow-width: 30px;
    --slick-arrow-height: 24px;
    --slick-side-pos: 40.5vw;
    
    --card-height: 407;
}

.themevale-testimony .themevale_heading .description {
    margin-top: 12px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.testimonies {
    display: block;
}

.testimony-card {
    width: 670px;
    height: calc(var(--card-height) * 1px);
    padding: 15px 35px 20px;
    background-color: var(--bg-white);
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    display: inline-block;
    margin: 10px 10px;
    cursor: grab;

    transition: height var(--transition-effect);
}

.testimony-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.testimonny-name {
    font-size: var(--font-size);
    color: var(--theme-orange-color);
    font-weight: var(--font-weight-bold);
    line-height: 32px;
    margin-bottom: 0;
}

.testimony-service {
    font-size: var(--font-size);
    margin-bottom: 15px;
}

.testimony-service span {
    color: var(--testminony-text-color);
    font-weight: var(--font-weight-medium);
}

.testimony-body {
    padding-top: 10px;
    transition: height var(--transition-effect);
}

.testimony-body p {
    --testimony-text-height: 225;
    font-size: var(--font-size);
    color: var(--testminony-text-color);
    line-height: 32px;
    letter-spacing: var(--letter-spacing-0);
    height: calc(var(--testimony-text-height) * 1px);
    overflow: hidden;
    position: relative;
    transition: height var(--transition-effect);
}

.testimony-body p::after {
    content: "";
    position: absolute;
    inset: 0;
    background: none;
}

.testimony-show-more-btn {
    display: none;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;

    color: var(--theme-orange-color);
    text-decoration: underline;
    text-decoration-color: var(--theme-orange-color);
    text-underline-offset: 2px;
}

.has-show-more .testimony-show-more-btn {
    display: block;
}

.has-show-more:not(.expanded) .testimony-body p::after {
    background: linear-gradient(to top, #fff, transparent);
}

.expanded,
.expanded .testimony-body p {
    height: max-content;
}

.themevale-testimony .slick-arrow {
    position: absolute;
    bottom: calc(var(--slick-bot-pos) - (var(--slick-arrow-height) / 4));
    left: 0;
    width: var(--slick-arrow-width);
    height: var(--slick-arrow-height);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    cursor: pointer;
}

.themevale-testimony .slick-arrow svg {
    height: var(--slick-arrow-height);
    width: var(--slick-arrow-width);
    transition: fill var(--transition-effect);
}

.themevale-testimony .slick-arrow:hover svg {
    fill: var(--theme-orange-color);
}

.themevale-testimony .slick-arrow.prev {
    left: var(--slick-side-pos);
}

.themevale-testimony .slick-arrow.next {
    right: var(--slick-side-pos);
    left: auto;
    transform: rotate(180deg);
}

.themevale-testimony .slick-dots {
    bottom: var(--slick-bot-pos);
    z-index: 2;
}

.slick-dots li {
    margin-left: 7px;
    margin-right: 7px;
}

.slick-dots li button {
    border: var(--theme-orange-color);
    background-color: var(--theme-orange-color);
    opacity: 0.2;
}

.slick-dots li.slick-active button {
    opacity: 1 !important;
    border: var(--theme-orange-color);
    background-color: var(--theme-orange-color);
}

/* END: Theme Testimony  */

/* START: Theme Section */
.themevale-section .themevale_heading .title .text:before {
    background-color: #d7eefd;
}

.themevale-section .themevale_heading .description {
    display: block;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.themevale-section .themevale_grid {
    padding-top: 13px;
    padding-bottom: 8px;
}

.themevale-section .items img {
    /*border: 8px solid var(--bg-white);*/
    border-radius: 5px;
    outline-offset: -8px !important;
    outline: 8px solid var(--bg-white) !important;
    box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
}

.themevale-section .items-circle img:first-child {
    border-radius: 50%;
    outline-offset: -7px !important;
}

.themevale-section .items-circle img:last-child {
    display: none;
}

.themevale-section .pos-right .image-wrapper {
    text-align: right;
    padding-right: 10px;
}

.themevale-section .pos-left .image-wrapper {
    text-align: left;
    padding-left: 10px;
}

.themevale-section .pos-top .image-wrapper {
    padding-bottom: 10px;
}

.themevale-section .pos-bottom .image-wrapper {
    padding-top: 10px;
}

/* END: Theme Section */

/* START: Theme Plan */
:root {
    --table-text-color: #55595c;
}

.themevale-plan {
    background-color: var(--section-background-1);
}

.themevale-plan .themevale_heading {
    margin-bottom: 58px;
    max-width: 735px;
}

.themevale-plan .themevale_heading .title {
    padding-top: 58px;
}

.themevale-plan .themevale_heading .title .text:before {
    background-color: #fdf3c8;
}

.themevale-plan .themevale_heading .description {
    margin-top: 5px;
}

.themevale_table {
    max-width: 1280px;
    margin: 0 auto 6px auto;
    border: 1px solid #ececec;
    border-radius: 10px;
    background-color: var(--bg-white);
    box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
}

.themevale_table table {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.themevale_table table tr {
    vertical-align: top;
}

.themevale_table table tr td:first-child {
    width: 52.4%;
}

.themevale_table table tr.feature {
    display: none;
}

.themevale_table table tr.feature.active {
    display: table-row;
}

.themevale_table table td {
    vertical-align: middle;
    font-size: calc(var(--font-size) + 2px);
    font-weight: var(--font-weight-normal);
    line-height: 1.625;
    letter-spacing: var(--letter-spacing--2);
    text-align: center;
    padding: 21px 35px;
    color: var(--table-text-color);
}

.themevale_table table td .icon,
.themevale_table table td .text {
    display: inline-block;
    vertical-align: middle;
}

.themevale_table table td .icon {
    width: 18px;
    height: 18px;
    fill: #48c33d;
    stroke: transparent;
    margin: 0 5px 0 0;
}

.themevale_table table td .text {
    text-transform: uppercase;
}

.themevale_table table td .text-more {
    font-size: inherit;
    font-weight: var(--font-weight-bold);
    color: inherit !important;
}

.themevale_table table td .highlight {
    color: var(--theme-orange-color);
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-weight: var(--font-weight-bold);
    font-size: 25.36px;
    line-height: 1.3;
}

.themevale_table table td .highlight-2 {
    display: block;
}


.themevale_table table td .link-highlight {
    display: block;
    padding: 35px 0;
    background-image: linear-gradient(to right, #003366 0%, #fd562d 51%, #fa6d4a 100%);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: 0.5s;
    /*background-size: 150% auto;*/
}

.themevale_table table td .link-highlight .text {
    display: block;
    font-weight: 200;
    line-height: 1.5;
    letter-spacing: var(--letter-spacing);
    text-transform: capitalize;
    color: var(--text-color-white);
}

.themevale_table table td .link-highlight .text:first-child {
    font-weight: var(--font-weight-medium);
    font-size: 25.36px;
}

.themevale_table table td .link-highlight .text:first-child {
    font-size: 24px;
}

.themevale_table table td .highlight .underline {
    text-underline-offset: 2px !important;
    text-decoration-thickness: 0px !important;
    text-decoration-color: #fec6b8 !important;
}

.themevale_table table td .link-highlight img {
    border-radius: 5px;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
}

.themevale_table table td+td {
    border-left: 1px solid #ececec;
}

.themevale_table table thead {
    border-bottom: 1px solid #ececec;
}

.themevale_table table thead td {
    font-weight: var(--font-weight-bold);
    color: var(--theme-orange-color);
}

.themevale_table table tbody tr:nth-child(even) {
    background-color: #f8f8f8;
}

.themevale_table table tfoot.has-border {
    border-top: 1px solid #ececec;
}

.themevale_table-extra {
    display: none;
}

/* END: Theme Plan */

/* START: Theme App */
.themevale-app {
    background-color: var(--section-background-1);
}

.themevale-app .themevale_grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
    row-gap: 35px;
    padding-bottom: 20px;
}

.themevale-app .themevale_heading .title .text:before {
    background-color: #fad5c5;
}

.themevale-app .themevale_heading {
    margin-top: 20px;
    margin-bottom: 56px;
}

.themevale-app .themevale_heading .description {
    margin-top: 12px;
}

.themevale_app {
    padding-top: 35px;
    padding-bottom: 40px;
    margin-bottom: 0 !important;
}

.themevale_app .slick-dots {
    bottom: 0;
}

.themevale_app .itemWrapper {
    display: block;
    letter-spacing: 0;
    font-size: 0;
    transition: box-shadow var(--transition-effect), transform var(--transition-effect), background-color var(--transition-effect);
    border-radius: 15px;
}

.themevale_app .itemLeft,
.themevale_app .itemRight {
    display: inline-block;
    vertical-align: top;
}

.themevale_app .itemLeft {
    width: 120px;
}

.themevale_app .itemRight {
    width: calc(100% - 120px);
    padding: 16px 0 0 30px;
    text-align: left;
}

.themevale_app .items .title {
    font-size: calc(var(--font-size) + 2px);
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--letter-spacing);
    line-height: 1.5;
    color: var(--link-color);
    margin: 0 0 1px 0;
}

.themevale_app .items .title .link,
.themevale_app .items .underline {
    letter-spacing: 0;
    padding-right: 2px;
}

.themevale_app .items .text {
    font-size: var(--font-size);
    font-weight: var(--font-weight-normal);
    line-height: 1.75;
    letter-spacing: var(--letter-spacing);
    color: var(--text-color);
}

.themevale_app .items img {
    border-radius: 5px;
    box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
}

/* END: Theme App */

/* START: Theme Purchase */
.themevale-purchase .themevale_grid {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;
}

.themevale-purchase .themevale_heading .title {
    font-size: 40px;
    color: var(--text-color);
    letter-spacing: -0.04em;
    margin-top: 47px;
}

.themevale-purchase .themevale_heading {
    padding-right: 100px;
    margin-top: 75px;
}

.button-purchase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: max-content;
    margin: 38px auto;
    padding: 8px 47px;
}

.button-purchase .text {
    font-weight: var(--font-weight-semibold);
    font-size: 30px;
}

.purchase-icon {
    width: 44px;
    height: 44px;
}

.purchase-icon svg {
    width: 100%;
    height: 100%;
}

.themevale-purchase .images-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.themevale-purchase .images-container img.purchase-icon {
    position: absolute;
    width: 120px;
    height: auto;
}

.themevale-purchase .images-container img.purchase-icon.cart {
    top: 36%;
    left: 35%;
    width: 160px;
}

.themevale-purchase .images-container img.purchase-icon.icon {
    top: 70%;
    left: 5%;
}

.themevale-purchase .images-container img.purchase-icon.text {
    top: 18%;
    left: 64%;
    width: 150px;
}

.themevale-purchase .images-container img.purchase-icon.quick-view {
    top: 65%;
    left: 65%;
}

.themevale-purchase .images-container img.purchase-icon.image {
    top: 9%;
    left: 8%;
}

.themevale-purchase .purchase-home {
    --x-rotation: 0;
    --y-rotation: 0;

    width: 370px;
    height: 700px;
    margin-right: 150px;
    transform-style: preserve-3d;
    transform: rotateX(calc(var(--x-rotation) * 1deg)) rotateY(calc(var(--y-rotation) * 1deg));
    transition: transform 150ms ease;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
}

.themevale-purchase .purchase-icons {
    --x-rotation: 0;
    --y-rotation: 0;

    position: absolute;
    top: 47px;
    right: 75px;
    transform-style: preserve-3d;
    transform: rotateX(calc(var(--x-rotation) * 1deg)) rotateY(calc(var(--y-rotation) * 1deg)) translateZ(100px) scale(1.13);
    transition: transform 150ms ease;
}

/* END: Theme Purchase */

/* START: Theme Tag */
.themevale-tag {
    background-color: #2319cc;
}

.themevale-tag .themevale_heading .title {
    color: var(--text-color-white);
    font-size: 80px;
    padding-top: 4px;
}

.themevale-tag .themevale_heading .title .text:before {
    background-color: #ef7440;
    width: calc(100% + 40px);
    left: -20px;
    height: 36px;
    top: auto;
    bottom: 2px;
}

.themevale-tag .themevale_heading .description {
    font-size: 24px;
    color: var(--text-color-white);
    margin-top: 39px;
}

.themevale-tag .themevale_heading .description .text {
    display: inline-block;
    vertical-align: middle;
}

.themevale-tag .themevale_heading .description .image {
    max-width: 150px;
    margin: 0 15px;
}

.themevale_navigation {
    display: flex;
    text-align: center;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 70px 0 5px 0;
}

.themevale_navigation .items {
    min-width: 200px;
}

.themevale_navigation ul {
    font-size: 0;
    letter-spacing: 0;
}

.themevale_navigation ul li {
    display: inline-block;
    vertical-align: top;
    padding: 0 22px;
}

.themevale_navigation .items,
.themevale_navigation .link {
    font-size: calc(var(--font-size) - 2px);
    font-weight: var(--font-weight-normal);
    line-height: 1.5;
    letter-spacing: var(--letter-spacing);
    color: var(--text-color) !important;
}

/* END: Theme Tag */

/* START: Footer */
.footer {
    background-color: #333333;
    padding: 78px 0 75px 0;
}

.footer-content {
    font-size: var(--font-size);
    font-weight: 200;
    line-height: 1.75;
    letter-spacing: var(--letter-spacing);
    color: var(--text-color-white);
}

.footer-content .text {
    display: block;
}

.footer .text-border {
    font-weight: var(--font-weight-bold);
    display: inline-block;
    vertical-align: top;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: currentColor;
}

.exclamation-mark {
    width: 37px;
    height: 37px;
}

/* END: Footer */

/* START: Back To Top */
#back-to-top {
    display: none;
    position: fixed;
    bottom: 7%;
    right: 15px;
    z-index: 98;
    padding: 4px;
    font-size: 0;
    letter-spacing: 0;
    cursor: pointer;
    overflow: hidden;
    text-align: center;
    border-radius: 50%;
    line-height: 1;
    transition: all 0.3s ease;
    background-color: var(--bg-white);
    border: 2px solid var(--btn-border);
    box-shadow: 0px 3px 10px 0px rgb(35, 25, 204, .3);
}

#back-to-top a {
    display: block;
}

#back-to-top .icon {
    display: block;
    fill: var(--btn-border);
    stroke: transparent;
    width: 30px;
    height: 30px;
    transform: rotate(-180deg) translateY(2px);
}

#back-to-top.is-visible {
    display: block;
}

/* END: Back To Top */

/* START: Open Store Nail */
#open-store-nail {
    --arrow-width: 50px;
    --arrow-height: 25px;

    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(200%);
    z-index: 5;
    border-radius: 30px;
    color: var(--text-color-white);
    background-color: var(--theme-orange-color);
    padding: 15px 50px;
    box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    transition: transform 350ms ease-in-out;
    width: fit-content;
}

#open-store-nail.show {
    transform: translate(-50%, 0);
}

.open-store-link .text {
    display: inline-block;
    color: var(--text-color-white);
    /*font-weight: var(--font-weight-semibold);*/
}

.open-store-link .arrow-icon {
    display: inline-block;
    transition: transform var(--transition-effect);
}

.open-store-link .arrow-icon .icon {
    width: var(--arrow-width);
    height: var(--arrow-height);
    fill: var(--text-color-white);
}

.open-store-link:hover .arrow-icon {
    transform: translateX(10px);
}

.close-nail-button {
    background: none;
    border: none;
    outline: none;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 15px;
    font-weight: lighter;
    color: currentColor;
    cursor: pointer;
    line-height: 0;
}

.close-nail-button svg {
    stroke-width: 35px;
}

/* END: Open Store Nail */

/* START: Password Popup */
#redirect-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 50px 25px;
    max-width: 560px;
    background-color: var(--bg-white);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-effect);
}

#redirect-popup h2 {
    font-size: 30px;
    text-align: center;
    line-height: 40px;
    font-weight: var(--font-weight-medium);
}

#redirect-popup p {
    font-size: var(--font-size);
    text-align: center;
    margin-top: 10px;
}

#redirect-btn {
    display: block;
    padding: 10px 15px;
    margin: 20px auto 0 auto;
    cursor: pointer;
    width: 150px;
}

.close-popup-button {
    background: none;
    border: none;
    outline: none;
    position: absolute;
    top: 20px;
    right: 10px;
    font-size: 15px;
    font-weight: lighter;
    color: currentColor;
    cursor: pointer;
    line-height: 0;
}

#redirect-popup.show {
    opacity: 1;
    pointer-events: auto;
}

/* END: Password Popup */

/* START: Section Child Themes */

.homepage-banners .themevale_heading {
    display: block;
    text-align: center;
    max-width: 920px;
    margin: 0 auto 45px auto;
}

#themevale_mutipleChildtheme .button-group {
    margin-top: 50px;
}

#themevale_mutipleChildtheme .button-group .button {
    width: 230px;
}

.themevale_mutipleChildtheme .slick-dots {
    bottom: -55px;
}

.themevale_mutipleChildtheme .slick-prev {
    left: -15px;
}

.themevale_mutipleChildtheme .slick-next {
    right: -15px;
}

.themevale_mutipleChildtheme .slick-track {
    padding-top: 11px;
}

.themevale_mutipleChildtheme {
    margin-top: -11px;
    margin-left: -15px;
    margin-right: -15px;
}

.themevale_mutipleChildtheme .theme-demo:not(.custom) {
    box-shadow: 0px 5px 15px 0px rgb(0,0,0,0.1);
}

#MainPageLayout-2 {
    margin-bottom: 73px;
}

.banner-child-theme .themevale_background_gray_custom2 {
    padding-top: 80px;
    background-color: #fbfaff;
}

.themevale_background_gray_custom2 {
    z-index: 1;
    position: relative;
}

.themevale_background_gray_custom2:before {
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 100px;
    position: absolute;
    background-color: #fbfaff;
}

.theme-demo.custom {
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    border: 1px solid #e7e6eb;
    background-color: #fbfaff;
    box-shadow: 0 3px 10px rgb(0 0 0 / 8%);
}

.theme-demo.custom .content-wrapper {
    display: block;
    text-align: left;
    font-size: 12px;
    padding: 20px 30px 25px;
    background-color: #fbfaff;
}

.theme-demo.custom .content-wrapper .label {
    padding: 0;
    font-size: 12px;
    font-weight: 400;
    color: #8b919f;
    margin: 0 0 7px 0;
}

.theme-demo.custom .content-wrapper .label li {
    line-height: 20px;
    display: inline-block;
    text-transform: capitalize;
}

.theme-demo.custom .content-wrapper .label li+li:before {
    content: "❯";
    margin: 0 7px;
    color: #dfe3ec;
    font-size: 12px;
    line-height: 20px;
    position: relative;
    vertical-align: top;
    display: inline-block;
}

.theme-demo.custom .title-wrapper {
    width: 100%;
}

.theme-demo.custom .title-wrapper .link {
    right: 0;
    top: 50%;
    color: #dfe3ec;
    font-size: 30px;
    position: absolute;
    transform: translateY(-50%);
}

.theme-demo .title-wrapper .link:hover {
    color: #003366;
}

.theme-demo.custom .title-wrapper .title {
    margin: 0;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    color: #28274b;
    text-transform: capitalize;
}

#themevale_mutipleChildtheme .slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
    opacity: 0.5;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#themevale_mutipleChildtheme .slick-dots li {
    padding: 0;
    width: auto;
    height: auto;
    margin: 5px 6px;
}

/* END: Section Child Themes */