/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Rubik:wght@400;500&display=swap");

/* CSS Variables */
:root {
    --font-heading: "Playfair Display", serif;
    --font-body: "Rubik", sans-serif;
    --font-size: 16px;
    --font-size-sm: 12px;
    --color-primary: #592ce9;
    --color-primary-shade: #592ce9;
    --color-blue: #0561fc;
    --color-green: #19d873;
    --color-cyan: #4ee1f9;
    --color-green-light: #ccf49f;
    --color-yellow: #fdc040;
    --color-red: #eb4c4c;
    --color-orange: #ff9839;
    --color-white: #ffffff;
    --color-dark: #0c0d16;
    --color-medium: #8d8d8d;
    --color-light: #f2f2f2;
    --color-primary-rgb: 25, 122, 131;
    --color-blue-rgb: 5, 97, 252;
    --color-cyan-rgb: 78, 225, 249;
    --color-green-rgb: 25, 216, 115;
    --color-green-light-rgb: 204, 244, 159;
    --color-yellow-rgb: 253, 192, 64;
    --color-red-rgb: 235, 76, 76;
    --color-orange-rgb: 255, 152, 57;
    --color-white-rgb: 255, 255, 255;
    --color-dark-rgb: 13, 13, 23;
    --color-medium-rgb: 141, 141, 141;
    --color-light-rgb: 242, 242, 242;
    --text-dark: var(--color-dark);
    --text-white: var(--color-white);
    --text-medium: var(--color-medium);
    --text-light: var(--color-light);
    --border-color: #eaeaea;
    --bg-blue: #0d1034;
    --bg-light: #f9f8ff;
    --gradient-bg: linear-gradient(135deg, #fab2ff 0%, #1904e5 100%);
    --breakpoint-xs: "only screen and (max-width: 767.98px)";
    --breakpoint-md: "only screen and (min-width: 768px) and (max-width: 991.98px)";
    --breakpoint-lg: "only screen and (min-width: 992px) and (max-width: 1199.98px)";
    --breakpoint-lg-down: "only screen and (max-width: 991.98px)";
}

/* Reset CSS */
body {
    font-family: var(--font-body);
    font-size: var(--font-size);
    font-weight: 400;
    color: var(--text-medium);
    overflow-x: hidden;
}

a {
    color: var(--text-dark);
    text-decoration: none;
    outline: 0 !important;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

:focus {
    outline: 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h2,
.h3 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-weight: 700;
    font-size: 64px;
}

h2 {
    font-size: 44px;
}

h3 {
    font-size: 24px;
}

p {
    line-height: 1.8;
}

img {
    max-width: 100%;
    height: auto;
}
:is(.lc-1, .lc-2, .lc-3) {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.lc-1 {
    -webkit-line-clamp: 1 !important;
    line-clamp: 1 !important;
}

.lc-2 {
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
}

.lc-3 {
    -webkit-line-clamp: 3 !important;
    line-clamp: 3 !important;
}
/* Color CSS*/
.color-primary {
    color: var(--color-primary);
}

.color-blue {
    color: var(--color-blue);
}

.color-green {
    color: var(--color-green);
}

.color-red {
    color: var(--color-red);
}

.color-yellow {
    color: var(--color-yellow);
}

.color-purple {
    color: var(--color-primary);
}

.color-orange {
    color: var(--color-orange);
}

.bg-light {
    background: var(--bg-light) !important;
}

/* Padding CSS */
.pt-80 {
    padding-top: 80px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-120 {
    padding-top: 120px;
}

.pt-110 {
    padding-top: 110px;
}

.ptb-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-70 {
    padding-bottom: 70px;
}

.ptb-90 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.pb-50 {
    padding-bottom: 50px;
}

/* Margin CSS */
.mb-30 {
    margin-bottom: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-50 {
    margin-top: 50px;
}

/* Button CSS */
.btn {
    padding: 12px 35px;
    outline: 0 !important;
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    border-radius: 30px;
    border: none;
    box-shadow: none;
    transition: 0.4s ease-out;
}

.btn:hover {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}

.btn-sm {
    font-size: 14px;
    padding: 8px 16px;
}

.primary-btn {
    position: relative;
    overflow: hidden;
    color: var(--text-white);
    background-color: var(--color-primary);
    /* background: var(--gradient-bg); */
    /* -webkit-box-shadow: 0px 24px 54px -10px rgba(var(--color-primary-rgb), 0.34);
    box-shadow: 0px 24px 54px -10px rgba(var(--color-primary-rgb), 0.34); */
}

/* .primary-btn::before {
    position: absolute;
    content: "";
    top: 0;
    width: 100%;
    height: 100%;
    left: -100%;
    background: var(--color-primary-shade);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
} */

.primary-btn:hover {
    color: var(--color-white);
}

.primary-btn:hover::before {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.secondary-btn {
    color: var(--color-primary);
    background-color: transparent;
    border: 1px solid var(--color-primary);
}

.secondary-btn:hover {
    color: var(--color-primary);
}

.section-title {
    margin-top: -5px;
    margin-bottom: 45px;
}

.section-title .subtitle {
    color: var(--color-primary);
    margin-bottom: 5px;
}

.section-title .title {
    margin-bottom: 0;
    text-transform: capitalize;
}

.section-title .text {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 500;
}

.subtitle {
    display: inline-block;
    font-weight: 500;
}

.text-white * {
    color: white;
}
.dis-none {
    display: none;
}

/* Custom Anim button css */
.anim-btn {
    color: var(--color-white);
    position: relative;
    display: inline-block;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    border: 1px solid var(--color-primary);
    transition: 0.5s ease;
    z-index: 1;
}

.anim-btn span {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--color-white);
    transition: width 0.5s ease, height 0.5s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.anim-btn:hover {
    color: var(--color-primary);
}

.anim-btn:hover span {
    width: 225%;
    height: 562.5px;
}

/* .dis-block {
    display: block;
} */

/* Form CSS */
.form-control {
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
    padding: 18px;
    font-size: 14px;
    color: var(--color-dark);
    border-color: var(--border-color);
    background-color: transparent;
}

.form-control:focus {
    color: var(--color-dark);
    background-color: transparent;
}

textarea {
    height: auto !important;
}

::-webkit-input-placeholder {
    color: var(--color-medium);
}

:-ms-input-placeholder {
    color: var(--color-medium);
}

::-ms-input-placeholder {
    color: var(--color-medium);
}

::placeholder {
    color: var(--color-medium);
}

/* Card CSS */
.card {
    border: none;
    border-radius: 10px;
}

.card .card-title {
    margin-bottom: 20px;
}

.card .card-text {
    color: var(--text-medium);
}

@media (min-width: 992px) {
    .no-wrap {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
}

/* -----------------------------------------
	Header CSS
----------------------------------------- */
.header-area {
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
    z-index: 999;
}

.header-area.is-sticky {
    position: fixed;
    top: 16px;
    /* background: rgba(var(--color-dark-rgb), 0.9); */
    /* backdrop-filter: saturate(180%) blur(20px); */
    /* box-shadow: 0px 8px 60px rgba(24, 24, 24, 0.1); */
    animation: slideDown 0.5s ease-out 1;
}

.header-area.is-sticky .container {
    padding: 0 0;
}

.header-area .more-option .more-option-toggle {
    z-index: 11;
    font-size: 25px;
    padding: 10px;
}

.header-area .more-option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.header-area .more-option .item {
    position: relative;
}

.header-area .more-option .item:not(:last-child) {
    -webkit-margin-end: 18px;
    margin-inline-end: 18px;
}

.header-area .navbar-nav {
    margin-inline: auto;
}

.header-area .nav-link {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #635658;
    font-weight: 400;
}

/* .header-area .navbar-nav > li > .nav-link {
    color: #635658;
    font-weight: 500;
} */

.header-area .nav-link.toggle i {
    font-size: 14px;
    -webkit-margin-start: 5px;
    margin-inline-start: 5px;
    -webkit-transition: -webkit-transform 0.4s ease-out;
    transition: -webkit-transform 0.4s ease-out;
    transition: transform 0.4s ease-out;
    transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}

.header-area .nav-link.toggle:hover i {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.header-area .nav-link:hover .menu-dropdown {
    -webkit-transform: none;
    transform: none;
}

.header-area .nav-link:hover,
.header-area .nav-link.active,
.header-area .nav-link:focus {
    color: var(--color-primary);
}

.header-area .main-navbar .navbar {
    position: inherit;
    padding: 0 20px;
    background: #fff;
    border-radius: 120px;
    box-shadow: 0px 15px 30px 0px rgba(103, 103, 103, 0.4);
}

.header-area .main-navbar .navbar .navbar-brand {
    padding: 0;
    margin: 0;
}

.header-area .main-navbar .nav-item {
    position: relative;
    margin-left: 8px;
    margin-right: 8px;
}

.header-area .main-navbar .menu-dropdown {
    position: absolute;
    top: auto;
    left: 0;
    z-index: 99;
    opacity: 0;
    width: 230px;
    display: block;
    visibility: hidden;
    list-style: none;
    margin: 0;
    padding: 0;
    border-radius: 5px;
    background-color: var(--color-white);
    -webkit-box-shadow: 0px 0px 30px 0px rgba(var(--color-medium-rgb), 0.15);
    box-shadow: 0px 0px 30px 0px rgba(var(--color-medium-rgb), 0.15);
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.header-area .main-navbar .menu-dropdown .nav-item {
    margin: 0;
}

.header-area .main-navbar .menu-dropdown .nav-link {
    display: block;
    padding: 12px 20px;
}

.header-area .main-navbar .menu-dropdown .nav-link:hover {
    background-color: var(--color-light);
}

.header-area .main-navbar .menu-dropdown .nav-link:hover.toggle i {
    -webkit-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
}

.header-area .main-navbar .menu-dropdown .nav-link.toggle i {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header-area .main-navbar .menu-dropdown .menu-dropdown .nav-item {
    margin: 0;
}

.header-area
    .main-navbar
    .menu-dropdown
    .menu-dropdown
    .nav-item
    a:hover::before {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
}

.header-area
    .main-navbar
    .menu-dropdown
    .menu-dropdown
    .nav-item
    a.active::before {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
}

.header-area .menu-toggler {
    width: 22px;
    height: 20px;
    padding: 0;
    border: 0;
    background: transparent;
    z-index: 1000;
}

.header-area .menu-toggler:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.header-area .menu-toggler span {
    position: relative;
    display: block;
    width: 22px;
    height: 2px;
    background: #000;
    border-radius: 10px;
    -webkit-transition: top 200ms 160ms, -webkit-transform 200ms 0ms;
    transition: top 200ms 160ms, -webkit-transform 200ms 0ms;
    transition: transform 200ms 0ms, top 200ms 160ms;
    transition: transform 200ms 0ms, top 200ms 160ms,
        -webkit-transform 200ms 0ms;
}

.header-area .menu-toggler span:nth-child(1) {
    top: -4px;
}

.header-area .menu-toggler span:nth-child(3) {
    top: 4px;
}

.header-area .menu-toggler.active span:nth-child(1) {
    top: 0;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
    -webkit-transition: top 200ms 0ms, -webkit-transform 200ms 160ms;
    transition: top 200ms 0ms, -webkit-transform 200ms 160ms;
    transition: top 200ms 0ms, transform 200ms 160ms;
    transition: top 200ms 0ms, transform 200ms 160ms,
        -webkit-transform 200ms 160ms;
}

.header-area .menu-toggler.active span:nth-child(2) {
    -webkit-transform: scale(0);
    transform: scale(0);
}

.header-area .menu-toggler.active span:nth-child(3) {
    top: -4px;
    -webkit-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg);
    -webkit-transition: top 200ms 0ms, -webkit-transform 200ms 160ms;
    transition: top 200ms 0ms, -webkit-transform 200ms 160ms;
    transition: top 200ms 0ms, transform 200ms 160ms;
    transition: top 200ms 0ms, transform 200ms 160ms,
        -webkit-transform 200ms 160ms;
}

.header-area
    .main-navbar
    .navbar-nav
    .nav-item
    .menu-dropdown
    li
    .menu-dropdown {
    top: 0;
    opacity: 0;
    left: 230px;
    visibility: hidden;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
}

.header-area
    .main-navbar
    .navbar-nav
    .nav-item
    .menu-dropdown
    li
    .menu-dropdown
    li
    .menu-dropdown {
    top: 0;
    opacity: 0;
    left: 230px;
    visibility: hidden;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
}

.header-area
    .main-navbar
    .navbar-nav
    .nav-item
    .menu-dropdown
    li
    .menu-dropdown
    li
    .menu-dropdown
    li
    .menu-dropdown {
    top: 0;
    opacity: 0;
    left: 230px;
    visibility: hidden;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
}

.header-area
    .main-navbar
    .navbar-nav
    .nav-item
    .menu-dropdown
    li
    .menu-dropdown
    li
    .menu-dropdown
    li
    .menu-dropdown
    li
    .menu-dropdown {
    top: 0;
    opacity: 0;
    left: 230px;
    visibility: hidden;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
}

.header-area
    .main-navbar
    .navbar-nav
    .nav-item
    .menu-dropdown
    li
    .menu-dropdown
    li
    .menu-dropdown
    li
    .menu-dropdown
    li
    .menu-dropdown
    li
    .menu-dropdown {
    top: 0;
    opacity: 0;
    left: 230px;
    visibility: hidden;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
}

.header-area
    .main-navbar
    .navbar-nav
    .nav-item
    .menu-dropdown
    li
    .menu-dropdown
    li
    .menu-dropdown
    li
    .menu-dropdown
    li
    .menu-dropdown
    li
    .menu-dropdown
    li
    .menu-dropdown {
    top: 0;
    opacity: 0;
    left: 230px;
    visibility: hidden;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
}

.header-area
    .main-navbar
    .navbar-nav
    .nav-item
    .menu-dropdown
    li
    .menu-dropdown
    li
    .menu-dropdown
    li
    .menu-dropdown
    li
    .menu-dropdown
    li
    .menu-dropdown
    li:hover
    .menu-dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.header-area
    .main-navbar
    .navbar-nav
    .nav-item
    .menu-dropdown
    li
    .menu-dropdown
    li
    .menu-dropdown
    li
    .menu-dropdown
    li
    .menu-dropdown
    li
    .menu-dropdown
    li.active
    a {
    color: var(--color-primary);
}

.header-area
    .main-navbar
    .navbar-nav
    .nav-item
    .menu-dropdown
    li
    .menu-dropdown
    li
    .menu-dropdown
    li
    .menu-dropdown
    li
    .menu-dropdown
    li:hover
    .menu-dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.header-area
    .main-navbar
    .navbar-nav
    .nav-item
    .menu-dropdown
    li
    .menu-dropdown
    li
    .menu-dropdown
    li
    .menu-dropdown
    li:hover
    .menu-dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.header-area
    .main-navbar
    .navbar-nav
    .nav-item
    .menu-dropdown
    li
    .menu-dropdown
    li
    .menu-dropdown
    li:hover
    .menu-dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.header-area
    .main-navbar
    .navbar-nav
    .nav-item
    .menu-dropdown
    li
    .menu-dropdown
    li:hover
    .menu-dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.header-area
    .main-navbar
    .navbar-nav
    .nav-item
    .menu-dropdown
    li:hover
    .menu-dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.header-area .main-navbar .navbar-nav .nav-item:hover .menu-dropdown {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.header-area .nice-select {
    background-color: inherit;
    border: 1px solid var(--border-color);
    padding-right: 24px;
    padding-left: 24px;
    height: 50px;
    line-height: 50px;
    border-radius: 30px;
    font-weight: 500;
}

.header-area .nice-select .current {
    color: #686868;
}

.header-area .nice-select .current:before {
    content: "\f0ac";
    font-size: 16px;
    opacity: 0.75;
    margin-right: 5px;
    font-family: "Font Awesome 5 Pro";
}

.header-area .nice-select::after {
    border-color: white;
}

.header-area .nice-select .list {
    background-color: var(--color-white);
    -webkit-box-shadow: 0px 0px 30px 0px rgba(var(--color-medium-rgb), 0.15);
    box-shadow: 0px 0px 30px 0px rgba(var(--color-medium-rgb), 0.15);
}

.header-area .main-responsive-nav {
    display: none;
}

.header-area .mobile-menu {
    display: none;
}

.mobile-menu-active .header-area .mobile-menu {
    display: block;
}

@media (max-width: 1199px) {
    .header-area {
        top: 0;
        position: relative;
        background: #fff;
        box-shadow: 0px 8px 60px rgba(24, 24, 24, 0.1);
    }

    .header-area.is-sticky {
        position: fixed;
        top: 0;
        width: 100%;
    }

    .header-area .main-responsive-nav {
        display: block;
        height: 60px;
        line-height: 60px;
    }

    .header-area .main-responsive-nav > div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .header-area .main-navbar {
        display: none;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        -webkit-transition: all 0.8s ease;
        transition: all 0.8s ease;
        z-index: 999;
    }

    .mobile-menu .mobile-menu-wrapper {
        margin-top: 60px;
        padding: 0 20px 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        background: #fff;
        -webkit-box-shadow: 0px 8px 60px rgba(24, 24, 24, 0.1);
        box-shadow: 0px 8px 60px rgba(24, 24, 24, 0.1);
    }

    .mobile-menu .navbar-nav {
        width: 100%;
        -webkit-margin-start: 0;
        margin-inline-start: 0;
    }

    .mobile-menu .navbar-nav li a {
        padding: 10px 0;
        border-bottom: 1px solid #eaeaea;
        -webkit-transition: all 700ms ease;
        transition: all 700ms ease;
    }

    .mobile-menu .navbar-nav li ul {
        -webkit-padding-start: 12px;
        padding-inline-start: 12px;
        list-style-type: none;
    }

    .mobile-menu .navbar-nav li li a {
        font-size: 14px;
        color: #686868;
    }

    .mobile-menu .more-option {
        padding-top: 20px;
        margin-top: 20px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .mobile-menu li.nav-item:not(.show) ul {
        display: none;
    }

    .mobile-menu li.nav-item.show .toggle {
        position: relative;
    }

    .mobile-menu li.nav-item.show .toggle i::before {
        content: "\f068";
    }

    .mobile-menu .nav-link.toggle {
        position: relative;
    }

    .mobile-menu .nav-link.toggle i {
        position: absolute;
        top: 50%;
        right: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .mobile-menu .nav-link.toggle:hover i {
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

/* -----------------------------------------
	Home CSS
----------------------------------------- */
.home-banner {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-position: center;
    background-size: cover;
}

.home-banner .content {
    max-width: 650px;
    padding-top: 210px;
    padding-bottom: 120px;
}

.home-banner .content .subtitle {
    font-weight: 500;
    margin-bottom: 10px;
}

.home-banner .content .title {
    margin-bottom: 24px;
}

.home-banner .content .text {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 46px;
}

.home-banner-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    text-align: right;
    height: 100%;
}

.home-banner-image img {
    height: 100%;
}

/* home-banner Shape */
.home-banner .shape img {
    position: absolute;
    z-index: -1;
    max-width: 35px;
    width: 100%;
}

.home-banner .shape img.shape-1 {
    top: 36%;
    left: 6%;
    -webkit-animation: moveUpDown 5s linear infinite;
    animation: moveUpDown 5s linear infinite;
}

.home-banner .shape img.shape-2 {
    top: 15%;
    left: 24%;
    -webkit-animation: rotate 10s linear infinite;
    animation: rotate 10s linear infinite;
}

.home-banner .shape img.shape-3 {
    top: 23%;
    left: 45%;
    -webkit-animation: moveLeftRight 5s linear infinite;
    animation: moveLeftRight 5s linear infinite;
}

.home-banner .shape img.shape-4 {
    top: 12%;
    right: 12%;
    -webkit-animation: rotate 8s linear infinite;
    animation: rotate 8s linear infinite;
}

.home-banner .shape img.shape-5 {
    top: 40%;
    right: 4%;
    -webkit-animation: moveLeftRight 5s linear infinite;
    animation: moveLeftRight 5s linear infinite;
}

.home-banner .shape img.shape-6 {
    bottom: 6%;
    left: 38%;
    -webkit-animation: moveUpDown 5s linear infinite;
    animation: moveUpDown 5s linear infinite;
}

.home-banner .shape img.shape-7 {
    bottom: 10%;
    left: 8%;
    -webkit-animation: moveAround 10s linear infinite;
    animation: moveAround 10s linear infinite;
}

.home-banner .shape img.shape-8 {
    bottom: 5%;
    right: 7%;
    -webkit-animation: rotate 8s linear infinite;
    animation: rotate 8s linear infinite;
}

.home-banner .shape img.shape-9 {
    top: 1%;
    left: 2%;
    -webkit-animation: moveLeftRight 8s linear infinite;
    animation: moveLeftRight 8s linear infinite;
}

/* -----------------------------------------
	Sponsor CSS
----------------------------------------- */
.sponsor {
    position: relative;
    overflow: hidden;
}

.sponsor-single-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sponsor-img {
    margin-right: 25px;
}
.sponsor .swiper {
    padding-bottom: 70px;
}

/* -----------------------------------------
	Store CSS
----------------------------------------- */
.store-single-item {
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid var(--color-primary);
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    z-index: 1;
}

.store-single-item::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 5px;
    border-bottom: 2px solid var(--color-primary);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform 0.4s ease-out;
    transition: -webkit-transform 0.4s ease-out;
    transition: transform 0.4s ease-out;
    transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
    z-index: -1;
}

.store-single-item .card-icon img {
    margin-right: 15px;
}

.store-single-item .card-icon {
    width: 60px;
    height: 60px;
    line-height: 70px;
    text-align: center;
    font-size: 18px;
    border-radius: 5px;
    margin-bottom: 15px;
    background-color: var(--color-primary);
    color: var(--text-white);
    transition: all 0.4s ease;
}
.store-single-item:hover .card-icon {
    border-radius: 50%;
}

.store-single-item:hover .card-icon {
    color: var(#fff);
}
.store-single-item .number {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-dark);
    border: 1px solid var(--color-primary);
    z-index: 1;
    position: absolute;
    transition: 0.4s;
    background: #fff;
    border-radius: 50%;
    top: -20px;
    right: 30px;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
}

.store-single-item .card-content {
    position: relative;
}

.store-single-item .card-content .card-title {
    margin-bottom: 15px;
}

.store-single-item .card-content .card-text {
    margin-top: 15px;
    margin-bottom: 10px;
}

.store-single-item .card-content .card-title,
.store-single-item .card-content .card-text {
    -webkit-transition: color 0.4s ease-out;
    transition: color 0.4s ease-out;
    -webkit-transition-delay: 100ms;
    transition-delay: 100ms;
}

.store-single-item .card-content .card-btn {
    font-weight: 500;
    line-height: 1;
    color: var(--color-primary);
    text-decoration: underline;
}

.store-single-item:hover {
    border-color: transparent;
    -webkit-box-shadow: 0px 4px 80px rgba(17, 16, 33, 0.08);
    box-shadow: 0px 4px 80px rgba(17, 16, 33, 0.08);
    -webkit-transform: none;
    transform: none;
}

.store-single-item:hover::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.store-single-item:hover .card-icon .number {
    color: white;
}
.store-single-item:hover .card-icon .number:after {
    opacity: 1;
}
.store-single-item .card-icon i {
    font-size: 28px;
    transition: all 0.4s ease-out;
}

.store-area {
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.store-area .shape img {
    position: absolute;
    z-index: -1;
    max-width: 35px;
    width: 100%;
}

.store-area .shape img.shape-1 {
    top: 13%;
    right: 5%;
    -webkit-animation: moveLeftRight 10s linear infinite;
    animation: moveLeftRight 10s linear infinite;
}

.store-area .shape img.shape-2 {
    top: 70%;
    left: 4%;
    -webkit-animation: moveLeftRight 5s linear infinite;
    animation: moveLeftRight 5s linear infinite;
}

.store-area .shape img.shape-3 {
    bottom: 10%;
    right: 8%;
    -webkit-animation: moveUpDown 5s linear infinite;
    animation: moveUpDown 5s linear infinite;
}

.store-area .shape img.shape-4 {
    top: 14%;
    left: 6%;
    -webkit-animation: moveUpDown 5s linear infinite;
    animation: moveUpDown 5s linear infinite;
}

.store-area .shape img.shape-5 {
    top: 18%;
    left: 50%;
    -webkit-animation: moveAround 20s linear infinite;
    animation: moveAround 20s linear infinite;
}
/* -----------------------------------------
	Sponsor CSS
----------------------------------------- */
.template-area {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.template-area .bg-overlay {
    position: absolute;
    bottom: 0;
    right: -15%;
    z-index: -1;
}

.template-area .bg-overlay:nth-child(2) {
    right: unset;
    top: 0;
    left: -15%;
}

.template-area .card {
    background-color: transparent;
    -webkit-transition: -webkit-transform 0.5s ease-out;
    transition: -webkit-transform 0.5s ease-out;
    transition: transform 0.5s ease-out;
    transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}

.template-area .card .card-image {
    position: relative;
    overflow: hidden;
    height: 455px;
    border-radius: 10px 10px 0 0;
    -webkit-filter: drop-shadow(0px 10px 54px rgba(43, 43, 43, 0.1));
    filter: drop-shadow(0px 10px 54px rgba(43, 43, 43, 0.1));
}

.template-area .card .card-image .hover-show {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background-color: rgba(var(--color-dark-rgb), 0.4);
    z-index: 4;
}

.template-area .card .card-image .btn-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    text-align: center;
    color: var(--color-primary);
    background-color: var(--color-white);
    border: 1px solid var(--color-primary);
    font-size: 18px;
}

.template-area .card:hover .card-image .hover-show {
    opacity: 1;
}

.template-area .card .upcoming-demo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
}

.template-area .card .upcoming-demo h3 {
    color: white;
}

.template-area .card .card-image img {
    width: 100%;
    -webkit-transition: -webkit-transform 10s ease-out;
    transition: -webkit-transform 10s ease-out;
    transition: transform 10s ease-out;
    transition: transform 10s ease-out, -webkit-transform 10s ease-out;
}

.template-area .card .card-title {
    margin-top: 25px;
    margin-bottom: 0;
}

.template-area .card:hover .card-image img {
    -webkit-transform: translateY(calc(-100% + 460px));
    transform: translateY(calc(-100% + 460px));
}

.template-area .card:hover .card-title a {
    color: var(--color-primary);
}

.template-area {
    position: relative;
    z-index: 2;
}
.template-area .shape img {
    position: absolute;
    z-index: -1;
    max-width: 35px;
    width: 100%;
}

.template-area .shape img.shape-1 {
    top: 13%;
    right: 5%;
    -webkit-animation: moveAround 10s linear infinite;
    animation: moveAround 10s linear infinite;
}

.template-area .shape img.shape-2 {
    top: 70%;
    left: 4%;
    -webkit-animation: moveLeftRight 5s linear infinite;
    animation: moveLeftRight 5s linear infinite;
}

.template-area .shape img.shape-3 {
    bottom: 10%;
    right: 8%;
    -webkit-animation: moveUpDown 5s linear infinite;
    animation: moveUpDown 5s linear infinite;
}

.template-area .shape img.shape-4 {
    top: 14%;
    left: 6%;
    -webkit-animation: moveUpDown 5s linear infinite;
    animation: moveUpDown 5s linear infinite;
}

/* -----------------------------------------
	Choose CSS
----------------------------------------- */
.choose-area {
    position: relative;
    overflow: hidden;
}

.choose-area .choose-content {
    -webkit-padding-end: 50px;
    padding-inline-end: 50px;
}

.choose-area .choose-content .subtitle {
    color: var(--color-primary);
}

.choose-area .choose-content .title {
    margin-bottom: 30px;
    text-transform: capitalize;
}

.choose-area .choose-content .text {
    max-width: 450px;
    margin-bottom: 30px;
}

.choose-area .choose-content .choose-list {
    margin-bottom: 50px;
}

.choose-area .choose-content .choose-list li {
    position: relative;
    -webkit-padding-start: 35px;
    padding-inline-start: 35px;
}

.choose-area .choose-content .choose-list li:not(:last-child) {
    margin-bottom: 15px;
}

.choose-area .choose-content .choose-list li span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 25px;
    height: 25px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    line-height: 25px;
    text-align: center;
    color: var(--text-white);
    font-size: 12px;
    background: var(--color-primary);
    border-radius: 50%;
}

.choose-area .card {
    padding: 22px;
    border: 1px solid var(--border-color);
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    z-index: 1;
    margin-bottom: 25px;
}

.choose-area .card::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 5px;
    border-bottom: 2px solid var(--color-primary);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform 0.4s ease-out;
    transition: -webkit-transform 0.4s ease-out;
    transition: transform 0.4s ease-out;
    transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
    z-index: -1;
}

.choose-area .card .card-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 25px;
    border: 1px solid var(--color-primary);
    background-color: var(--color-light);
}

.choose-area .card .card-icon::after {
    position: absolute;
    content: "";
    left: 50%;
    bottom: -3px;
    width: 60%;
    height: 6px;
    border-radius: 30px;
    background: var(--color-primary);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.choose-area .card .card-content {
    position: relative;
}

.choose-area .card .card-content .card-title {
    margin-bottom: 15px;
    text-transform: capitalize;
}

.choose-area .card .card-content .card-title,
.choose-area .card .card-content .card-text {
    -webkit-transition: color 0.4s ease-out;
    transition: color 0.4s ease-out;
    -webkit-transition-delay: 100ms;
    transition-delay: 100ms;
}

.choose-area .card .card-content .card-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.choose-area .card .card-content .card-btn {
    line-height: 1;
    color: var(--color-primary);
}

.choose-area .card:hover {
    border-color: transparent;
    -webkit-box-shadow: 0px 4px 80px rgba(17, 16, 33, 0.08);
    box-shadow: 0px 4px 80px rgba(17, 16, 33, 0.08);
    -webkit-transform: none;
    transform: none;
}

.choose-area .card:hover::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.choose-area {
    position: relative;
    z-index: 2;
}
.choose-area .shape img {
    position: absolute;
    z-index: -1;
    max-width: 35px;
    width: 100%;
}

.choose-area .shape img.shape-1 {
    top: 13%;
    right: 5%;
    -webkit-animation: moveAround 30s linear infinite;
    animation: moveAround 30s linear infinite;
}

.choose-area .shape img.shape-2 {
    top: 70%;
    left: 4%;
    -webkit-animation: moveLeftRight 5s linear infinite;
    animation: moveLeftRight 5s linear infinite;
}

.choose-area .shape img.shape-3 {
    bottom: 10%;
    right: 8%;
    -webkit-animation: moveUpDown 5s linear infinite;
    animation: moveUpDown 5s linear infinite;
}

.choose-area .shape img.shape-4 {
    top: 14%;
    left: 6%;
    -webkit-animation: moveUpDown 5s linear infinite;
    animation: moveUpDown 5s linear infinite;
}

.choose-area .shape img.shape-5 {
    top: 70%;
    left: 35%;
    -webkit-animation: moveAround 20s linear infinite;
    animation: moveAround 20s linear infinite;
}

.choose-area .shape img.shape-6 {
    top: 10%;
    left: 40%;
    -webkit-animation: moveLeftRight 10s linear infinite;
    animation: moveLeftRight 10s linear infinite;
}

/* -----------------------------------------
	Choose CSS
----------------------------------------- */
.pricing-area {
    position: relative;
    overflow: hidden;
}

.pricing-area .bg-overlay {
    position: absolute;
    top: 0;
    left: -15%;
    z-index: -1;
}

.pricing-area .bg-overlay:nth-child(2) {
    left: unset;
    top: unset;
    bottom: 0;
    right: -15%;
}

.pricing-area .nav-tabs-navigation {
    margin-bottom: 40px;
}

.pricing-area .nav-tabs-navigation .nav {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 13px 25px;
    border: none;
    border-radius: 8px;
    background-color: var(--color-light);
}

.pricing-area .nav-tabs-navigation .nav .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 30px;
    padding: 7px 20px;
    border-width: 0;
    cursor: pointer;
}

.pricing-area .nav-tabs-navigation .nav .nav-link.active {
    color: var(--color-white) !important;
    background-color: var(--color-primary);
}

.pricing-area .card {
    overflow: hidden;
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    background-color: var(--color-white);
    border-radius: 15px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 1;
}

.pricing-area .card::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-primary);
    -webkit-transform: translateX(calc(-100% - 2px));
    transform: translateX(calc(-100% - 2px));
    z-index: -1;
    -webkit-transition: -webkit-transform 0.5s ease-out;
    transition: -webkit-transform 0.5s ease-out;
    transition: transform 0.5s ease-out;
    transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
    z-index: -1;
}

.pricing-area .card .icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    color: #0c0528;
    transition: 0.5s;
    font-size: 32px;
    text-align: center;
    border-radius: 10px;
    background-color: var(--color-light);
}

.pricing-area .card .icon.blue {
    background-color: rgba(var(--color-blue-rgb), 0.13);
}

.pricing-area .card .icon.cyan {
    background-color: #ecefff;
}

.pricing-area .card .icon.orange {
    background-color: rgba(var(--color-orange-rgb), 0.13);
}

.pricing-area .card .label {
    -webkit-padding-start: 16px;
    padding-inline-start: 16px;
}

.pricing-area .card .label span {
    display: inline-block;
    padding: 5px 18px;
    border-radius: 30px;
    margin-top: 5px;
    font-size: 12px;
    font-weight: 500;
    background-color: var(--color-white);
    color: var(--color-primary);
    display: none;
}

.pricing-area .card h3 {
    margin-bottom: 0;
    transition: 0.5s;
}

.pricing-area .card .text {
    margin-top: 20px;
    font-weight: 500;
    margin-bottom: 30px;
}

.pricing-area .card .price {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 48px;
    line-height: 1;
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
}

.pricing-area .card h5 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.pricing-area .card .item-list {
    margin-bottom: 0px;
    font-weight: 500;
    color: var(--color-dark);
}
.pricing-area .card .show-more {
    cursor: pointer;
    font-size: 18px;
    font-weight: 400;
    color: var(--color-dark);
}
.pricing-area
    .card:is(.pricing-area .card:hover, .pricing-area .card.active)
    :is(.show-more) {
    color: var(--text-white);
}
.pricing-area .card .item-list li {
    margin-bottom: 15px;
}

.pricing-area .card .item-list i {
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 50%;
    text-align: center;
    transition: 0.5s;
    font-size: 14px;
    color: var(--text-white);
    background-color: var(--color-primary);
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
}

.pricing-area .card .item-list i.fa-check {
    background-color: var(--color-green);
}
.pricing-area .card .item-list i.fa-check {
    background-color: var(--color-green) !important;
    color: #ffffff !important;
}
.pricing-area .card .item-list i.fa-times {
    background-color: var(--color-red) !important;
    color: #ffffff !important;
}
.pricing-area
    .card
    .item-list
    :is(.pricing-area .card:hover, .pricing-area .card.active)
    .item-list
    i.fa-check {
    background-color: var(--color-green) !important;
    color: #ffffff !important;
}
.pricing-area
    .card
    .item-list
    :is(.pricing-area .card:hover, .pricing-area .card.active)
    .item-list
    i.fa-times {
    background-color: var(--color-red) !important;
    color: #ffffff !important;
}

.pricing-area .card .btn {
    font-size: 16px;
    padding: 12px 30px;
    border-radius: 30px;
}

.pricing-area .card .btn:last-child {
    -webkit-margin-start: 10px;
    margin-inline-start: 10px;
    background: var(--color-primary);
}

.pricing-area .card .btn:last-child:hover:before {
    opacity: 0;
}

.pricing-area .card :is(h3, .text, .price, .period, h5, .item-list) {
    -webkit-transition: color 0.2s linear;
    transition: color 0.2s linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.pricing-area .card:is(.pricing-area .card:hover, .pricing-area .card.active) {
    -webkit-box-shadow: 0px 4px 80px rgba(17, 16, 33, 0.08);
    box-shadow: 0px 4px 80px rgba(17, 16, 33, 0.08);
}

.pricing-area
    .card:is(.pricing-area .card:hover, .pricing-area .card.active)::after {
    -webkit-transform: none;
    transform: none;
}

.pricing-area
    .card:is(.pricing-area .card:hover, .pricing-area .card.active)
    .icon.blue {
    background-color: var(--color-white);
}

.pricing-area
    .card:is(.pricing-area .card:hover, .pricing-area .card.active)
    .icon.cyan {
    background-color: var(--color-white);
}

.pricing-area
    .card:is(.pricing-area .card:hover, .pricing-area .card.active)
    .icon.orange {
    background-color: var(--color-white);
}

.pricing-area
    .card:is(.pricing-area .card:hover, .pricing-area .card.active)
    :is(h3, .text, .price, .period, h5, .item-list) {
    color: var(--text-white);
}

.pricing-area
    .card:is(.pricing-area .card:hover, .pricing-area .card.active)
    :is(.text, h5, .item-list) {
    color: var(--text-light);
}

.pricing-area
    .card:is(.pricing-area .card:hover, .pricing-area .card.active)
    .label
    span {
    display: inline-block;
}

.pricing-area
    .card:is(.pricing-area .card:hover, .pricing-area .card.active)
    .disabled
    i {
    border-color: transparent;
}

.pricing-area
    .card:is(.pricing-area .card:hover, .pricing-area .card.active)
    .item-list
    i {
    color: var(--color-primary);
    background-color: var(--color-white);
}

.pricing-area
    .card:is(.pricing-area .card:hover, .pricing-area .card.active)
    .secondary-btn {
    border-color: var(--color-white);
    color: var(--color-white);
}

.pricing-area
    .card:is(.pricing-area .card:hover, .pricing-area .card.active)
    .primary-btn {
    color: var(--color-primary);
    background: white;
}

.pricing-area .card:hover {
    border-color: transparent;
    -webkit-box-shadow: 0px 4px 80px rgba(17, 16, 33, 0.08);
    box-shadow: 0px 4px 80px rgba(17, 16, 33, 0.08);
    -webkit-transform: none;
    transform: none;
}

.pricing-area {
    position: relative;
    z-index: 2;
}
.pricing-area .shape img {
    position: absolute;
    z-index: -1;
    max-width: 35px;
    width: 100%;
}
.pricing-area .shape img.shape-1 {
    top: 12%;
    right: 15%;
    -webkit-animation: moveLeftRight 5s linear infinite;
    animation: moveLeftRight 5s linear infinite;
}

.pricing-area .shape img.shape-2 {
    top: 60%;
    left: 4%;
    -webkit-animation: moveUpDown 5s linear infinite;
    animation: moveUpDown 5s linear infinite;
}

.pricing-area .shape img.shape-3 {
    bottom: 25%;
    right: 11%;
    -webkit-animation: moveAround 20s linear infinite;
    animation: moveAround 20s linear infinite;
}

.pricing-area .shape img.shape-4 {
    top: 14%;
    left: 12%;
    -webkit-animation: rotate 8s linear infinite;
    animation: rotate 8s linear infinite;
}

.pricing-area .shape img.shape-5 {
    top: 70%;
    left: 35%;
    -webkit-animation: moveAround 20s linear infinite;
    animation: moveAround 20s linear infinite;
}

.pricing-area .shape img.shape-6 {
    top: 10%;
    left: 40%;
    -webkit-animation: moveLeftRight 10s linear infinite;
    animation: moveLeftRight 10s linear infinite;
}

/* -----------------------------------------
	User Profile CSS
----------------------------------------- */
.user-profile-area {
    position: relative;
    overflow: hidden;
}

.user-profile-area .card {
    text-align: center;
}

.user-profile-area .card .icon {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid var(--color-primary);
    background-color: var(--color-white);
    overflow: hidden;
    padding: 8px;
}
.user-profile-area .card .icon img {
    border-radius: 50%;
    height: 100%;
    width: 100%;
}

.user-profile-area .card .card-content {
    padding: 30px;
    margin-top: 50px;
    padding-top: 80px;
    border-radius: 15px;
    background-color: #f7f6fd;
}
.user-profile-area .card .card-content.green {
    background-color: rgba(var(--color-green-rgb), 0.1);
}
.user-profile-area .card .card-title {
    margin-bottom: 15px;
    margin-top: -4px;
    font-weight: 500;
    font-family: var(--font-body);
}

.user-profile-area .card .social-link {
    margin-bottom: 5px;
}

.user-profile-area .card .social-link a {
    display: inline-block;
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
    border-radius: 50%;
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
    border: 1px solid transparent;
    color: var(--color-primary);
    background: rgba(var(--color-primary-rgb), 0.1);
}

.user-profile-area .card .social-link a:hover {
    border: 1px solid var(--color-primary);
}

.user-profile-area .card .cta-btns .btn {
    margin-top: 15px;
    color: var(--color-primary);
    padding: 9px 22px;
}
.user-profile-area .card .cta-btns .btn.anim-btn span {
    background: var(--color-primary);
}
.user-profile-area .card .cta-btns .btn:hover {
    color: var(--text-white);
}

.user-profile-area .card .cta-btns .btn:last-child {
    -webkit-margin-start: 10px;
    margin-inline-start: 10px;
}

.user-profile-area .user-card {
    text-align: center;
}

.user-profile-area .user-card .card {
    padding-top: 50px;
}

.user-profile-area .user-card .card .icon {
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.user-profile-area .user-card .card .card-content {
    margin: 0;
    -webkit-padding-start: 30px;
    padding-inline-start: 30px;
    -webkit-padding-before: 80px;
    padding-block-start: 80px;
}

.user-profile-area .user-card .card .card-title {
    margin-bottom: 25px;
}

.user-profile-area .user-card .card .social-link {
    margin-bottom: 30px;
}

.user-profile-area {
    position: relative;
    z-index: 2;
}
.user-profile-area .shape img {
    position: absolute;
    z-index: -1;
    max-width: 35px;
    width: 100%;
}

.user-profile-area .shape img.shape-1 {
    top: 13%;
    right: 5%;
    -webkit-animation: moveAround 30s linear infinite;
    animation: moveAround 30s linear infinite;
}

.user-profile-area .shape img.shape-2 {
    top: 70%;
    left: 4%;
    -webkit-animation: moveLeftRight 5s linear infinite;
    animation: moveLeftRight 5s linear infinite;
}

.user-profile-area .shape img.shape-3 {
    bottom: 10%;
    right: 8%;
    -webkit-animation: moveUpDown 5s linear infinite;
    animation: moveUpDown 5s linear infinite;
}

.user-profile-area .shape img.shape-4 {
    top: 14%;
    left: 6%;
    -webkit-animation: moveUpDown 5s linear infinite;
    animation: moveUpDown 5s linear infinite;
}

.user-profile-area .shape img.shape-5 {
    top: 70%;
    left: 35%;
    -webkit-animation: moveAround 20s linear infinite;
    animation: moveAround 20s linear infinite;
}

.user-profile-area .shape img.shape-6 {
    top: 10%;
    left: 40%;
    -webkit-animation: moveLeftRight 10s linear infinite;
    animation: moveLeftRight 10s linear infinite;
}

/* -----------------------------------------
	User Profile CSS End
----------------------------------------- */

.testimonial-area {
    position: relative;
    z-index: 2;
}
.testimonial-area .shape img {
    position: absolute;
    z-index: -1;
    max-width: 35px;
    width: 100%;
}
.testimonial-area .shape img.shape-1 {
    top: 13%;
    right: 5%;
    -webkit-animation: moveAround 30s linear infinite;
    animation: moveAround 30s linear infinite;
}

.testimonial-area .shape img.shape-2 {
    top: 70%;
    left: 4%;
    -webkit-animation: moveLeftRight 5s linear infinite;
    animation: moveLeftRight 5s linear infinite;
}

.testimonial-area .shape img.shape-3 {
    bottom: 10%;
    right: 8%;
    -webkit-animation: moveUpDown 5s linear infinite;
    animation: moveUpDown 5s linear infinite;
}

.testimonial-area .shape img.shape-4 {
    top: 14%;
    left: 6%;
    -webkit-animation: moveUpDown 5s linear infinite;
    animation: moveUpDown 5s linear infinite;
}

.testimonial-area .shape img.shape-5 {
    top: 70%;
    left: 20%;
    -webkit-animation: moveAround 20s linear infinite;
    animation: moveAround 20s linear infinite;
}

.testimonial-area .shape img.shape-6 {
    top: 10%;
    left: 40%;
    -webkit-animation: moveLeftRight 10s linear infinite;
    animation: moveLeftRight 10s linear infinite;
}

/* -----------------------------------------
	Testimonial User CSS
----------------------------------------- */
.testimonial-area {
    position: relative;
    overflow: hidden;
}

.testimonial-area .swiper-slide {
    z-index: 10 !important;
}

.testimonial-area .swiper-slide .slider-item {
    position: relative;
    border-radius: 8px;
    background: var(--color-light);
}

.testimonial-area .swiper-slide .slider-item .quote {
    border-bottom: 1px solid #dedede;
    padding: 22px 26px;
}

.testimonial-area .swiper-slide .slider-item .quote .icon {
    color: var(--color-primary);
    font-size: 20px;
    line-height: 1;
}

.testimonial-area .swiper-slide .slider-item .text {
    margin-bottom: 0;
    font-size: 14px;
}

.testimonial-area .swiper-slide .slider-item h3 {
    margin-bottom: 18px;
}

.testimonial-area .swiper-slide .slider-item p {
    margin-bottom: 20px;
}

.testimonial-area .swiper-slide .slider-item .client {
    padding: 22px 26px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.testimonial-area .swiper-slide .slider-item .image {
    overflow: hidden;
    -webkit-box-flex: 45px;
    -ms-flex: 45px 0 0px;
    flex: 45px 0 0;
    max-width: 45px;
    border-radius: 50%;
}

.testimonial-area .swiper-slide .slider-item .content {
    -webkit-padding-start: 12px;
    padding-inline-start: 12px;
    margin-right: auto;
}

.testimonial-area .swiper-slide .slider-item .ratting {
    font-size: 14px;
    margin: 8px 0;
}

.testimonial-area .swiper-slide .slider-item .ratting i {
    color: #ffc800;
}

.testimonial-area .swiper-slide .slider-item .content h6 {
    margin-bottom: 2px;
    font-weight: 500;
    font-family: var(--font-body);
}

.testimonial-area .swiper-slide .slider-item .content .designation {
    color: #8c929d;
    font-size: 14px;
}

.testimonial-slider {
    max-width: 425px;
    margin-right: -100px;
}

.testimonial-area .testimonial-pagination {
    left: 30px;
    width: auto;
    bottom: 30px;
    height: auto;
    -webkit-transform: none;
    transform: none;
    display: flex;
    flex-direction: column;
    position: absolute;
    gap: 14px;
}

.testimonial-area .testimonial-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 36px;
    margin: 0;
    transition: 0.5s;
    border-radius: 6px;
}

.testimonial-area .testimonial-pagination .swiper-pagination-bullet-active {
    background: none;
    background-color: var(--color-primary);
}

.testimonial-left {
    position: relative;
}

.testimonial-left .section-title {
    max-width: 465px;
}

.testi-image-right {
    position: relative;
}

.testi-ratting {
    position: absolute;
    left: 0;
    top: 40px;
    z-index: 1;
    background: white;
    border-radius: 17px;
    padding: 17px 25px;
    display: flex;
    box-shadow: 0px 4px 40px rgba(40, 40, 40, 0.12);
    flex-direction: column;
    text-align: center;
    transform: translate(-45%);
}

.testi-ratting b {
    font-size: 24px;
    font-family: var(--font-heading);
    color: var(--color-dark);
}
.testi-image-right .border_style{
    border-radius: 5px;
}

/* -----------------------------------------
	Blog CSS
----------------------------------------- */
.blog-area {
    position: relative;
    overflow: hidden;
}

.blog-area .card {
    background-color: transparent;
}

.blog-area .card .card-image {
    position: relative;
    margin-bottom: 25px;
}

.blog-area .card .card-image img {
    width: 100%;
}

.blog-area .card .card-image .lazy-container {
    border-radius: 23.5px;
}

.blog-area .card .info-list {
    position: absolute;
    display: table;
    font-size: 13px;
    margin-bottom: 0;
    text-transform: capitalize;
    line-height: 1;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: calc(100% - 16px);
    background: white;
    padding: 10px 18px 2px;
    border-radius: 23.5px;
    box-shadow: 0px 6px 30px rgba(65, 65, 65, 0.05);
}

.blog-area .card .info-list li {
    display: inline-block;
    margin-bottom: 8px;
    -webkit-margin-end: 20px;
    margin-inline-end: 20px;
    color: var(--color-medium);
}

.blog-area .card .info-list li:last-child {
    -webkit-margin-end: 0;
    margin-inline-end: 0;
}

.blog-area .card .info-list li i {
    font-size: 16px;
    -webkit-margin-end: 8px;
    margin-inline-end: 8px;
    color: var(--color-primary);
}

.blog-area .card .card-title {
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    font-weight: 500;
    font-family: var(--font-body);
    -webkit-box-orient: vertical;
}

.blog-area .card .card-text {
    margin-bottom: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-area .card .card-btn {
    font-weight: 500;
    font-size: 18px;
    text-decoration: underline;
    color: var(--color-primary);
}

.blog-area {
    position: relative;
    z-index: 2;
}
.blog-area .shape img {
    position: absolute;
    z-index: -1;
    max-width: 35px;
    width: 100%;
}

.blog-area .shape img.shape-1 {
    top: 0;
    left: 40%;
    -webkit-animation: moveLeftRight 10s linear infinite;
    animation: moveLeftRight 10s linear infinite;
}

.blog-area .shape img.shape-2 {
    top: 60%;
    left: 4%;
    -webkit-animation: moveUpDown 5s linear infinite;
    animation: moveUpDown 5s linear infinite;
}

.blog-area .shape img.shape-3 {
    bottom: 25%;
    right: 11%;
    -webkit-animation: moveAround 20s linear infinite;
    animation: moveAround 20s linear infinite;
}

.blog-area .shape img.shape-4 {
    top: 14%;
    left: 6%;
    -webkit-animation: moveLeftRight 8s linear infinite;
    animation: moveLeftRight 8s linear infinite;
}

.blog-area .shape img.shape-5 {
    top: 18%;
    right: 8%;
    -webkit-animation: moveLeftRight 5s linear infinite;
    animation: moveLeftRight 5s linear infinite;
}

.blog-area .shape img.shape-6 {
    bottom: 5%;
    left: 55%;
    -webkit-animation: rotate 10s linear infinite;
    animation: rotate 10s linear infinite;
}
/* -----------------------------------------
	Footer CSS
----------------------------------------- */
.footer-area {
    position: relative;
    overflow: hidden;
    background-color: var(--color-dark);
    border-radius: 30px 30px 0 0;
    z-index: 1;
}

.footer-area .footer-widget {
    margin-bottom: 30px;
}

.footer-area .footer-widget ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.footer-area .footer-widget .navbar-brand {
    margin: 0;
    margin-bottom: 20px;
    padding: 0;
}

.footer-area .footer-widget h3 {
    color: var(--color-white);
    text-transform: capitalize;
    margin-bottom: 25px;
}

.footer-area .footer-widget p {
    color: rgba(var(--color-white-rgb), 0.8);
    margin-bottom: 15px;
}

.footer-area .footer-widget .social-link a {
    display: inline-block;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
    background-color: rgba(var(--color-white-rgb), 0.2);
    color: var(--color-light);
}

.footer-area .footer-widget .social-link a:last-child {
    margin: 0;
}

.footer-area .footer-widget .social-link a:hover {
    color: var(--color-white);
    background-color: var(--color-primary);
    -webkit-box-shadow: 0px 4px 8px 0px rgba(var(--color-primary-rgb), 0.34);
    box-shadow: 0px 4px 8px 0px rgba(var(--color-primary-rgb), 0.34);
}

.footer-area .footer-widget .info-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-area .footer-widget .info-list i {
    color: var(--color-primary);
    font-size: 24px;
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
}

.footer-area .footer-widget .info-list a {
    color: var(--color-white);
}

.footer-area .footer-widget .footer-links li,
.footer-area .footer-widget .info-list li {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    line-height: 1;
    color: rgba(var(--color-white-rgb), 0.8);
}

.footer-area .footer-widget .footer-links li a,
.footer-area .footer-widget .info-list li a {
    color: #eaeaea;
}

.footer-area .footer-widget .footer-links li:last-child,
.footer-area .footer-widget .info-list li:last-child {
    margin-bottom: 0;
}

.footer-area .copy-right-area {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(var(--color-white-rgb), 0.2);
    color: #eaeaea;
}

.footer-area .newsletter-form input {
    font-size: 12px;
    padding: 18px;
    border-radius: 4px;
    background: white;
}
.footer-area .newsletter-form .primary-btn {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 12px;
    -webkit-transform: none;
    transform: none;
    background: var(--color-primary);
    border-radius: 4px;
}

/* -----------------------------------------
	Contact CSS
----------------------------------------- */
.contact-area {
    position: relative;
    z-index: 1;
}

.contact-area .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    -webkit-box-shadow: 0px 10px 40px 0px rgba(78, 76, 76, 0.1);
    box-shadow: 0px 10px 40px 0px rgba(78, 76, 76, 0.1);
}

.contact-area .card .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 52px;
    flex: 0 0 52px;
    border-radius: 8px;
    font-size: 24px;
    background-color: var(--color-white);
    border: 1px solid var(--border-color);
}

.contact-area .card .card-text {
    -webkit-padding-start: 16px;
    padding-inline-start: 16px;
    margin-bottom: 0;
}

.contact-area .card .card-text P {
    color: var(--color-dark);
    margin-bottom: 0;
}

.contact-area .form-group ::-webkit-input-placeholder,
.contact-area .input-group ::-webkit-input-placeholder {
    color: var(--color-medium);
}

.contact-area .form-group :-ms-input-placeholder,
.contact-area .input-group :-ms-input-placeholder {
    color: var(--color-medium);
}

.contact-area .form-group ::-ms-input-placeholder,
.contact-area .input-group ::-ms-input-placeholder {
    color: var(--color-medium);
}

.contact-area .form-group ::placeholder,
.contact-area .input-group ::placeholder {
    color: var(--color-medium);
}

.contact-area .form-group .form-control,
.contact-area .input-group .form-control {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    color: var(--color-medium);
}

.contact-area iframe {
    width: 100%;
    height: 330px;
}

.contact-area .checkbox label {
    position: relative;
    cursor: pointer;
    line-height: 1;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 0;
    color: var(--color-medium);
}

.contact-area .checkbox label a {
    color: var(--color-primary);
}

.contact-area .checkbox input[type="checkbox"] {
    display: none;
    pointer-events: none;
}

.contact-area .checkbox input[type="checkbox"] + label {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.contact-area .checkbox input[type="checkbox"] + label svg {
    width: 25px;
    stroke: var(--color-primary);
    stroke-width: 5;
}

.contact-area .checkbox input[type="checkbox"] + label svg .box {
    stroke-dasharray: 320;
    stroke-dashoffset: 0;
    fill: var(--bg-light) !important;
}

.contact-area .checkbox input[type="checkbox"] + label svg .check {
    stroke-dasharray: 70;
    stroke-dashoffset: 70;
    fill: none;
}

.contact-area .checkbox input[type="checkbox"] + label span {
    -webkit-margin-start: 5px;
    margin-inline-start: 5px;
}

.contact-area .checkbox input[type="checkbox"]:checked + label .box {
    stroke-dashoffset: 320;
    -webkit-transition: stroke-dashoffset 0.3s linear;
    transition: stroke-dashoffset 0.3s linear;
}

.contact-area .checkbox input[type="checkbox"]:checked + label .check {
    stroke-dashoffset: 0;
    -webkit-transition: stroke-dashoffset 0.3s linear;
    transition: stroke-dashoffset 0.3s linear;
}

.contact-area .checkbox .reverse .box {
    stroke-dashoffset: 0;
    -webkit-transition: stroke-dashoffset 0.3s linear;
    transition: stroke-dashoffset 0.3s linear;
}

.contact-area .checkbox .reverse .check {
    stroke-dashoffset: 70;
    -webkit-transition: stroke-dashoffset 0.3s linear;
    transition: stroke-dashoffset 0.3s linear;
}

.contact-area {
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.contact-area .shape img {
    position: absolute;
    z-index: -1;
    max-width: 35px;
    width: 100%;
}

.contact-area .shape img.shape-1 {
    top: 13%;
    right: 5%;
    -webkit-animation: moveLeftRight 10s linear infinite;
    animation: moveLeftRight 10s linear infinite;
}

.contact-area .shape img.shape-2 {
    top: 70%;
    left: 4%;
    -webkit-animation: moveLeftRight 5s linear infinite;
    animation: moveLeftRight 5s linear infinite;
}

.contact-area .shape img.shape-3 {
    bottom: 10%;
    right: 8%;
    -webkit-animation: moveUpDown 5s linear infinite;
    animation: moveUpDown 5s linear infinite;
}

.contact-area .shape img.shape-4 {
    top: 14%;
    left: 6%;
    -webkit-animation: moveUpDown 5s linear infinite;
    animation: moveUpDown 5s linear infinite;
}

.contact-area .shape img.shape-5 {
    top: 18%;
    left: 50%;
    -webkit-animation: moveAround 20s linear infinite;
    animation: moveAround 20s linear infinite;
}

/* -----------------------------------------
	Faq CSS
----------------------------------------- */
.faq-area {
    position: relative;
}

.faq-area .section-title {
    text-align: left;
}

.faq-area .accordion-item {
    border: none;
    margin-bottom: 30px;
    padding: 20px 25px;
    border-radius: 10px;
    background-color: var(--color-white);
    -webkit-box-shadow: 0px 5px 30px 0px rgba(78, 76, 76, 0.1);
    box-shadow: 0px 5px 30px 0px rgba(78, 76, 76, 0.1);
}

.faq-area .accordion-item .accordion-header .accordion-button {
    color: var(--color-dark);
    font-weight: 700;
    padding: 0;
    border: none;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.faq-area .accordion-item .accordion-header .accordion-button::after {
    background: none;
    font-size: 14px;
    font-family: "Font Awesome 5 Pro" !important;
    content: "\f067";
    -webkit-transform: none;
    transform: none;
    text-align: right;
}

.faq-area .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    color: var(--color-primary);
}

.faq-area
    .accordion-item
    .accordion-header
    .accordion-button:not(.collapsed)::after {
    color: var(--color-primary);
    content: "\f068";
}

.faq-area .accordion-item .accordion-body {
    position: relative;
    padding: 16px 0 0 0;
}

.faq-area .accordion-item .accordion-body p {
    margin: 0;
}

.faq-area {
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.faq-area .shape img {
    position: absolute;
    z-index: -1;
    max-width: 35px;
    width: 100%;
}

.faq-area .shape img.shape-1 {
    top: 13%;
    right: 5%;
    -webkit-animation: moveLeftRight 10s linear infinite;
    animation: moveLeftRight 10s linear infinite;
}

.faq-area .shape img.shape-2 {
    top: 70%;
    left: 4%;
    -webkit-animation: moveLeftRight 5s linear infinite;
    animation: moveLeftRight 5s linear infinite;
}

.faq-area .shape img.shape-3 {
    bottom: 10%;
    right: 8%;
    -webkit-animation: moveUpDown 5s linear infinite;
    animation: moveUpDown 5s linear infinite;
}

.faq-area .shape img.shape-4 {
    top: 14%;
    left: 6%;
    -webkit-animation: moveUpDown 5s linear infinite;
    animation: moveUpDown 5s linear infinite;
}

.faq-area .shape img.shape-5 {
    top: 18%;
    left: 50%;
    -webkit-animation: moveAround 20s linear infinite;
    animation: moveAround 20s linear infinite;
}

/* -----------------------------------------
	Blog Details CSS
----------------------------------------- */
.blog-details-area .item-single {
    overflow: hidden;
    background: var(--color-white);
    border-radius: 5px;
    border: 1px solid var(--border-color);
}

.blog-details-area .item-single .image {
    position: relative;
    overflow: hidden;
}
.blog-details-area .item-single .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.blog-details-area .item-single .image .primary-btn {
    position: absolute;
    bottom: 5%;
    right: 5%;
}

.blog-details-area .item-single .image i {
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
}

.blog-details-area .item-single .content {
    position: relative;
    padding: 30px;
}

.blog-details-area .item-single .content .info-list {
    padding: 0;
    margin: 0;
    font-size: 15px;
    margin-bottom: 20px;
    text-transform: capitalize;
    line-height: 1;
}

.blog-details-area .item-single .content .info-list li {
    display: inline-block;
    -webkit-margin-end: 20px;
    margin-inline-end: 20px;
    color: var(--color-medium);
}

.blog-details-area .item-single .content .info-list li:last-child {
    -webkit-margin-end: 0;
    margin-inline-end: 0;
}

.blog-details-area .item-single .content .info-list li i {
    -webkit-margin-end: 8px;
    margin-inline-end: 8px;
    color: var(--color-primary);
}

.blog-details-area .item-single .content .title {
    margin-bottom: 25px;
}

.blog-details-area .item-single .content .title a:hover {
    color: var(--color-primary);
}

.blog-details-area .item-single .content p {
    margin-bottom: 30px;
}

.blog-details-area .item-single .content .video-image {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    background: url(../images/blog/video-bg.png) no-repeat;
    background-size: cover;
    padding: 100px 0;
}

.blog-details-area .item-single .content .video-image .video-btn {
    width: 70px;
    height: 70px;
}

.blog-details-area .item-single .content .video-image .video-btn i {
    font-size: 16px;
    color: var(--color-primary);
}

.blog-details-area .item-single .content .blockquote {
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 5px;
}

.blog-details-area .item-single .content .blockquote i {
    color: var(--color-primary);
    font-size: 24px;
}

.blog-details-area .item-single .content .blockquote p {
    color: var(--color-dark);
    margin-top: 10px;
    margin-bottom: 0;
    font-style: italic;
}

.blog-details-area .comments .comment-box {
    overflow: hidden;
    background: var(--color-white);
    border-radius: 5px;
    border: 1px solid var(--border-color);
    padding: 30px;
}

.blog-details-area .comments .comment-list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.blog-details-area .comments .comment-list .comment .comment-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 25px;
}

.blog-details-area
    .comments
    .comment-list
    .comment
    .comment-body
    .comment-author {
    -webkit-padding-end: 16px;
    padding-inline-end: 16px;
    max-width: 100px;
}

.blog-details-area
    .comments
    .comment-list
    .comment
    .comment-body
    .comment-author
    .lazy-container {
    border-radius: 50%;
    height: auto;
}

.blog-details-area
    .comments
    .comment-list
    .comment
    .comment-body
    .comment-content
    p {
    margin-bottom: 10px;
}

.blog-details-area
    .comments
    .comment-list
    .comment
    .comment-body
    .comment-content
    .btn-reply {
    color: var(--color-primary);
    display: inline-block;
}

.blog-details-area
    .comments
    .comment-list
    .comment
    .comment-body
    .comment-content
    .btn-reply
    i {
    -webkit-margin-end: 5px;
    margin-inline-end: 5px;
}

.blog-details-area .comments .comment-list .comment .children {
    list-style-type: none;
    padding: 0;
    -webkit-padding-start: 30px;
    padding-inline-start: 30px;
}

.blog-details-area .comments .comment-list .comment .children .comment-body {
    -webkit-padding-start: 35px;
    padding-inline-start: 35px;
    margin-bottom: 25px;
}

.blog-details-area
    .comments
    .comment-list
    .comment
    .children
    .comment-body:last-child {
    margin: 0;
}

.blog-details-area .comments .comment-reply {
    overflow: hidden;
    background: var(--color-white);
    border-radius: 5px;
    border: 1px solid var(--border-color);
    padding: 30px;
}

.blog-details-area .comments .comment-reply .comment-notes {
    margin-bottom: 25px;
}

.blog-details-area .comments .comment-reply .form-group .form-control {
    border: none;
    padding: 16px;
    background-color: var(--bg-light);
}

/* -----------------------------------------
	Checkout CSS
----------------------------------------- */
.checkout-area {
    margin-top: -10px;
}

.checkout-area .form-block {
    position: relative;
    padding: 40px 30px 30px 30px;
    margin-top: 50px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.checkout-area .form-block .title {
    position: absolute;
    top: -16px;
    left: 20px;
    padding: 0 10px;
    background-color: var(--color-white);
}

.checkout-area .order-summery .summery-list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.checkout-area .order-summery .summery-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px dotted rgba(var(--color-medium-rgb), 0.6);
}

.checkout-area .order-summery .order-price .summery-list li {
    padding: 0;
    margin: 0;
    border: none;
    font-weight: 500;
    color: var(--color-dark);
}

.checkout-area .order-payment .nice-select {
    display: block;
    width: 100%;
    height: 52px;
    line-height: 52px;
    float: none;
    border-color: var(--border-color);
}

.checkout-area .order-payment .nice-select .list {
    width: 100%;
}

.checkout-area label {
    color: var(--color-dark);
    margin-bottom: 5px;
}

/* -----------------------------------------
    Authentication CSS
----------------------------------------- */
.authentication-area {
    margin-top: -10px;
}

.authentication-area .main-form {
    position: relative;
    max-width: 640px;
    margin: auto;
    position: relative;
    padding: 40px 30px 30px 30px;
    margin-top: 50px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.authentication-area .main-form .title {
    position: absolute;
    top: -16px;
    left: 20px;
    padding: 0 10px;
    background-color: var(--color-white);
}

.authentication-area .link {
    color: var(--color-dark);
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.authentication-area .link a {
    display: inline-block;
    color: var(--color-primary);
}

.authentication-area .link a:hover {
    color: var(--color-primary);
}

.authentication-area .link.go-signup {
    text-align: right;
}

.authentication-area .btn {
    margin-top: 20px;
}

/* -----------------------------------------
    Terms & Conditions CSS
----------------------------------------- */
.terms-condition-area .item-single {
    padding: 30px;
    background-color: var(--color-white);
}

.terms-condition-area .item-single h3 {
    margin-bottom: 20px;
}

.terms-condition-area .item-single p:last-child {
    margin-bottom: 0;
}

/* -----------------------------------------
	Sidebar Widget CSS
----------------------------------------- */
.sidebar-widget-area .widget {
    position: relative;
    overflow: hidden;
    padding: 40px;
    border-radius: 5px;
    background-color: var(--color-white);
    border: 1px solid var(--border-color);
}

.sidebar-widget-area .widget .title {
    margin-bottom: 20px;
    margin-top: -4px;
}

.sidebar-widget-area .widget.widget-search .search-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.sidebar-widget-area .widget.widget-search .search-form .search-input {
    display: block;
    width: 100%;
    line-height: initial;
    border: none;
    outline: 0;
    height: 40px;
    padding: 6px 5px 6px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px 0 0 5px;
    background: transparent;
}

.sidebar-widget-area .widget.widget-search .search-form .btn-search {
    text-align: center;
    padding: 10px 15px;
    color: var(--color-white);
    background-color: var(--color-primary);
    font-size: 18px;
    font-weight: 600;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid var(--color-primary);
    border-radius: 0 5px 5px 0;
}

.sidebar-widget-area .widget.widget-social-link .social-link a {
    display: inline-block;
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
    border-radius: 50%;
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
    border: 1px solid transparent;
    background-color: rgba(var(--color-primary-rgb), 0.13);
    color: var(--color-primary);
}

.sidebar-widget-area .widget.widget-social-link .social-link a:hover {
    border: 1px solid var(--color-primary);
}

.sidebar-widget-area .widget.widget-post .article-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}
.sidebar-widget-area .widget.widget-post .article-item.mb-30:last-child {
    margin-bottom: 0;
}
.sidebar-widget-area .widget.widget-post .article-item .image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    overflow: hidden;
    border-radius: 5px;
}

.sidebar-widget-area .widget.widget-post .article-item .image img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
}

.sidebar-widget-area .widget.widget-post .article-item .content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
    -webkit-padding-start: 10px;
    padding-inline-start: 10px;
    align-self: center;
}

.sidebar-widget-area .widget.widget-post .article-item .content h6 {
    margin-bottom: 5px;
}

.sidebar-widget-area .widget.widget-post .article-item .content .time {
    color: #717584;
    font-size: 13px;
}

.sidebar-widget-area .widget.widget-categories ul li {
    color: #717584;
    margin-bottom: 5px;
}

.sidebar-widget-area .widget.widget-categories ul li:last-child {
    margin: 0;
}

.sidebar-widget-area .widget.widget-categories ul li a {
    color: #717584;
}

.sidebar-widget-area .widget.widget-categories ul li i {
    color: var(--color-primary);
    -webkit-margin-end: 5px;
    margin-inline-end: 5px;
}

.sidebar-widget-area .widget.widget-tag {
    padding-bottom: 30px;
}

.sidebar-widget-area .widget.widget-tag ul li {
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #dddddd;
    -webkit-margin-end: 5px;
    margin-inline-end: 5px;
    margin-bottom: 10px;
}

/* -----------------------------------------
	Page title CSS
----------------------------------------- */
.page-title-area {
    position: relative;
    overflow: hidden;
    padding: 160px 0 80px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.page-title-area:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0.85;
    background: var(--color-dark);
    border-radius: 0 0 30px 30px;
}
.pricing-area
    .card:is(.pricing-area .card:hover, .pricing-area .card.active)
    .item-list
    i.fa-times {
    background-color: var(--color-red);
    color: #ffffff;
}
.disabled {
    cursor: not-allowed;
}

.page-title-area h1 {
    color: white;
}

.page-title-area ul {
    margin: 0;
    color: white;
}

.page-title-area ul li {
    margin: 0 5px;
    font-weight: 600;
}

.page-title-area ul li a {
    color: white;
}
.page-title-area ul li a:hover {
    color: var(--color-primary);
}
.page-title-area ul li.active {
    color: var(--color-primary);
}

/* -----------------------------------------
	Pagination CSS
----------------------------------------- */
.pagination {
    padding-top: 20px;
}

.pagination .page-numbers {
    color: var(--color-dark);
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 42px;
    margin: 0 5px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    color: var(--color-white);
    background-image: var(--gradient-bg);
}



/* ****************** */
/* pagination */
/* ***************** */
.pagination {
    gap: 10px;
}

.pagination .page-link {
    padding: 0;
    text-align: center;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
    ;
    background-color: #fff;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.pagination .page-link:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.pagination .page-item:first-child .page-link {
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}

.pagination .page-item:last-child .page-link {
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}



/* -----------------------------------------
	Swiper Slider CSS
----------------------------------------- */
.swiper-container {
    position: relative;
    overflow: hidden;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 8px;
    border-radius: 30px;
    opacity: 1;
    background-color: #e9e9e9;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background: var(--gradient-bg);
}

.slider-navigation {
    z-index: 3;
}

.slider-navigation .slider-btn {
    padding: 3px 20px;
    border-radius: 30px;
    -webkit-margin-start: 10px;
    margin-inline-start: 10px;
    border: transparent;
    background: var(--gradient-bg);
    color: var(--color-white);
    font-size: 24px;
    line-height: 1;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.slider-navigation .slider-btn i {
    -webkit-transition: -webkit-transform 0.4s ease-out;
    transition: -webkit-transform 0.4s ease-out;
    transition: transform 0.4s ease-out;
    transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}

.slider-navigation .slider-btn:hover.slider-btn-prev i {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
}

.slider-navigation .slider-btn:hover.slider-btn-next i {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
}

.slider-navigation .slider-btn:disabled {
    cursor: not-allowed;
}

/* -----------------------------------------
	Video Btn CSS
----------------------------------------- */
.video-btn {
    position: relative;
    width: 45px;
    height: 45px;
    padding: 0;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    color: var(--color-primary);
    background-color: var(--color-white);
    -webkit-margin-start: 20px;
    margin-inline-start: 20px;
}

.video-btn:hover {
    -webkit-transform: none;
    transform: none;
    background-color: var(--color-white);
    color: var(--color-primary);
}

.video-btn::after {
    content: "";
    position: absolute;
    left: -8px;
    top: -8px;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    -webkit-animation: ripple 3s linear infinite;
    animation: ripple 3s linear infinite;
    background-color: var(--color-primary);
    border-radius: 50%;
    z-index: -2;
}

.video-btn::before {
    content: "";
    position: absolute;
    left: -8px;
    top: -8px;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    -webkit-animation: ripple 3s 1s linear infinite;
    animation: ripple 3s 1s linear infinite;
    background-color: var(--color-primary);
    border-radius: 50%;
    z-index: -1;
}

/* -----------------------------------------
  	Go top CSS
----------------------------------------- */
.go-top {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 5px;
    right: 5px;
    width: 45px;
    height: 45px;
    opacity: 0;
    cursor: pointer;
    text-decoration: none;
    color: var(--color-light);
    font-size: 22px;
    border-radius: 50%;
    background-color: var(--color-primary);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: translateY(15%);
    transform: translateY(15%);
    z-index: 100;
}

.go-top.active {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

.go-top:hover {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    color: var(--color-light);
}

/* -----------------------------------------
  	Preloader CSS
----------------------------------------- */
#preLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 1050;
}

#preLoader .loader {
    width: 44px;
    height: 44px;
    position: relative;
}

#preLoader .loader svg {
    display: block;
    width: 100%;
    height: 100%;
}

#preLoader .loader svg rect {
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 10px;
    stroke-linejoin: round;
    stroke-linecap: round;
}

#preLoader .loader svg rect {
    stroke-dasharray: 192 64 192 64;
    stroke-dashoffset: 0;
    -webkit-animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86)
        infinite;
    animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

.packageLi .fal .fa-check {
    background-color: var(--color-green) !important;
    color: #ffffff;
}
@-webkit-keyframes pathRect {
    25% {
        stroke-dashoffset: 64;
    }

    50% {
        stroke-dashoffset: 128;
    }

    75% {
        stroke-dashoffset: 192;
    }

    100% {
        stroke-dashoffset: 256;
    }
}

@keyframes pathRect {
    25% {
        stroke-dashoffset: 64;
    }

    50% {
        stroke-dashoffset: 128;
    }

    75% {
        stroke-dashoffset: 192;
    }

    100% {
        stroke-dashoffset: 256;
    }
}

/* -----------------------------------------
    Lazyload CSS
----------------------------------------- */
.lazy-container {
    position: relative;
    overflow: hidden;
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
    max-width: 100%;
    min-height: auto;
    background-color: #e7e9eb;
}

.lazy-container:before {
    position: absolute;
    content: "\f03e";
    font-family: "Font Awesome 5 Pro";
    top: 50%;
    left: 50%;
    font-size: 30px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #c0c0c0;
}

.lazy-container::after {
    content: "";
    display: block;
    padding-bottom: 110%;
}

.lazy-container.aspect-ratio-16-9::after {
    padding-bottom: 56.25%;
}

.lazy-container.aspect-ratio-1-1::after {
    padding-bottom: 100%;
}

.lazy-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    max-width: 100%;
}

.lazy-container img.lazy-image {
    opacity: 0.02;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.lazy-container img.lazyloaded {
    opacity: 1;
}

/* -----------------------------------------
    Magic Cursor CSS
----------------------------------------- */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1070;
    width: 5px;
    height: 5px;
    pointer-events: none;
    border-radius: 50%;
    background: var(--color-primary);
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.cursor.hover {
    width: 60px;
    height: 60px;
    margin-left: -30px;
    margin-top: -30px;
    background: rgba(var(--color-dark-rgb), 0.1);
}

.packageList .fa-check {
    background-color: #19d873 !important;
}
.pricing-area
    .card:is(.pricing-area .card:hover, .pricing-area .card.active)
    .item-list
    .packageList
    i.fa-check {
    color: #ffffff;
}

/* Popup css */
.popup-wrapper {
    display: none;
}
.popup_main-content h1 {
    font-size: 40px;
    line-height: 50px;
}
.bg_cover {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.popup-wrapper .mfp-close-btn-in .mfp-close {
    color: #333;
    background: #fff;
    opacity: 1;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 32px;
    right: -15px;
    top: -15px;
}
.popup-wrapper {
    position: relative;
    width: auto;
    max-width: 960px;
    margin: 0 auto;
}
.popup-wrapper .form_control {
    width: 100%;
    height: 70px;
    padding: 0 30px;
    line-height: 70px;
}

/* Popup-one */
.popup-one {
    position: relative;
    padding: 138px 120px;
}
.popup-one .popup_main-content {
    position: relative;
    text-align: center;
    background-color: rgba(69, 29, 83, 0.8);
    border-radius: 10px;
    padding: 90px 55px;
}
.popup-one .popup_main-content h1,
.popup-one .popup_main-content p {
    color: #fff;
}
.popup-one .popup_main-content h1 {
    margin-bottom: 20px;
}
.popup-one .popup_main-content p {
    margin-bottom: 30px;
}
.popup-one .popup_main-content .popup-main-btn {
    padding: 15px 100px;
    display: inline-block;
    color: #fff;
    border-radius: 40px;
    border: 1px solid #fff;
    text-decoration: none;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.popup-one .popup_main-content .popup-main-btn:hover,
.popup-one .popup_main-content .popup-main-btn:focus {
    background-color: #451d53;
    color: #fff;
    border-color: transparent;
}

/* Popup-two */

.popup-two {
    position: relative;
    padding: 120px;
}
.popup-two .popup_main-content {
    position: relative;
    text-align: center;
    background-color: rgba(255, 40, 101, 0.7);
    border-radius: 10px;
    padding: 90px 55px;
}
.popup-two .popup_main-content h1,
.popup-two .popup_main-content p {
    color: #fff;
}
.popup-two .popup_main-content h1 {
    margin-bottom: 20px;
}
.popup-two .popup_main-content p {
    margin-bottom: 30px;
}
.popup-two .popup_main-content .subscribe-form {
    padding: 0 70px;
}
.popup-two .popup_main-content .subscribe-form .form_control {
    border: none;
    border-radius: 10px;
    font-size: 20px;
    margin-bottom: 20px;
}
.popup-two .popup_main-content .subscribe-form .popup-main-btn {
    width: 100%;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    font-size: 20px;
    height: 70px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}
.popup-two .popup_main-content .subscribe-form .popup-main-btn:hover,
.popup-two .popup_main-content .subscribe-form .popup-main-btn:focus {
    background-color: #ff2865;
    color: #fff;
    border-color: transparent;
}

/* Popup-three */

.popup-three .popup_main-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-color: #fff;
}
.popup-three .popup_main-content .left-bg {
    width: 45%;
    height: 100%;
    min-height: 670px;
}
.popup-three .popup_main-content .right-content {
    width: 55%;
    padding: 30px 15px;
    text-align: center;
}
.popup-three .popup_main-content .right-content h1 {
    font-weight: 400;
    margin-bottom: 20px;
}
.popup-three .popup_main-content .right-content p {
    margin-bottom: 20px;
}
.popup-three .popup_main-content .right-content .popup-main-btn {
    padding: 15px 70px;
    background-color: #ff2865;
    color: #fff;
    font-size: 19px;
    border-radius: 35px;
    display: inline-block;
    text-decoration: none;
}

/* Popup-four */

.popup-four .popup_main-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-color: #fff;
}
.popup-four .popup_main-content .left-bg {
    width: 45%;
    height: 100%;
    min-height: 670px;
}
.popup-four .popup_main-content .right-content {
    width: 55%;
    padding: 30px 30px;
    text-align: center;
}
.popup-four .popup_main-content .right-content h1 {
    font-weight: 400;
    margin-bottom: 20px;
}
.popup-four .popup_main-content .right-content p {
    margin-bottom: 20px;
}
.popup-four .popup_main-content .subscribe-form {
    padding: 0 70px;
}
.popup-four .popup_main-content .subscribe-form .form_control {
    border: 2px solid #c5c5c5;
    border-radius: 10px;
    font-size: 20px;
    margin-bottom: 20px;
}
.popup-four .popup_main-content .subscribe-form .popup-main-btn {
    width: 100%;
    background-color: #f8960d;
    color: #fff;
    font-size: 20px;
    height: 70px;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}
.popup-four .popup_main-content .subscribe-form .popup-main-btn:hover,
.popup-four .popup_main-content .subscribe-form .popup-main-btn:focus {
    background-color: #f8960d;
    color: #fff;
    border-color: transparent;
}

/* Popup-five */

.popup-five .popup_main-content {
    text-align: center;
    padding: 75px;
}
.popup-five .popup_main-content h1 {
    font-size: 42px;
    line-height: 52px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
    margin: 0 auto 20px;
    max-width: 600px;
}
.popup-five .popup_main-content h4 {
    color: #fff;
    font-size: 25px;
    font-weight: 35px;
    margin-bottom: 40px;
    font-weight: 400;
}
.popup-five .popup_main-content .popup-main-btn {
    padding: 15px 30px;
    display: inline-block;
    color: #fff;
    background-color: #29a19c;
    border-radius: 40px;
    text-decoration: none;
}

/* Popup-six */
.popup-six .popup_main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #fff;
    text-decoration: none;
}
.popup-six .popup_main-content .left-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
}
.popup-six .popup_main-content .right-content {
    background-color: #930077;
    width: 50%;
    height: 100%;
    padding: 120px 15px;
    text-align: center;
    margin-left: 50%;
}
.popup-six .popup_main-content .right-content h1 {
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
    color: #fff;
    margin-bottom: 25px;
}
.popup-six .popup_main-content h4 {
    color: #fff;
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 40px;
    font-weight: 400;
}
.popup-six .popup_main-content .right-content .popup-main-btn {
    padding: 15px 30px;
    display: inline-block;
    color: #fff;
    background-color: #fa00ca;
    border-radius: 40px;
    text-decoration: none;
}

/* syotimer css */
.popup-wrapper .syotimer__body {
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.popup-wrapper .syotimer__body p {
    color: #fff;
}
.popup-wrapper .syotimer-cell {
    flex: 0 0 24%;
    padding-left: 10px;
    padding-right: 10px;
}
.popup-wrapper .syotimer-cell__value {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1f3a52;
    border-radius: 10px;
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
}
.popup-wrapper .syotimer-cell__unit {
    font-size: 20px;
    color: #fff;
    text-transform: capitalize;
}

.checkout-area .order-payment .nice-select .list {
    width: 100%;
    height: 220px;
    overflow-y: scroll;
}

/*Large Device*/
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
}

/*Large Device*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
}

/*Medium Device*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .popup-one .popup_main-content h1,
    .popup-three .popup_main-content .right-content h1,
    .popup-four .popup_main-content .right-content h1,
    .popup-five .popup_main-content h1,
    .popup-six .popup_main-content .right-content h1 {
        font-size: 40px;
        line-height: 50px;
    }
    .popup-wrapper {
        max-width: 720px;
    }
    .popup-two .popup_main-content .subscribe-form,
    .popup-four .popup_main-content .subscribe-form {
        padding: 0 15px;
    }
    .popup-one,
    .popup-two {
        padding: 80px 30px;
    }
    .syotimer__body {
        margin-bottom: 0px;
    }
    .syotimer-cell {
        flex: 0 0 50%;
        margin-bottom: 20px;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width: 991px) {
    .popup-wrapper .syotimer-cell {
        padding-left: 5px;
        padding-right: 5px;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width: 767px) {
    .popup-wrapper {
        max-width: 500px;
    }
    .popup-five .popup_main-content {
        text-align: center;
        padding: 50px 15px;
    }
    .popup-three .popup_main-content .left-bg,
    .popup-four .popup_main-content .left-bg,
    .popup-six .popup_main-content .left-bg {
        display: none;
    }
    .popup-one,
    .popup-two {
        padding: 30px 15px;
    }
    .popup-one .popup_main-content,
    .popup-two .popup_main-content {
        padding: 20px 15px;
    }
    .popup-one .popup_main-content .main-btn {
        padding: 15px 30px;
    }
    .popup-three .popup_main-content .right-content,
    .popup-four .popup_main-content .right-content,
    .popup-six .popup_main-content .right-content {
        width: 100%;
        padding: 50px 15px;
    }
    .popup-two .popup_main-content .subscribe-form,
    .popup-four .popup_main-content .subscribe-form {
        padding: 0 15px;
    }
    .popup-two .popup_main-content .subscribe-form .form_control,
    .popup-four .popup_main-content .subscribe-form .form_control {
        font-size: 15px;
    }
    .popup-two .popup_main-content h1,
    .popup-one .popup_main-content h1,
    .popup-three .popup_main-content .right-content h1,
    .popup-four .popup_main-content .right-content h1,
    .popup-five .popup_main-content h1,
    .popup-six .popup_main-content .right-content h1 {
        font-size: 24px;
        line-height: 34px;
    }
    .popup-six .popup_main-content .right-content {
        margin-left: 0%;
    }
    .syotimer__body {
        max-width: 380px;
        margin-bottom: 0px;
    }
    .syotimer-cell {
        flex: 0 0 50%;
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 767px) {
    .popup-wrapper .syotimer-cell__value {
        height: 50px;
        font-size: 24px;
        margin-bottom: 4px;
    }
    .popup-wrapper .syotimer-cell__unit {
        font-size: 16px;
    }
}
/* Mobile Devices, Tablets */
@media only screen and (max-width: 400px) {
    .popup-wrapper {
        max-width: 300px;
    }
    .syotimer__body {
        max-width: 300px;
        margin-bottom: 0px;
    }
    .syotimer-cell {
        flex: 0 0 50%;
        margin-bottom: 20px;
    }
}
/* Wide mobile Devices */
@media only screen and (min-width: 401px) and (max-width: 767px) {
    .popup-wrapper {
        max-width: 380px;
    }
}

/* -----------------------------------------
  	Animation CSS
----------------------------------------- */
@-webkit-keyframes loader {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes loader {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes slideUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(10%);
        transform: translateY(10%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(10%);
        transform: translateY(10%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes slideDown {
    from {
        opacity: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes moveAround {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }

    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg);
        transform: translate(73px, -1px) rotate(36deg);
    }

    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg);
        transform: translate(141px, 72px) rotate(72deg);
    }

    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg);
        transform: translate(83px, 122px) rotate(108deg);
    }

    80% {
        -webkit-transform: translate(-40px, 72px) rotate(144deg);
        transform: translate(-40px, 72px) rotate(144deg);
    }

    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }
}

