@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;400;500;600;700;800;900&display=swap');


:root {
    --thm-color: #B55DCD;
    --thm-color2: #B55DCD;
    /* --thm-color2: #B55DCD; */
    --light-thm-color: #B55DCD50;
    --light-thm-color2: #B55DCD50;
    --black-color: #000;
    --black-bg-thm: #222224;
    --light-bg-thm: #28282a;
    --white-color: #fff;
    --dark-gray-color: #515151;
    --border-color: #EBEBEB;
    --txt-color: #C5C5C5;
}

html,
body {
    height: 100%;
}

/* section{
    background-color: white;
} */

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    width: 100%;
    /* background-color: var(--dark-gray-color); */
    background-image: url(../images/body-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    overflow-x: hidden;
    font-weight: 400;
    font-family: 'Merriweather', serif;
    font-family: "Montserrat", sans-serif;
}

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

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

:focus {
    outline: none;
}

button:focus {
    outline: none;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #f1f1f1;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    border-radius: 3px;
}

::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: #a8a8a8;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
    border-radius: 3px;
}

::-webkit-input-placeholder {
    color: #767676;
    font-weight: 400;
}

::-moz-placeholder {
    color: #767676;
    font-weight: 400;
}

:-ms-input-placeholder {
    color: #767676;
    font-weight: 400;
}

:-moz-placeholder {
    color: #767676;
    font-weight: 400;
}

/* ================================ Common Css ======================= */

.thm-txt {
    color: var(--thm-color) !important;
}

.py-100 {
    padding: 100px 0px;
}

.extra-padding {
    padding: 200px 0px 50px;
}

.row-sec-div {
    padding: 60px 0px;
}

.bg-black {
    background-color: var(--black-bg-thm);
}

/* .light-bg {
    background-color: var(--light-bg-thm);
} */

.comn-btn-class {
    border-radius: 10px 0px 10px 0px;
    border: 1px solid var(--thm-color);
    outline: none;
    padding: 12px 20px;
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-color: #db59ff;
    /* background-color: var(--thm-color); */
    overflow: hidden;
    vertical-align: middle;
    transition: all 0.3s;
    cursor: pointer;
    z-index: 0;
    color: var(--white-color);
    white-space: nowrap;
    width: fit-content;
}

.comn-btn-class:hover {
    /* color: var(--thm-color); */
    background-color: var(--light-thm-color);
    transition: 0.3s;
}

.comn-btn-class2 {
    border-radius: 10px 0px 10px 0px;
    border: 1px solid var(--thm-color);
    outline: none;
    padding: 12px 20px;
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-color: transparent;
    overflow: hidden;
    vertical-align: middle;
    transition: all 0.3s;
    cursor: pointer;
    z-index: 0;
    color: var(--thm-color);
    white-space: nowrap;
    width: fit-content;
}

.comn-btn-class2:hover {
    color: var(--white-color);
    background-color: var(--thm-color);
}

.comn-input-style {
    background-color: transparent;
    border: 1px solid var(--black-color);
    color: var(--black-color);
    font-weight: 400;
    border-radius: 6px;
    font-size: 14px;
    height: 48px;
    padding: 12px;
}

.comn-input-style::placeholder {
    color: var(--txt-color);
}

.comn-input-style:focus {
    border-color: var(--thm-color);
    box-shadow: 0 0 3px var(--thm-color);
}

.active-buble {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    background-color: var(--thm-color2);
    border-radius: 50px;
    z-index: -1;
}

.landing-h-btn {
    display: none !important;
}

.cart-value {
    position: absolute;
    top: -5px;
    right: -5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    font-weight: 500;
    font-size: 12px;
    color: var(--white-color);
    background-color: var(--thm-color);
    border-radius: 50px;
}

.product-box {
    height: 100%;
    border: 1px solid var(--thm-color);
    border-radius: 6px;
    overflow: hidden;
}

.product-box .product-img {
    width: 100%;
    height: 250px;
}

.product-box .product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-detail {
    padding: 20px;
}

.cart-detail p {
    font-weight: 600;
    font-size: 20px;
    color: var(--white-color);
    text-transform: capitalize;
}

.cart-detail :where(del, span) {
    font-weight: 500;
    font-size: 16px;
    color: var(--white-color);
}



.custm-pagination .page-link {
    width: 45px;
    height: 45px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--white-color);
}

.custm-pagination .page-link:hover,
.custm-pagination .page-link:focus {
    box-shadow: none;
    color: var(--white-color);
    background-color: var(--thm-color);
}

.cart-table thead th {
    padding: 15px;
    vertical-align: middle;
    font-weight: 600;
    font-size: 15px;
    color: var(--white-color);
    background-color: var(--light-thm-color);
}

.cart-table tbody td {
    font-weight: 400;
    font-size: 14px;
    padding: 15px;
    vertical-align: middle;
    color: var(--white-color);
}

.cart-table .table-prod-div img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

/* ------------------ Slider ------------------- */

.slick-disabled {
    opacity: 0;
    pointer-events: none;
}

.slick-dots li,
.slick-dots li button {
    width: 10px !important;
    height: 10px !important;
}

.slick-dots li button:before {
    width: 10px !important;
    height: 10px !important;
    font-size: 0px !important;
    background-color: var(--thm-color) !important;
    border-radius: 0px;
}

.slick-dots li.slick-active button:before {
    opacity: 1 !important;
    border-radius: 0px;
    background-color: var(--thm-color);
}

.slick-prev,
.slick-next {
    border-radius: 50px !important;
    padding: 20px !important;
    top: unset !important;
    bottom: -80px;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: transparent;
    border: 1px solid var(--txt-color);
    background-size: 14px;
}

.slick-prev {
    left: 46% !important;
    background-image: url("../images/arrow-left-solid.svg") !important;
}

.slick-next {
    right: 46% !important;
    background-image: url("../images/arrow-right-solid.svg") !important;

}

.slick-prev:before,
.slick-next:before {
    opacity: 1 !important;
    line-height: normal !important;
    color: var(--thm-color) !important;
    font-size: 35px !important;
    display: none;
}

.slick-prev:hover,
.slick-prev:focus {
    background-image: url("../images/arrow-left-solid.svg") !important;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: var(--thm-color);
    background-size: 14px;
}

.slick-next:hover,
.slick-next:focus {
    background-image: url("../images/arrow-right-solid.svg") !important;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: var(--thm-color);
    background-size: 14px;
}

.slick-prev:hover,
.slick-next:hover {
    background-color: var(--thm-color);
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
    opacity: 0.3 !important;
}

/* ------------------------ Nav Tabs ------------------- */
.nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.nav-pills .nav-link {
    font-weight: 400;
    font-size: 14px;
    border-radius: 0;
    color: var(--white-color);
    border: 1px solid var(--dark-gray-color);
    margin: 0px 5px;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: var(--thm-color);
    color: var(--white-color);
    border-radius: 0;
    border: 1px solid var(--thm-color);
}

.nav-link:focus,
.nav-link:hover {
    color: var(--thm-color);
    border-color: var(--thm-color);
}

.scroll-top-btn {
    display: none;
}