@keyframes moveAround {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }

    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg);
        transform: translate(73px, -1px) rotate(36deg);
    }

    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg);
        transform: translate(141px, 72px) rotate(72deg);
    }

    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg);
        transform: translate(83px, 122px) rotate(108deg);
    }

    80% {
        -webkit-transform: translate(-40px, 72px) rotate(144deg);
        transform: translate(-40px, 72px) rotate(144deg);
    }

    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
        transform: translate(0px, 0px) rotate(0deg);
    }
}

@-webkit-keyframes moveUpDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes moveUpDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes moveLeftRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes moveLeftRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes ripple {
    0% {
        opacity: 0.75;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
}

@keyframes ripple {
    0% {
        opacity: 0.75;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
}

/*# sourceMappingURL=style.css.map */
.shop-social ul li {
    display: inline-block;
    text-decoration: none;
    color: var(--color-primary);
    border: 1px solid transparent;
    background-color: rgba(25, 122, 131, 0.13);
    margin: 5px 7px;
    border-radius: 50%;
}
.shop-social ul li a {
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
    border-radius: 50%;
    color: #592ce9;
    padding: 5px 11px;
}
.shop-social span {
    padding: 30px;
}
html[dir="rtl"] .direction-ltr {
    direction: ltr !important;
}
.btn-search {
    padding: 17px 35px;
    outline: 0 !important;
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    border-radius: 6px;
    border: none;
    box-shadow: none;
    transition: 0.4s ease-out;
}