.scroll-top-btn button {
    border: 0;
    background-color: var(--thm-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    transition: all 0.3s;
}

.scroll-top-btn button:hover {
    transform: scale(1.1);
}

/* ============================ Header CSS ======================= */

.login-logo {
    width: 300px;
}

.login-logo img {
    width: 100%;
    height: 100%;
}

.header-menu {
    position: sticky !important;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
    box-shadow: 0 1px 3px rgb(15 80 134/5%);
    border-bottom: 1px solid rgba(15, 80, 134, 0.1);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    background-color: var(--white-color);
}

.navbar-hdr a img {
    width: 200px;
}

.nav-link-hdr {
    display: flex;
    align-items: center;
}

.nav-link-hdr ul {
    display: flex;
    align-items: baseline;
}

.nav-link-hdr ul li a {
    margin: 0px 10px;
    font-weight: 500;
    font-size: 16px;
    display: block;
    text-transform: capitalize;
    color: var(--black-color);
    position: relative;
}

.nav-link-hdr ul li.active a {
    /* color: var(--white-color); */
    transition: 0.3s;
}

.nav-link-hdr ul li.active a:after {
    color: var(--thm-color);
    opacity: 1;
    transform: scale(1);
    transition: 0.3s;
}

/* .nav-link-hdr ul>li>a:hover:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
} */

/* .nav-link-hdr ul>li>a:after {
    content: ' ';
    position: absolute;
    left: -10px;
    display: inline-block;
    height: 25px;
    width: 25px;
    border-radius: 50px;
    background-color: var(--thm-color2);
    opacity: 0;
    z-index: -1;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
} */

/* .nav-link-hdr ul li a:hover {
    color: var(--thm-color);
} */

.cart-div {
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid var(--thm-color);
    background-color: var(--light-thm-color);
}

.cart-div i {
    font-size: 16px;
}

.humburge button svg {
    fill: var(--thm-color);
    z-index: 99;
}

.hdr-menu-close {
    display: none;
}

.hdr-btn {
    /* background: var(--thm-color); */
    background: #e173ff;
    padding: 12px 15px;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid var(--thm-color);
    border-radius: 10px 0px 10px 0px;
    color: var(--white-color);
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 18px;
}

.hdr-btn:hover {
    color: var(--white-color);
    box-shadow: 3px 3px 3px var(--light-thm-color);
}

.hdr-btn2 {
    background: var(--white-color);
    padding: 12px 15px;
    font-weight: 500;
    font-size: 14px;
    border-radius: 0px 10px 0px 10px;
    color: var(--thm-color);
    border: 1px solid var(--thm-color);
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 18px;
}

.hdr-btn2:hover {
    border-color: var(--black-color);
    color: var(--black-color);
    box-shadow: 3px 3px 3px rgb(0, 0, 0, 20%);
}

/* =================================== Footer Css ============================ */

.subscr-div {
    background: url('../images/subscribe-bg2.jpg');
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: cover;
    background-attachment: fixed;
    border-radius: 10px;
    padding: 50px;
}

.subscribe-mail-box {
    width: 100%;
    padding: 15px 150px 14px 14px;
    border-radius: 6px;
    border: var(--white-color);
}

.subscribe-submit-btn {
    border: 1px solid var(--black-color);
    border-radius: 6px;
    background: var(--black-color);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 600;
    position: absolute;
    top: 50%;
    right: -63px;
    transform: translate(-50%, -50%);
    padding: 10px 30px;
    transition: .3s;
}

.subscribe-section {
    background-color: #343436;
}

.footer-widget-title h5 {
    text-transform: capitalize;
    color: var(--thm-color);
    font-size: 20px;
    font-weight: 700;
}

.footer-logo {
    max-width: 250px;
}

.footer-widget-title,
.footer-logo {
    padding-bottom: 15px;
}

.ftr-icon-group ul {
    display: flex;
    align-items: center;
}

.ftr-icon-group ul li a {
    width: 40px;
    height: 40px;
    margin: 3px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    border: 1px solid #737D8C;
    z-index: 1;
    transition: .3s;
}

.ftr-icon-group ul li a i {
    position: relative;
    color: #737D8C;
    z-index: 3;
    transform: rotateY(0deg);
    transition: .5s;
}

.ftr-icon-group ul li a svg {
    position: relative;
    color: var(--white-color);
    z-index: 3;
    transition: .3s;
}

.ftr-icon-group ul li a:hover {
    border-color: var(--thm-color2);
    transition: .3s;
}


.ftr-icon-group ul li a:hover i,
.ftr-icon-group ul li a:hover svg {
    transform: rotateY(360deg);
    color: var(--thm-color2);
    fill: var(--thm-color2);
    transition: .5s;
}

.footer-quick-link-list ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer-quick-link-list ul li {
    margin-bottom: 12px;
    transition: 0.3s;
    position: relative;
    width: 50%;
    padding-right: 15px;
}

.footer-quick-link-list ul li a {
    color: var(--white-color);
    transition: 0.3s;
}

.footer-quick-link-list ul li a:hover {
    color: var(--thm-color);
    transition: 0.3s;
    padding-left: 6px;
    font-weight: 500;
}

.footer-hr {
    padding: 60px 0 50px 0;
}

.footer-copyright-text {
    padding: 20px 0;
}

.footer-copyright-text ul li {
    margin: 0px 10px;
}

/* .footer-copyright-text ul li a {
    color: var(--white-color);
} */

.footer-copyright-text ul li a:hover {
    color: var(--thm-color2);
}

.cont-statu {
    width: 36px;
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
    border-radius: 50px;
    background-color: var(--white-color);
}

.footer-contact a {
    color: var(--white-color);
}

.footer-contact a:hover {
    color: var(--thm-color);
    font-weight: 500;
}

footer {
    border: 2px solid var(--thm-color);
    /* border-radius: 20px 20px 0px 0px; */
    overflow: hidden;
}

/* =================================== Login ================================= */

.login-main {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box-main .login-scroll-sec {
    max-height: calc(100vh - 300px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 5px;
}

.login-left-img {
    width: 100%;
    height: 100vh;
}

.login-left-img img {
    width: 100%;
    height: 100%;
}

.login-box-main {
    border-radius: 10px;
    padding: 30px;
    max-width: 600px;
    background-color: var(--txt-color);
    box-shadow: 0px -5px 0px var(--thm-color);
}

.comn-label {
    font-weight: 500;
    font-size: 14px;
    color: var(--black-color);
    margin-bottom: 10px;
    display: block;
}

.eye-hide-show {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.custm-checkbox input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.custm-checkbox span {
    position: relative;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
}

.custm-checkbox span:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid var(--black-color);
    border-radius: 4px;
    padding: 8px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
}

.custm-checkbox input:checked+span::before {
    border: 1px solid var(--thm-color);
}

.custm-checkbox input:checked+span:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 7px;
    width: 5px;
    height: 10px;
    border: solid var(--thm-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.login-wel-title h3 {
    font-weight: 700;
    font-size: 26px;
}

.login-wel-title p {
    font-weight: 500;
    font-size: 16px;
}

/* =================================== Index Page Css ======================== */

.home-slider-img img {
    aspect-ratio: 3/1;
}

.home-cont-body {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
}

.comn-title-div h1 {
    font-weight: 700;
    font-size: 40px;
    color: var(--white-color);
    text-transform: capitalize;
    margin: 0 0 15px 0;
}

.comn-title-div .sub-title {
    font-weight: 500;
    font-size: 14px;
    background-color: var(--thm-color);
    padding: 5px 10px;
    border-radius: 50px;
}

.comn-title-div h2 {
    font-weight: 700;
    font-size: 35px;
    /* color: var(--white-color); */
    text-transform: capitalize;
    font-family: 'Merriweather', serif;
    margin: 0 0 15px 0;
}

.comn-title-div h3 {
    font-weight: 700;
    font-size: 24px;
    color: var(--Dark-blue-color);
    text-transform: capitalize;
    font-family: 'Merriweather', serif;
    margin: 0 0 15px 0;
}

.comn-title-div p {
    font-weight: 500;
    font-size: 15px;
    /* color: var(--white-color); */
    margin: 0 0 15px 0;
}

.comn-title-div .para-txt {
    font-weight: 400;
    font-size: 15px;
    text-align: justify;
    color: var(--txt-color);
    margin: 0 0 15px 0;
}

.w-600 {
    width: 600px;
}


.class-box-main {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    overflow: hidden;
    margin: 8px;
    height: 100%;
    /* cursor: pointer; */
}

.class-box-main .custmr-prof-img img {
    opacity: 0.7;
    width: 100%;
    transition: opacity 0.2s ease 0s;
}

.class-box-body {
    padding: 15px;
    background-color: transparent;
}

.class-box-body h6 {
    font-weight: 500;
    font-size: 16px;
    color: var(--white-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.class-box-body p {
    font-weight: 400;
    font-size: 12px;
    color: var(--txt-color);
    letter-spacing: 0.8px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.class-box-main .prodt-img img {
    aspect-ratio: 2/1;
}

.class-box-main:hover .custmr-prof-img img {
    opacity: 1;
}


.class-box-main:hover .class-box-body {
    color: var(--white-color);
    /* background-color: var(--thm-color); */
}

.class-box-main:hover .class-box-body p {
    color: var(--black-color);
}

/* .class-box-main:hover .class-box-body .comn-btn-class2 {
    background-color: var(--white-color);
    color: var(--thm-color2);
} */

.price-offer {
    font-weight: 600;
    font-size: 16px;
}

.border-columns {
    display: flex;
    border-top: 1px solid #515151;
}

.class-time-table table thead th {
    font-weight: 500;
    font-size: 16px;
    padding: 20px 15px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    border: 1px solid #787878 !important;
    border-top: 0 !important;
    color: var(--txt-color);
}

.class-time-table table tbody td {
    font-weight: 400;
    font-size: 14px;
    padding: 20px 15px;
    vertical-align: middle;
    white-space: nowrap;
    text-align: center;
    border: 1px solid #787878;
    color: var(--txt-color);
    transition: all 0.5s;
}

.class-time-table table thead th:first-child {
    border-left: 0 !important;
}

.class-time-table table tbody tr:last-child td {
    border-bottom: 0 !important;
}

.class-time-table table thead th:last-child,
.class-time-table table tbody td:last-child {
    border-right: 0 !important;
}

.class-time-table table tbody td:first-child {
    font-weight: 500;
    font-size: 15px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    color: var(--txt-color);
    border-left: 0;
}

.class-time-table table tbody td span {
    font-weight: 500;
    font-size: 15px;
    display: block;
    color: var(--white-color);
}

.class-time-table table tbody td bdi {
    font-weight: 400;
    font-size: 13px;
    display: block;
}

.class-time-table table tbody td:not(:first-child):hover {
    cursor: pointer;
    background-color: var(--thm-color2);
    color: var(--white-color);
    transition: all 0.5s;
}

.provide-label li {
    font-size: 18px;
}

/* ------------------ Pricing Plan Css ------------ */

.pricing-tabs-fix .toggle-tabs-cust {
    box-shadow: none;
    display: flex;
    border: 1px solid var(--thm-color);
    border-radius: 50px;
    padding: 0.25rem;
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin: 20px 0px 60px;
}

.pricing-tabs-fix .toggle-tabs-cust .toggle-tabs-list {
    width: auto;
}

.toggle-tabs-list {
    text-align: center;
}

.toggle-tabs-cust input[type="radio"].toggle {
    display: none;
}

.toggle-tabs-cust input[type="radio"].toggle:checked+label {
    cursor: default;
    background-color: var(--thm-color);
    color: #fff;
}

.pricing-tabs-fix .toggle-tabs-cust label {
    padding: 9px 28px;
    border-radius: 50px;
    font-weight: 400;
}

.toggle-tabs-cust label {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-transform: capitalize;
    color: var(--white-color);
    border-radius: 8px;
    width: 100%;
    padding: 15px 45px;
    border: 0;
    position: relative;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.toggle-tabs-cust input[type="radio"].toggle.toggle-left+label:after {
    left: 100%;
}

.toggle-tabs-cust input[type="radio"].toggle+label:after {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.toggle-tabs-cust input[type="radio"].toggle:checked+label {
    cursor: default;
    background-color: var(--thm-color);
    color: var(--white-color);
}

.toggle-tabs-cust input[type="radio"].toggle+label {
    cursor: pointer;
}

.plan-box-main {
    padding: 15px;
    border-radius: 10px;
    background-color: var(--white-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.table-wrapper .plan-name {
    font-weight: 600;
    font-size: 20px;
    color: var(--thm-color);
}

.table-wrapper .plan-price {
    font-weight: 600;
    font-size: 35px;
    margin-bottom: 0px;
    color: var(--black-color);
}

.table-wrapper .plan-price i {
    font-weight: 600;
    font-size: 16px;
    vertical-align: text-top;
    color: var(--black-color);
    margin-top: 10px;
    margin-right: 5px;
}

.plan-box-main .desc {
    font-weight: 500;
    font-size: 14px;
    color: var(--txt-color);
}

.plan-detail ul li {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    padding: 6px 0px;
    color: var(--black-color);
}

.price-btn {
    background-color: rgb(64 153 21/10%);
    border-radius: 50px;
    border: 0;
    outline: 0;
    font-weight: 500;
    font-size: 14px;
    color: var(--black-color);
    padding: 12px 25px;
    display: inline-flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
}

.price-btn:hover {
    color: var(--white-color);
    background-color: var(--thm-color);
}

.plan-box-main.active {
    background-color: var(--thm-color);
    transform: scale(1.1);
}

.table-wrapper .plan-box-main.active .plan-name,
.table-wrapper .plan-box-main.active .plan-detail ul li,
.table-wrapper .plan-box-main.active .plan-price,
.table-wrapper .plan-box-main.active .plan-detail ul li i,
.table-wrapper .plan-box-main.active .plan-price i {
    color: var(--white-color) !important;
}

.plan-box-main.active .price-btn {
    background-color: var(--border-color);
}

.plan-box-main.active .price-btn:hover {
    color: var(--thm-color);
}

.popular-div {
    position: absolute;
    top: 25px;
    right: -40px;
    transform: rotate(45deg);
    font-weight: 600;
    padding: 8px 35px;
    background-color: var(--white-color);
    color: var(--thm-color);
}


.oofer-popular-div {
    position: absolute;
    top: 11px;
    right: -33px;
    transform: rotate(45deg);
    font-weight: 600;
    padding: 8px 35px;
    background-color: var(--white-color);
    color: var(--thm-color);
}

.client-img-group img {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 2px solid var(--white-color);
    margin-left: -12px;
}

.client-img-group img:first-child {
    margin-left: 0;
}

.review-box-main {
    display: flex;
    flex-direction: column;
    background-color: var(--white-color);
    padding: 15px;
    border-radius: 5px;
    margin: 8px;
    height: 100%;
    box-shadow: 0px 2px 10px rgb(0 0 0 / 15%);
    position: relative;
}

.review-box-main .custmr-prof-img {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    overflow: hidden;
}

.custm-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--thm-color);
}

.review-box-main .quotes {
    position: absolute;
    top: 0px;
    right: 0px;
}

.review-slider .slick-next {
    top: 50% !important;
    right: -40px !important;
    background-color: var(--thm-color2);
    border-color: var(--thm-color2);
}

.review-slider .slick-prev {
    top: 50% !important;
    left: -40px !important;
    background-color: var(--thm-color2);
    border-color: var(--thm-color2);
    z-index: 1;
}

.pricing-bg img {
    width: 100%;
    height: 700px;
}

.contact-us-bg-img {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/contect-bg2.jpg') no-repeat center/cover;
    height: 500px;
    position: relative;
}

.solo-team {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg') no-repeat center/cover;
    height: 500px;
    position: relative;
}

.breadcumb-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.breadcumb-content h1 {
    font-size: 45px;
    color: var(--white-color);
    margin-bottom: 20px;
}

.breadcumb-content ul li {
    font-size: 14px;
    color: var(--white-color);
    font-weight: 500;
    text-transform: uppercase;
    display: inline-block;
    margin: 0 5px;
}

.breadcumb-content ul li a {
    font-size: 14px;
    color: var(--white-color);
    text-transform: uppercase;
}

/* -------------------- */

.section.features-grid .grid-wrap {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    background: transparent;
    border-radius: 12px;
    grid-gap: 5px;
}

.section.features-grid .grid-element {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    flex-basis: 33%;
    padding: 48px;
    gap: 16px;
    text-align: left;
    /* cursor: pointer; */
    border: 1px solid var(--thm-color);
    transition: all 0.5s;
}

.section.features-grid .grid-element h6 {
    /* display: flex;
    align-items: center; */
    /* gap: 20px; */
    /* color: var(--white-color); */
    font-weight: 500;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 150%;
}

.section.features-grid .grid-element img {
    width: 32px;
    height: 32px;
    /* color: var(--light-thm-color); */
    filter: brightness(1) invert(1);
}

.section p {
    margin-bottom: unset;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #303030;
}

.section.features-grid .grid-element:hover {
    background-color: var(--light-thm-color);
    transition: all 0.5s;
}

.section.features-grid .grid-element:hover h6 {
    border-bottom: 1px solid var(--black-bg-thm);
    width: fit-content;
}



.section.features-grid .grid-element:hover img {

    animation: spinAround 2s linear infinite;
}

@keyframes spinAround {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.custm-acc-sec .accordion-item {
    background-color: transparent;
    /* border: 1px solid var(--white-color); */
}

.custm-acc-sec .accordion-button p {
    /* color: var(--white-color); */
    font-size: 15px;
    font-weight: 500;
}

.custm-acc-sec .accordion-button p span {
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
}

.custm-acc-sec .accordion-body {
    font-size: 14px;
    padding: 15px;
    font-weight: 500;
    /* color: var(--white-color); */
}

.custm-acc-sec .accordion-button:focus {
    box-shadow: none;
}

.custm-acc-sec .accordion-button {
    padding: 15px;
    background-color: transparent;
}

.custm-acc-sec .accordion-button::after {
    filter: brightness(1) invert(0);
}

.custm-acc-sec .accordion-button:not(.collapsed) {
    color: var(--white-color);
    background-color: var(--light-thm-color);
    box-shadow: none;
}

.custm-acc-sec .accordion-item:has(.accordion-button:not(.collapsed)) {
    /* color: var(--thm-color); */
    background-color: transparent;
    border: 1px solid var(--white-color);
}

.custm-acc-sec .accordion-button:not(.collapsed) p,
.custm-acc-sec .accordion-button:not(.collapsed) span {
    color: var(--white-color);
}

.custm-acc-sec .accordion-button:hover {
    background-color: var(--light-thm-color);
}

/* ========================== Privacy Policy ============================= */

.privacy-sec h3 {
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    margin: 25px 0px 15px;
    color: var(--white-color);
}

.privacy-sec p {
    font-weight: 400;
    font-size: 14px;
    color: var(--white-color);
    margin-bottom: 10px;
}

.privacy-sec ul {
    padding-left: 35px;
    margin-bottom: 20px;
}

.privacy-sec ul li {
    font-weight: 400;
    font-size: 14px;
    margin: 5px 0px;
    color: var(--white-color);
    list-style: disc;
}

.privacy-sec a {
    color: var(--white-color);
    text-decoration: underline;
}

.benef-accor .accordion-button p {
    font-size: 16px
}

.benef-accor .accordion-body p {
    letter-spacing: 0.5px;
}

.free-bg {
    background-image: url('../images/free_bg.png');
    background-position: center center;
    background-size: cover;

}

/* =============================== MEDIA QUERY =========================== */

@media (max-width: 1400px) {
    /* .home-cont-body {
        top: 35%;
    } */

}

@media (max-width: 1199px) {
    .container {
        width: 100%;
        max-width: 100%;
    }

    .comn-title-div h1 {
        font-size: 34px;
    }

    .comn-title-div h2 {
        font-size: 30px;
    }

    .comn-title-div h3 {
        font-size: 20px;
    }

    .image-banner a img {
        height: 200px;
    }

    .slick-prev {
        left: 45% !important;
    }

    .slick-next {
        right: 45% !important;
    }

    .w-600 {
        width: 550px;
    }

    .row-sec-div {
        padding: 50px 0px;
    }

    .section.features-grid .grid-wrap {
        margin-top: 30px;
    }

    .section.features-grid .grid-element h6 {
        font-size: 16px;
    }

    .section p {
        font-size: 15px;
    }

    .navbar-hdr a img {
        width: 190px;
    }

    .footer-logo {
        max-width: 200px;
    }
}

@media (max-width: 991px) {


    .nav-link-hdr ul li a {
        font-size: 14px;
    }

    .comn-title-div h1 {
        font-size: 30px;
    }

    .comn-title-div h2 {
        font-size: 25px;
    }

    .w-600 {
        width: 600px;
        margin: auto;
    }

    .extra-padding {
        padding: 570px 0px 50px;
    }

    .py-100 {
        padding: 50px 0px;
    }

    .contact-us-bg-img,
    .solo-team {
        height: 400px;
    }

    .breadcumb-content h1 {
        font-size: 35px;
        margin-bottom: 15px;
    }

    .cont-iframe iframe {
        height: 400px;
    }

    .class-box-body h6 {
        font-size: 15px;
    }

    .review-slider .slick-prev {
        left: -5px !important;
    }

    .review-slider .slick-next {
        right: -5px !important;
    }

    .home-slider-img img {
        aspect-ratio: 2/1;
    }

    .row-sec-div {
        padding: 40px 0px;
    }

    .section.features-grid .grid-element {
        padding: 25px;
    }

    .table-wrapper .plan-price {
        font-size: 30px;
    }

    .plan-box-main.active {
        transform: scale(1);
    }

    .login-box-main {
        padding: 20px;
    }

    .provide-label li {
        font-size: 16px;
    }
}

@media (max-width:991px) {
    .nav-link-hdr {
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: absolute;
        top: 60px;
        left: -100%;
        /* right: 0; */
        z-index: 99;
        height: 100vh;
        width: 100%;
        transition: 0.5s;
    }

    .nav-link-hdr ul {
        padding: 10px;
        text-align: center;
        color: var(--white-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }

    .nav-link-hdr ul li.active a {
        color: var(--white-color);
        border-color: var(--white-color);
    }

    .nav-link-hdr ul li.active a:after {
        color: var(--white-color);
    }

    .dash-wrap-main .nav-link-hdr {
        left: 0;
        background-color: var(--dark-gray-color);
        transition: 0.5s;
    }

    .nav-link-hdr ul li a {
        color: var(--white-color);
        font-size: 16px;
        margin: 10px 0px;
    }
    .dash-wrap-main .humburge button svg {
        display: none;
        transition: 0.3s;
    }

    .dash-wrap-main .hdr-menu-close {
        display: block;
        font-size: 22px;
        transition: 0.3s;
    }
}

@media (max-width:767px) {

    .comn-title-div h3 {
        font-size: 18px;
    }


    .extra-padding {
        padding: 100px 0px 50px;
    }

    .contact-us-bg-img,
    .solo-team {
        height: 300px;
    }

    .breadcumb-content h1 {
        font-size: 30px;
    }

    .breadcumb-content {
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        left: 50%;
        text-align: center;
    }

    .cont-iframe iframe {
        height: 300px;
    }

    .row-sec-div {
        padding: 35px 0px;
    }

    .footer-copyright-text,
    .footer-copyright-text ul li a {
        font-size: 13px;
    }

    .home-slider-img img {
        height: 350px;
        width: 100%;
    }

    .home-cont-body {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
    }

    .comn-btn-class {
        padding: 10px 15px;
        font-size: 13px;
    }

    .section.features-grid .grid-element {
        flex-basis: 50%;
    }

    .section.features-grid .grid-element {
        gap: 15px;
    }

    .subscr-div {
        padding: 15px;
    }

    .custm-acc-sec .accordion-button {
        font-size: 14px;
    }

    .custm-acc-sec .accordion-body {
        font-size: 13px;
    }

    .custm-acc-sec .accordion-button::after {
        background-position: center;
        background-size: 15px;
    }

    .table-wrapper .plan-name {
        font-size: 17px;
    }

    .table-wrapper .plan-price {
        font-size: 25px;
    }

    .scroll-top-btn button {
        width: 35px;
        height: 35px;
        bottom: 20px;
        right: 20px;
    }

    .scroll-top-btn button i {
        font-size: 14px !important;
    }

    .class-time-table table thead th {
        font-size: 15px;
    }

    .class-time-table table tbody td:first-child,
    .class-time-table table tbody td span {
        font-size: 13px;
    }

    .class-time-table table tbody td bdi {
        font-size: 12px;
    }

    .class-time-table table thead th {
        padding: 15px;
    }

    .nav-pills .nav-link {
        font-size: 12px;
    }

    .comn-title-div p {
        font-size: 14px;
    }

    .cart-div {
        padding: 10px;
    }

    .cart-div i {
        font-size: 14px;
    }
}


@media (max-width: 575px) {

    .mainnat {
        display: none;
    }

    .alternat {
        display: block !important;
    }

    .comn-title-div h1 {
        font-size: 25px;
    }

    .comn-title-div h2 {
        font-size: 22px;
    }

    .contact-us-bg-img,
    .solo-team {
        height: 250px;
    }

    .breadcumb-content h1 {
        font-size: 25px;
    }

    .breadcumb-content ul li,
    .breadcumb-content ul li a {
        font-size: 13px;
    }

    .cont-iframe iframe {
        height: 250px;
    }

    .row-sec-div {
        padding: 30px 0px;
    }

    .section.features-grid .grid-element {
        padding: 15px;
    }

    .section.features-grid .grid-element h6 {
        font-size: 15px;
        margin: auto;
    }

    .section p {
        font-size: 14px;
    }

    .section.features-grid .grid-element {
        flex-basis: 100%;
    }

    .py-100 {
        padding: 30px 0px;
    }

    .subscribe-submit-btn {
        font-size: 13px;
        padding: 10px 15px;
        right: -44px;
    }

    .footer-hr {
        padding: 30px 0 50px 0;
    }

    .login-box-main {
        padding: 15px;
    }

    .provide-label li {
        font-size: 14px;
    }

    .mini-head::after {
        left: -30% !important;
    }

    .mini-head::before {
        left: -8% !important;
    }
   
}


/* ==contect-section=== */
.fr-content {
    padding: 50px !important;
    border-radius: 20px;
}

.mini-head::after {
    position: absolute;
    content: '';
    width: 30px;
    height: 5px;
    border-radius: 10px;
    top: 50%;
    left: -9%;
    transform: translateY(-50%);
    background-color: var(--thm-color);
}

.mini-head::before {
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    top: 50%;
    left: -2%;
    transform: translateY(-50%);
    background-color: var(--thm-color);
}

.form-last {
    border-radius: 20px;
}

.form-last textarea {
    border-radius: 10px;
    border: 1px solid var(--dark-gray-color);
}

.offer_footer {
    background: url(/images/img_offer2.png);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;

}

/* TITLE */
    .section-title {
        text-align: center;
        margin-bottom: 80px;
    }

    .section-title h2 {
        font-size: 38px;
        font-weight: 700;
        line-height: 1.3;
    }

    .section-title span {
        color: #000;
    }

    @media(max-width:575px){
        .section-title h2{
            font-size: 30px !important;
        }
    }

