:root {
    --theme-primary-color: #f2295b;
    --theme-secondary-color: #ffaa48;
    --theme-most-color: #f2295b;
    --theme-light-pick: #f18b92;
    --dark: #000000;
    --light-dark: #999999;
    --light-yellow: #ddb65c;
    --white: #ffffff;
    --gray: #eeeeee;
    --anchor-text-color: #5846f9;
    --anchor-text-color-hover: #8577fb;
    --heading-text-color: #141417;
    --heading-line-color: #b9c7f6;
    --section-card-one-color: var(--theme-secondary-color);
    --section-card-two-color: #f9d464;
    --section-card-three-color: var(--theme-most-color);
    --header-footer-color: var(--heading-text-color);
    --body-text-color: #4b4b4b;
    --font-14-size: 14px;
    --font-16-size: 16px;
    --font-family-head: 'Jost', sans-serif;
    --font-family-body: 'Poppins', sans-serif;

    /* background-image: linear-gradient(#a157e7, #2154f2); */
}

*::before,
*::after {
    box-sizing: border-box;
}


body {
    font-family: var(--font-family-body);
    color: var(--body-text-color);
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
}

#cutomer_review_submit_alert{
    display: none;
}

p {
    font-size: 16px;
    line-height: 1.8em;
    font-weight: 500;
}

.text-sm {
    font-size: 0.875rem !important;
}

.text-dark {
    color: #344767 !important;
}
.text-primary {
    color: #f2295b !important;
}
.btn-link {
    text-decoration: none;
    color: #f2295b;
}



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

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

dl,
ol,
ul {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-head);

    color: var(--heading-text-color);
}

h1,
.h1,
.fs-1 .display-1 {
    font-weight: 600;
    font-size: 46px;
    line-height: 1.4em;
}

h2,
.h2 .fs-2 .display-2 {
    color: #313336;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.4em;
}

.h3,
h3,
.fs-3,
.display-3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6em;
}

.h4,
h4,
.fs-4,
.display-4 {
    font-size: 1.7rem;
}

.p_relative {
    position: relative;
}

.p_absolute {
    position: absolute;
}

.text-xs {
    font-size: .75rem !important;
    line-height: 1.25;
}

.btn.btn-primary {
    color: #FFFFFF !important;
    background: #ffaa48;
    font-weight: 500;
    border: none;
    display: block;
}
.btn.btn-primary:hover {
    background: #000;
}

.bg-gradient-primary {
    background: var(--theme-primary-color);
}

.btn.bg-gradient-primary {
    background: var(--theme-primary-color);
    color: var(--white);
    border: none;

}

.btn.bg-gradient-primary:hover, .btn.bg-gradient-secondary {
    background: #000;
    color: var(--white);
}

.btn-primary:hover, .btn.bg-gradient-primary:hover {
    color: var(--white);
    transform: scale(1.02);
}

.text-gradient {
    color: var(--theme-primary-color);
}

.btn.bg-gradient-secondary {
    background: var(--theme-secondary-color);
    color: var(--white);
    border: none;
}
hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: 1px solid;
    opacity: 0.25;
    border-top: none !important;
    height: 1px;
}
hr.horizontal.dark {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}
hr.horizontal {
    background-color: transparent;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 10px;
    bottom: 85px;
    z-index: 996;
    transform: rotate(90deg);
    background: -webkit-linear-gradient(45deg, var(--theme-primary-color) 0%, var(--theme-secondary-color) 100%);
    color: transparent;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 500ms ease;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    width: 100%;
    height: 100%;
    position: fixed;
    background: var(--white);
    /* background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(var(--theme-secondary-color)),
        to(var(--theme-primary-color))
    );
    background-image: linear-gradient(
        var(--theme-secondary-color),
        var(--theme-primary-color)
    ); */
    top: 0;
    left: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loder {
    width: 84px;
    height: 84px;
    position: relative;
    overflow: hidden;
}

.loder:before,
.loder:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ddb65c;
    transform: translate(-50%, 100%) scale(0);
    animation: push 2s infinite ease-in;
}

.loder:after {
    animation-delay: 1s;
    background: var(--theme-light-pick);
}

@keyframes push {
    0% {
        transform: translate(-50%, 100%) scale(1);
    }
    15%,
    25% {
        transform: translate(-50%, 50%) scale(1);
    }
    50%,
    75% {
        transform: translate(-50%, -30%) scale(0.5);
    }
    80%,
    100% {
        transform: translate(-50%, -50%) scale(0);
    }
}

/* #preloader {
    width: 100%;
    height: 100%;
    position: fixed;
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(var(--theme-secondary-color)),
        to(var(--theme-primary-color))
    );
    background-image: linear-gradient(
        var(--theme-secondary-color),
        var(--theme-primary-color)
    );
    top: 0;
    left: 0;
    z-index: 99999;
}

#preloader .lds-ripple {
    position: relative;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#preloader .lds-ripple div {
    position: absolute;
    border: 2px solid var(--white);
    opacity: 1;
    border-radius: 0px;
    -webkit-animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader .lds-ripple div:nth-child(2) {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

@-webkit-keyframes lds-ripple {
    0% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: -1px;
        left: -1px;
        width: 58px;
        height: 58px;
        opacity: 0;
    }
}

@keyframes lds-ripple {
    0% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: -1px;
        left: -1px;
        width: 58px;
        height: 58px;
        opacity: 0;
    }
} */

.get-started-btn {
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
    background: var(--white);
    box-shadow: 1px 1px 1px 0 #edebeb;
}

/*#header.header-scrolled, #header.header-inner-pages {*/
/*    background: var(--white);*/
/*    padding: 15px 0;*/
/*    box-shadow: 0px 2px 15px rgb(30 29 29 / 28%);*/
/*}*/

#header .home_back_btn-box {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: 150px;
    display: flex;
    align-items: center;
}

/* #header .logo {
    width: 40px;
} */
#header .logo a {
    color: var(--white);
}

#header .logo img {
    width: 165px;
}

.page-offer {
    background: var(--theme-primary-color);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar > ul > li {
    padding: 0px;
    margin: 0px 7px;
}

.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 3px;
    color: #141417;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    font-size: 16px;
    font-family: "Oxygen", sans-serif;
    font-weight: 700;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: var(--theme-most-color);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 10px;
    top: calc(100% + 30px);
    margin: 0;
    border-radius: 10px;
    padding: 10px 0;
    z-index: 103;
    opacity: 0;
    visibility: hidden;
    background: var(--white);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}
.navbar .dropdown ul:before {
    font-family: "FontAwesome";
    content: "\f0d8";
    position: absolute;
    top: -15px;
    left: 10px;
    right: auto;
    font-size: 22px;
    color: #fff;
    transition: top 0.35s ease;
}

.navbar .dropdown ul li {
    /*min-width: 200px;*/
    padding: 0 10px;
    margin: 4px 0px;
}
.navbar .dropdown ul li:last-child {
    margin-bottom:0px;
}

.navbar .dropdown ul a {
    font-size: 14px;
    padding: 3px 10px;
    color: #141417;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    font-weight: 500;
    border-radius: 7px;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    color: var(--white);
    background: var(--theme-primary-color);
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 35px;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: var(--dark);
    font-size: 17px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.header-scrolled .mobile-nav-toggle,
.inner-header .mobile-nav-toggle {
    color: var(--dark);
}

.contact-btn {
    display: none !important;
}

@media (max-width: 991px) {
    #header.header-scrolled, #header.header-inner-pages {
        background: var(--white);
        box-shadow: 0px 1px 4px rgb(30 29 29 / 28%);
    }
    #header {
        background: var(--white);
    }

    .header-menu-box {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1030;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }

    .get-started-btn.scrollto {
        display: none;
    }

    .contact-btn {
        display: block !important;
    }
}

.navbar-mobile {
    /* backdrop-filter: blur(10px); */
    /* background: rgb(219 219 219 / 58%); */
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 35px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 68px;
    /* left: 0; */
    width: 100%;
    max-height: 490px;
    bottom: 0px;
    right: 0px;
    padding: 10px 0;
    overflow-y: auto;
    transition: 0.3s;
    background: rgb(241 45 93);
    border-radius: 0px 0px 25px 25px;
    box-shadow: 0px 5px 2px -2px #893348;
    /*animation: scaleY 300ms ease-in-out forwards;*/
    /*animation: myAnim 1s ease 0s 1 normal forwards;*/
}
.navbar-mobile .dropdown ul:before {
    display: none;
}
@keyframes scaleY {
    0% {
        opacity: 0;
        transform: scaleY(0);
    }

    80% {
        transform: scaleY(1.07);
    }

    100% {
        opacity: 1;
        transform: scaleY(1);
    }
}
.navbar-mobile > ul > li {
    padding: 0;
    margin: 0px 20px;
}

.navbar-mobile a, .navbar-mobile a:focus {
    padding: 7px;
    font-size: 15px;
    color: var(--white);
    margin: 4px;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
    visibility: hidden;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: #ffffff;
    transform: translate(15px, 0px);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: block;
    margin-left: 20px;
    padding: 0px ;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: transparent;
    box-shadow: initial;
    border-radius: inherit;
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 5px;
    margin: 2px;
    color: var(--white);
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
    color: #fff;
    transform: translate(10px, 0px);
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

.cta-btn {
    display: inline-block;
    color: var(--white);
    padding: 15px 30px;
    line-height: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    text-transform: capitalize;
    position: relative;
    cursor: pointer;
    border-radius: 35px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    background-color: var(--theme-primary-color);
    margin-bottom: -6px;
}

.cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--theme-secondary-color);
    z-index: -1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border-radius: 4px 0 0;
}

.cta-btn::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: var(--theme-secondary-color);
    z-index: -1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border-radius: 0 0 4px;
}

.cta-btn:hover::before {
    width: 50.2%;
}

.cta-btn:hover::after {
    width: 50.2%;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    padding: 40px 0px 220px;
    background-image: linear-gradient(40deg, #fff6ea 0%, #fff2f2 100%);
    position: relative;
    margin-bottom: -220px;
    z-index: 99;
    transition: 0.3s;
}

#hero:before {
    content: "";
    background-image: linear-gradient(40deg, #fff6ea 0%, #fff2f2 100%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .container,
#hero .container-fluid {
    padding-top: 1em;
}

#hero .shape .shape-1 {
    width: 688px;
    height: 757px;
    background-repeat: no-repeat;
    top: 0px;
    right: 0px;
}

#hero .shape .shape-2 {
    width: 624px;
    height: 621px;
    background-repeat: no-repeat;
    top: 0px;
    right: 0px;
}

#hero .shape .shape-3 {
    left: -100px;
    bottom: 0px;
    width: 230px;
    height: 240px;
    background-repeat: no-repeat;
    -webkit-animation: zoom-fade 8s infinite linear;
    animation: zoom-fade 8s infinite linear;
}

#hero .shape .shape-4 {
    left: 55%;
    top: 110px;
    width: 230px;
    height: 240px;
    background-repeat: no-repeat;
    -webkit-animation: zoom-fade 9s infinite linear;
    animation: zoom-fade 9s infinite linear;
}

#hero .shape .shape-5 {
    bottom: 170px;
    right: 230px;
    width: 230px;
    height: 240px;
    background-repeat: no-repeat;
    z-index: -1;
}

#hero .shape .shape-6 {
    width: 40px;
    height: 40px;
    left: 80px;
    bottom: 0px;
    background: var(--light-yellow);
    border-radius: 50%;
    -webkit-animation: zoom-fade-two 5s infinite linear;
    animation: zoom-fade-two 5s infinite linear;
}

#hero .shape .shape-7 {
    left: 225px;
    top: 130px;
    background: #f9f5fc;
    border-radius: 50%;
    width: 300px;
    height: 300px;
    -webkit-animation: zoom-fade 5s infinite linear;
    animation: zoom-fade 5s infinite linear;
    z-index: -1;
}

#hero .shape .shape-8 {
    width: 80px;
    height: 80px;
    left: 94%;
    top: 9px;
    background: rgb(209 204 205 / 22%);
    border-radius: 50%;
    -webkit-animation: zoom-fade-two 6s infinite linear;
    animation: zoom-fade-two 6s infinite linear;
}

#hero .shape .shape-9 {
    height: 100px;
    width: 100px;
    right: 200px;
    bottom: 200px;
    border: 13px solid #67e7fa;
    border-radius: 50%;
    -webkit-animation: zoom-fade 5s infinite linear;
    animation: zoom-fade 5s infinite linear;
}

#hero .shape .shape-10 {
    top: -391px;
    left: -273px;
    width: 558px;
    height: 590px;
    border-radius: 50%;
    background: rgb(255 255 255 / 52%);
    -webkit-animation: zoom-fade 5s infinite linear;
    animation: zoom-fade 5s infinite linear;
    display: none;
}

#hero .shape .shape-11 {
    top: 400px;
    right: -150px;
    width: 590px;
    height: 590px;
    border-radius: 50%;
    background: rgb(255 255 255 / 52%);
    -webkit-animation: zoom-fade 5s infinite linear;
    animation: zoom-fade 5s infinite linear;
}

#hero .shape .shape-12 {
    top: 235px;
    right: 335px;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    background: rgb(255 222 222 / 23%);
    -webkit-animation: zoom-fade-two 6s infinite linear;
    animation: zoom-fade-two 6s infinite linear;
}

/*@-webkit-keyframes zoom-fade {*/
/*    0% {*/
/*        -webkit-transform: scale(0.9);*/
/*        transform: scale(0.9);*/
/*    }*/

/*    50% {*/
/*        -webkit-transform: scale(1);*/
/*        transform: scale(1);*/
/*    }*/

/*    100% {*/
/*        -webkit-transform: scale(0.9);*/
/*        transform: scale(0.9);*/
/*    }*/
/*}*/

/* zoom-fade  */
/*@keyframes zoom-fade {*/
/*    0% {*/
/*        -webkit-transform: scale(0.9);*/
/*        transform: scale(0.9);*/
/*    }*/

/*    50% {*/
/*        -webkit-transform: scale(1);*/
/*        transform: scale(1);*/
/*    }*/

/*    100% {*/
/*        -webkit-transform: scale(0.9);*/
/*        transform: scale(0.9);*/
/*    }*/
/*}*/

/* zoom-fade-two  */
/*@-webkit-keyframes zoom-fade-two {*/
/*    0% {*/
/*        -webkit-transform: scale(1.5);*/
/*        transform: scale(1.5);*/
/*    }*/

/*    50% {*/
/*        -webkit-transform: scale(1);*/
/*        transform: scale(1);*/
/*    }*/

/*    100% {*/
/*        -webkit-transform: scale(1.5);*/
/*        transform: scale(1.5);*/
/*    }*/
/*}*/

/*@keyframes zoom-fade-two {*/
/*    0% {*/
/*        -webkit-transform: scale(1.5);*/
/*        transform: scale(1.5);*/
/*    }*/

/*    50% {*/
/*        -webkit-transform: scale(1);*/
/*        transform: scale(1);*/
/*    }*/

/*    100% {*/
/*        -webkit-transform: scale(1.5);*/
/*        transform: scale(1.5);*/
/*    }*/
/*}*/

/*@-webkit-keyframes slideInDown {*/
/*    0% {*/
/*        -webkit-transform: translate3d(0, -100%, 0);*/
/*        transform: translate3d(0, -100%, 0);*/
/*        visibility: visible;*/
/*    }*/

/*    100% {*/
/*        -webkit-transform: translate3d(0, 0, 0);*/
/*        transform: translate3d(0, 0, 0);*/
/*    }*/
/*}*/

/*@keyframes slideInDown {*/
/*    0% {*/
/*        -webkit-transform: translate3d(0, -100%, 0);*/
/*        transform: translate3d(0, -100%, 0);*/
/*        visibility: visible;*/
/*    }*/

/*    100% {*/
/*        -webkit-transform: translate3d(0, 0, 0);*/
/*        transform: translate3d(0, 0, 0);*/
/*    }*/
/*}*/

/*.slideInDown {*/
/*    -webkit-animation-name: slideInDown;*/
/*    animation-name: slideInDown;*/
/*}*/

/*@-webkit-keyframes slideInLeft {*/
/*    0% {*/
/*        -webkit-transform: translate3d(-100%, 0, 0);*/
/*        transform: translate3d(-100%, 0, 0);*/
/*        visibility: visible;*/
/*    }*/

/*    100% {*/
/*        -webkit-transform: translate3d(0, 0, 0);*/
/*        transform: translate3d(0, 0, 0);*/
/*    }*/
/*}*/

#hero .hero-title {
    padding: 1em;
    /*color: var(--white);*/
    z-index: 6;
}

#hero .hero-title h1 {
    margin-bottom: 25px;
    margin-top: 0px;
    /*color: var(--white);*/
}

.buttons a {
    background: #f2295b;
    color: #fff;
    transition: 0.5s;
    margin-bottom: 11px;
}
.buttons a:hover {
    background: #ffaa48;
    color: #000;
    transform: scale(1.1);
    transition: 0.5s;

}


/* form */


.over-all-top-box {
    position: relative;
    z-index: 100;
    overflow: inherit;
}

.search-tab-box {
    display: flex;
    justify-content: center;
    border: none;
}

.search-tab-box li {
    width: 120px;
    margin: 10px;
    text-align: center;
}

.search-tab-box li p {
    font-size: 13px;
    margin-top: 5px;
}

.search-tab-box a {
    text-align: center;
    background: var(--theme-secondary-color) !important;
    color: var(--white) !important;
    padding: 15px 20px;
    transition: 0.5s;
    font-size: 40px;
    line-height: 2;
    border-radius: 20px !important;
}

.search-tab-box a.active {
    background: var(--theme-primary-color) !important;
}


.search-input-box .input-group {
    border: 2px solid #d9d9d9;
    border-radius: 5px;
    width: 50%;
    margin: auto;
}

.search-input-box input {
    border: none;
    box-shadow: none;
    min-width: auto;
    margin-bottom: 0;
    padding-left: 10px;
    border-radius: inherit;
    color: #2e2e2e;
    line-height: 1;
    height: 50px;
    font-size: 13px !important;
}

.search-input-box span {
    background: #fff;
    color: var(--theme-secondary-color);
    border: none;
}

.search-input-box .form-control:focus {
    box-shadow: none;
}

.search-input-box .input-group:hover {
    border: 2px solid var(--theme-secondary-color);
}

.search-input-box .search-btn {
    font-size: 12px !important;
    padding: 12px 15px !important;
    border-radius: 5px;
}

@media (max-width: 767px) {

    .search-input-box .input-group {
        width: 100%;
    }
    .search-tab-box li {
        width: 80px;
        margin: 10px;
        text-align: center;
    }
    .search-tab-box a {
        padding: 15px;
        font-size: 25px;
    }
}



/*counter */
.stats-counter {
    background: #f8fcfa;
    overflow: hidden;
}

.stats-item span {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.4em;
    position: relative;
}
.stats-item span:before {
    position: absolute;
    content: "+";
    top: 0px;
    right: -15px;
    font-size: 20px;
}
.stats-item span.not-plus:before {
    content: "$";
}

@media (max-width: 991px) {
    #hero {
        text-align: center;
        padding: 65px 0px 220px;
    }

    #hero .animated {
        -webkit-animation: none;
        animation: none;
    }

    #hero .hero-img {
        text-align: center;
    }

    #hero .hero-img img {
        width: 50%;
    }
}

@media (max-width: 768px) {

    #hero .hero-title {
        padding: 50px 0px;
    }

}

@media only screen and (max-width: 992px) and (min-width: 768px) {
    #hero .hero-title {
        padding: 0px;
    }
}

@media only screen and (max-width: 767px) and (min-width: 200px) {


    #hero .hero-title h1 {
        font-size: 35px;
        margin-top: 0px;
    }

    #hero .shape .shape-3,
    #hero .shape .shape-6,
    #hero .shape .shape-7,
    #hero .shape .shape-8 {
        display: none;
    }
}

/*@-webkit-keyframes up-down {*/
/*    0% {*/
/*        transform: translateY(10px);*/
/*    }*/

/*    100% {*/
/*        transform: translateY(-10px);*/
/*    }*/
/*}*/

/*@keyframes up-down {*/
/*    0% {*/
/*        transform: translateY(10px);*/
/*    }*/

/*    100% {*/
/*        transform: translateY(-10px);*/
/*    }*/
/*}*/

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background: #FFF2F2;
}
.section-bg1 {
    background: #FFF6EA;
}

.sec-title-ten .sub-title {
    background: #e9e3f6;
    border-radius: 25px;
    color: var(--theme-most-color);
    text-transform: uppercase;
    padding: 0 20px;
    margin-bottom: 20px;
    line-height: 30px;
    font-weight: 500;
    font-size: var(--font-16-size);
    display: inline-block;
    font-family: var(--font-family-head);
}

.sec-title-ten h2 {
    margin-bottom: 15px;
}

/* +++===== About Us =====+++ */
.about-img-box {
    margin: 0px 6em;
}

.about-img-box .shape .shape-1 {
    left: -30px;
    width: 230px;
    height: 240px;
    top: 0;
    background-repeat: no-repeat;
    -webkit-animation: zoom-fade 7s infinite linear;
    animation: zoom-fade 7s infinite linear;
}

.about-img-box .shape .shape-2 {
    right: 0px;
    bottom: 160px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    border: 13px solid #fab567;
    -webkit-animation: zoom-fade-two 5s infinite linear;
    animation: zoom-fade-two 5s infinite linear;
}

.about-img-box .image:before {
    position: absolute;
    content: "";
    background: #f4f0fa;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

@media only screen and (max-width: 767px) and (min-width: 200px) {
    .about-img-box {
        margin: auto;
    }

    .image img {
        width: 100%;
    }

    .about-text-box {
        text-align: center;
    }

    .satisfaction-box .sec-title-ten {
        text-align: center;
    }
}

/* ======Aobut Us End====== */


/* Are You Curious About Making Use Of The TikTok Likes Generator App?
 */
.curious-list {
    padding: 35px;
    background: var(--white);
    border-radius: 10px;
    transition: 0.5s;
    box-shadow: 0 2px 6px 0 rgb(67 89 113 / 12%);
    overflow: hidden;
}

.curious-list:hover {
    box-shadow: 0 0 40px rgb(0 0 0 / 10%);
    transition: 0.5s;
    transform: translate(0px, -10px);
}

.curious-list h3 {
    margin-top: 15px;
}

.text-sub {
    position: absolute;
    top: -5px;
    right: 15px;
    background: #ffe8f0;
    border-radius: 0px 0px 25px 25px;
    padding: 0px 12px 1px;
    line-height: 2;
    box-shadow: 0px 1px 1px 0px #d1cdcd;
}

.text-sub span {
    padding: 2px 5px;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
}

.curious-about-box .curious-list .step-one {
    background: var(--theme-primary-color);
}

.curious-about-box .curious-list .step-two {
    background: var(--theme-secondary-color);
}

.curious-about-box .curious-list .step-three {
    background: var(--theme-primary-color);
}

.curious-about-box .curious-list .step-four {
    background: var(--theme-secondary-color);
}

/* Why Should You Opt For TikTok Likes Generator Over Various Other Competitors?
 */

.over-various-box {
    background: #FFF6EA;
}


.over-various-box .shape-1 {
    left: 41%;
    top: 20%;
    width: 230px;
    height: 240px;
    background-repeat: no-repeat;
    -webkit-animation: zoom-fade 5s infinite linear;
    animation: zoom-fade 5s infinite linear;
}

.over-various-box .shape-2 {
    left: 41%;
    top: 55%;
    width: 230px;
    height: 240px;
    background-repeat: no-repeat;
    -webkit-animation: zoom-fade 5s infinite linear;
    animation: zoom-fade 5s infinite linear;
}

.over-various-box .various-text-box {
    background: var(--white);
    box-shadow: 0 0 40px rgb(0 0 0 / 10%);
    border-radius: 10px;
    padding: 50px;
    padding-left: 150px;
    text-align: left;
    margin: 10px 0;
}

.over-various-box .various-text-box .inner-box .icon-box {
    background: #fff6ea;
    left: -100px;
    top: 0px;
    width: 65px;
    height: 65px;
    font-size: 30px;
    display: flex;
    border-radius: 50%;
    text-align: center;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
}

.over-various-box .various-text-box .inner-box .icon-box i {
    background: -webkit-linear-gradient(
        45deg,
        var(--theme-primary-color) 40%,
        var(--theme-secondary-color) 60%
    );
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.over-various-box .various-text-box:hover {
    box-shadow: 0 10px 50px rgb(0 0 0 / 20%);
}

.over-various-box .various-text-box:hover .icon-box {
    background: var(--theme-primary-color);
    transition: all 500ms ease-in-out;
}

.over-various-box .various-text-box:hover .icon-box i {
    background: #fff;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 992px) and (min-width: 200px) {
    .over-various-box .various-text-box {
        padding: 50px;
        padding-left: 50px;
    }

    .over-various-box .various-text-box .inner-box .icon-box {
        left: inherit;
        top: -20px;
        position: inherit;
    }
}


.satisfaction-box .satisfaction-img-box {
    margin-right: 65px;
    margin-left: 100px;
}


.satisfaction-box .inner-box {
    width: 95%;
    margin: auto;
}

.satisfaction-box .inner-box .single-item {
    padding: 0px 0px 0px 100px;
    margin: 0px 0px;
}

.satisfaction-box .inner-box .single-item .icon-box {
    background: #FBF8F1;
    color: var(--theme-secondary-color);
    left: -75px;
    top: 45px;
    width: 50px;
    height: 50px;
    font-size: 24px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f5e3e3;
}

.satisfaction-box .inner-box .single-item .icon-box i {
    background: #f13262;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.satisfaction-box .inner-box .single-item .icon-box .shape {
    left: 50%;
    top: 60px;
    transform: translateX(-50%);
    width: 1px;
    height: 145px;
    border: 1px rgb(255 190 206) dashed;
}


.satisfaction-box .inner-box .single-item .text-box {
    position: relative;
    z-index: 1;
}

.satisfaction-box .satisfaction-img-box .shape .shape-1 {
    right: -50px;
    top: 188px;
    width: 531px;
    height: 387px;
    background-repeat: no-repeat;
}

.satisfaction-box .satisfaction-img-box .shape .shape-2 {
    top: 150px;
    right: 0px;
    width: 230px;
    height: 240px;
    background-repeat: no-repeat;
    -webkit-animation: zoom-fade 5s infinite linear;
    animation: zoom-fade 5s infinite linear;
}

.satisfaction-box .satisfaction-img-box .shape .shape-3 {
    left: 50px;
    top: 120px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 5px solid var(--theme-primary-color);
    -webkit-animation: zoom-fade-two 5s infinite linear;
    animation: zoom-fade-two 5s infinite linear;
}

@media only screen and (max-width: 767px) and (min-width: 200px) {
    .satisfaction-box .sec-title-ten {
        text-align: center;
    }

    .satisfaction-box .inner-box .single-item .icon-box {
        left: -60px;
    }

    .satisfaction-box .inner-box .single-item {
        padding: 0px 0px 0px 55px;
        margin: -40px 0px;
    }

    .satisfaction-box .satisfaction-img-box .image img {
        width: 50%;
    }

    .satisfaction-box .satisfaction-img-box {
        margin-right: auto;
        margin-left: auto;
        margin-top: 3em;
    }

    .faq .image-box {
        display: block;
        margin: auto;

    }
}

/*--------------------------------------------------------------
# Why TikTok Likes Genertor Over Anything? Why Choose This Free TikTok Likes Generator?
--------------------------------------------------------------*/

.why-choose-box {
    background:  #FFF2F2;
    background-size: contain;
}

.why-choose-box .choose-list .choose-item {
    padding: 50px;
    border-radius: 25px;
    box-shadow: rgb(0 0 0 / 10%) 0px 1px 3px 0px,
    rgb(0 0 0 / 6%) 0px 1px 2px 0px;
    overflow: hidden;
    background: #FFFFFF;
}

.why-choose-box .choose-list .choose-item .choose-pattern {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 71px;
    height: 58px;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 500ms ease;
}

.why-choose-box .choose-list .choose-item:hover .choose-pattern {
    right: 0px;
    bottom: 0px;
    opacity: 1;
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
    /*background: #FFF2F2;*/
    overflow: hidden;
}

.faq .image-box {
    display: block;
    margin: auto 50px;
}

.faq .image-box .shape .shape-1 {
    top: 0px;
    right: -30px;
    width: 230px;
    height: 240px;
    background-repeat: no-repeat;
    -webkit-animation: zoom-fade 5s infinite linear;
    animation: zoom-fade 5s infinite linear;
}

.faq .image-box .shape .shape-2 {
    left: 60px;
    top: 10px;
    border: 5px solid var(--theme-secondary-color);
    z-index: 2;
    border-radius: 50%;
    height: 100px;
    width: 100px;
    -webkit-animation: zoom-fade 5s infinite linear;
    animation: zoom-fade 5s infinite linear;
    z-index: 0;
}

.faq .image-box .shape .shape-3 {
    left: -50px;
    top: 0px;
    width: 590px;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
}

/*.faq .image-box .image:before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: 50%;*/
/*    top: 56.1%;*/
/*    transform: translate(-50%, -50%);*/
/*    width: 500px;*/
/*    height: 500px;*/
/*    background: -webkit-linear-gradient(45deg, var(--theme-primary-color) 0%, var(--theme-secondary-color) 100%);*/
/*    border-radius: 50%;*/
/*    z-index: 0;*/
/*}*/

.faq .faq-list ul, .faq .faq-list2 ul {
    padding: 0;
    list-style: none;
    margin: auto;
}

.faq .faq-list li + li, .faq .faq-list2 li + li  {
    margin-top: 15px;
}

.faq .faq-list li, .faq .faq-list2 li {
    padding: 20px;
    background: var(--white);
    position: relative;
    border-radius: 10px;
    box-shadow: 0 2px 6px 0 rgb(67 89 113 / 12%);
}

ul.faq-inner-page-list li {
    padding: 0px !important;
    background: initial !important;
    position: relative;
    border-radius: inherit !important;
    margin-left: 30px;
    list-style: disc;
    margin-top: 0px !important;
    box-shadow: none !important;
}

.faq .faq-list h3, .faq .faq-list2 h3 {
    display: block;
    position: relative;
    padding: 0 30px 0px 0px;
    outline: none;
    cursor: pointer;
    color: var(--theme-primary-color);
    font-family: var(--font-family-head);
    font-size: 20px;
    margin: 0px;
}

.faq .faq-list .icon-help, .faq .faq-list2 .icon-help {
    font-size: 24px;
    position: absolute;
    color: var(--light-dark);
    display: flex;
    justify-content: flex-start;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close,
.faq .faq-list2 .icon-show,
.faq .faq-list2 .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.faq .faq-list p, .faq .faq-list2 p {
    margin-bottom: 0;
    padding: 20px 0 0 0;
}

.faq .faq-list .icon-show, .faq .faq-list2 .icon-show {
    display: none;
}

.faq .faq-list h3.collapsed, .faq .faq-list2 h3.collapsed {
    color: var(--heading-text-color);
}

.faq .faq-list h3.collapsed:hover, .faq .faq-list2 h3.collapsed:hover {
    color: var(--theme-primary-color);
}

.faq .faq-list h3.collapsed .icon-show, .faq .faq-list2 h3.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list h3.collapsed .icon-close, .faq .faq-list2 h3.collapsed .icon-close {
    display: none;
}
.faq .image img {
    width: 65%;
}

@media only screen and (max-width: 992px) and (min-width: 200px) {
    .faq .faq-list ul {
        width: auto;
    }
}

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}

@media only screen and (max-width: 992px) and (min-width: 200px) {
    .text-box {
        margin-bottom: 30px;
    }

    .faq .image-box {
        display: block;
        margin: auto;
        margin-right: auto;
        margin-left: auto;
    }

    .faq .image-box img {
        width: 40%;
    }

    .faq .image-box .shape .shape-3 {
        left: 80px;
        top: 0px;
        width: 585px;
    }
}

@media only screen and (max-width: 767px) and (min-width: 200px) {
    .faq .image-box .image:before {
        top: 48.1%;
        width: 400px;
        height: 400px;
    }

    .faq .image-box img {
        width: 65%;
    }

    .faq .image-box .shape .shape-3 {
        left: -50px;
        top: 30px;
        width: 501px;
    }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials {
    background-repeat: repeat;
    overflow: hidden;
}

.testimonials .image-box {
    display: block;
}

.testimonials .image-box .shape .shape-1 {
    top: 0px;
    right: -30px;
    width: 230px;
    height: 240px;
    background-repeat: no-repeat;
    -webkit-animation: zoom-fade 5s infinite linear;
    animation: zoom-fade 5s infinite linear;
    z-index: 0;
}

.testimonials .image-box .shape .shape-2 {
    left: 0px;
    bottom: 0px;
    top: 0;
    border: 2px dashed var(--theme-primary-color);
    z-index: 0;
    border-radius: 50%;
    height: 100px;
    width: 100px;
    -webkit-animation: zoom-fade 5s infinite linear;
    animation: zoom-fade 5s infinite linear;
}


.testimonials .image-box .shape .shape-3 {
    left: 0px;
    bottom: 0px;
    top: 0;
    background: var(--theme-most-color);
    z-index: 0;
    border-radius: 50%;
    height: 200px;
    width: 200px;
    -webkit-animation: zoom-fade 5s infinite linear;
    animation: zoom-fade 5s infinite linear;
}

/*.testimonials .testimonials-carousel,*/
/*.testimonials .testimonials-slider {*/
/*    overflow: hidden;*/
/*}*/


.testimonial-img-text {
    position: relative;
    margin-top: 15px;
    display: flex;
    align-items: center;
    margin-left: 2em;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    border: 6px solid var(--white);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}
.testimonials .testimonial-item .testimonial-uname {
    margin-left: 1em;
}

.testimonials .testimonial-item .testimonial-uname p {
    font-weight: bold;
    color: var(--heading-text-color);
}
.testimonials .testimonial-item .rating i {
    color: var(--theme-secondary-color);
    font-size: 14px;
}

.slick-prev:before, .slick-next:before {
    color: #333 !important;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #f2f2f2;
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    /* display: inline-block; */
    left: 15px;
    position: absolute;
    top: 10px;
    font-size: 100px;
    z-index: -1;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: -webkit-linear-gradient(45deg, #f2295b 40%, #ffaa48 60%);
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonial-item {
    padding: 20px;
}

.testimonials .testimonial-item .testimonial-utext {
    text-align: justify;
    margin: 0 15px 0 15px;
    padding: 40px;
    background: var(--white);
    position: relative;
    z-index: 1;
    /* min-height: 300px; */
    box-shadow: 0px 10px 15px rgb(0 0 0 / 10%);
    border-radius: 10px 10px 10px 0px;
}

.testimonials .testimonial-item .testimonial-utext::before {
    position: absolute;
    content: "";
    background: var(--white);
    width: 30px;
    height: 30px;
    left: 0px;
    bottom: -28px;
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%, 0% 0%);
    box-shadow: 0px 10px 15px rgb(0 0 0 / 10%);
}

@media (max-width: 990px) {
    .testimonials .testimonials-slider .slick-next {
        right: 0px !important;
    }

}
@media (max-width: 767px) {

    .testimonials .sec-title-ten {
        margin: auto;
    }
    .testimonials .testimonial-item .testimonial-utext {
        text-align: justify;
        margin: 10px;
        padding: 20px;
    }
}

.writing-needs-box {
    background: #FFF6EA;
    overflow: hidden;
}

/*footer-section */
#footer {
    color: #fff;
    background:  hsl(240deg 2.65% 10.74%);
    background-size: cover;
    padding: 60px 0px 15px;
    position: relative;

}

.footer-contact {
    padding-right: 6em;
}

.footer-links ul li {
    display: inline-block;
    border-right: 1px solid #666666;
    padding-right: 20px;
    margin: 8px 22px 8px 0px;
}

.footer-links ul li:last-child {
    border-right: none;
}
.footer-login a:hover {
    background: var(--theme-secondary-color) !important;
    color: #000 !important;
}

#footer .footer-top .footer-links ul a {
    color: #686868;
    transition: 0.5s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: var(--theme-most-color);
    transition: 0.5s;
}

@media only screen and (max-width: 767px) and (min-width: 200px) {
    .footer-contact {
        padding-right: initial;
    }

    .footer-contact img {
        width: 60%;
    }

    .footer-contact p {
        margin-left: 0px !important;
    }
}

/* ====================== inner pages ===================== */


.breadcrumbs-box {
    overflow: hidden;
    position: relative;
    padding: 4em 20px;
    background-image: linear-gradient(40deg, #fff6ea 0%, #fff2f2 100%);
    background-size: 116% 157%;
    /* margin-top: 4em; */
}

@media only screen and (max-width: 992px) and (min-width: 200px) {
    .breadcrumbs-box {
        padding: 2em  20px;
    }
}

/* =========== inner about pages ============ */


/*  */
.contact-over-box {
    margin: auto;
    width: 100%;
    max-width: 650px;
    padding: 40px;
    border: 1px solid rgb(247 223 195);
    border-radius: 20px;
    background-color: #fdfaf6;
}

.contact-over-box .card {
    border: none;
    box-shadow: none;
    background: no-repeat;
}

.contact-over-box .card-body .form-control {
    border: 1px solid var(--white);
    font-size: var(--font-16-size);
    border-radius: 5px;
    padding: 10px 20px;
    box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 7%);
}

.contact-over-box .card-body .input-group-text {
    background: #fff;
    border: 1px solid var(--white);
    font-size: var(--font-16-size);
    border-radius: 5px;
    padding: 10px 20px;
    box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 7%);
}


@media only screen and (max-width: 992px) and (min-width: 200px) {
    .contact-over-box {
        width: auto;
        margin: auto;
    }

    .contact-over-box .card-body {
        padding: 2em;
    }
}

.blog-post-list-box .card a {
    color: #000;
}
.blog-post-list-box .card:hover {
    background: -webkit-linear-gradient(45deg, var(--theme-primary-color) 0%, var(--theme-secondary-color) 100%) !important;
    color: #fff;
}
.blog-post-list-box .card:hover a {
    color: #fff;
}
.blog-post-list-box .card-title {
    display: -webkit-box!important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 10px 0;
}
.blog-post-list-box .card-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-post-list-box .avatar {
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border-radius: 0.75rem;
    height: 48px;
    width: 48px;
    transition: all .2s ease-in-out;
}
.blog-category {
    background-clip: text;
    font-weight: 600;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
    background-image: linear-gradient(310deg, var(--theme-primary-color), var(--theme-secondary-color));
}
.blog-post-list-box .card:hover .blog-category {
    color: #fff;
    -webkit-text-fill-color: inherit;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
    padding: 20px;
    background: #fff;
    text-align: left;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    transition: 0.5s;
    margin: 15px;
}
.pricing .box:hover {
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
    transform: translate(0px, -10px);
    transition: 0.5s;
}

.price {
    font-size: 20px !important;
    font-weight: 600 !important;
    font-family: var(--font-family-head);
    line-height: 1.6em !important;
    color:#000000;
}

.price1 {
    font-family: var(--font-family-head);
    font-size: 25px;
    color: var(--theme-primary-color);
    margin: 15px 0px;
    font-weight: 600;
}

.pricing .box:before {
    position: absolute;
    content: "";
    top: 0;
    right: -34px;
    width: 45px;
    height: 45px;
    background: var(--theme-primary-color);
    opacity: 0.2;
    border-radius: 8px;
    transform: rotate(45deg);
}
.pricing .box:after {
    position: absolute;
    content: "";
    top: 20px;
    right: -35px;
    width: 45px;
    height: 45px;
    background: var(--theme-secondary-color);
    opacity: 0.2;
    border-radius: 8px;
    transform: rotate(45deg);
}

.pricing h3 {
    /* padding: 20px 15px; */
    color: #333;
}

.pricing h4 {
    color: var(--theme-primary-color);
    margin: 20px 0px;
    font-weight: 600;
}

.pricing h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}


.pricing ul {
    padding: 0;
    list-style: none;
    text-align: left;
    line-height: 20px;
    font-size: 14px;
    margin: 0px;
}

.pricing ul li {
    padding-bottom: 16px;
}

.pricing ul i {
    color: #009cea;
    font-size: 18px;
    padding-right: 4px;
}


.pricing .btn-wrap {
    padding: 10px 0px;
    /* text-align: center; */
}

.pricing .btn-buy {
    background: #009cea;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing .featured {
    background: #009cea;
    border-color: #009cea;
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na {
    color: #fff;
}

.pricing .featured .btn-buy {
    background: #fff;
    color: #009cea;
}

.pricing .advanced {
    width: 100px;
    position: absolute;
    top: 17px;
    right: -5px;
    transform: rotate(0deg);
    z-index: 1;
    font-size: 12px;
    padding: 1px 10px 0px 6px;
    background: #f12a5b;
    color: #fff;
    border-radius: 7px;
}
.plugin-rating.rating {
    color: #fcbf14;
}

.pricing .slick-prev {
    left: -25px;
}
.g-recaptcha {
    transform: scale(0.77);
    -webkit-transform: scale(0.77);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    transform: translate(8px, 10px) scale(0.77);
}

/*-drop-down*/
.select-btn {
    border: 2px solid #f2295b;
    padding: 10px;
    background: #fff2f2;
    color: #000;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.select-btn:hover, .select-btn.show {
    background: #e71a4d;
    color: #fff;
    border: 2px solid #eee;
}
.sort-down {
    border-left: 1px solid #f3c8c8;
    display: flex;
    width: 26px;
    padding-left: 10px;
    font-size: 17px;
    padding-bottom: 6px;
    height: 25px;
    color: #f3c8c8;
    align-items: center;
    justify-content: center;
}
.select-btn::after {
    display: none;
}

.select-drop-down ul {
    width: 100%;
}
.select-drop-down ul li {
    font-size: 14px;
}
.select-drop-down ul li a i {
    color: #e71a4d;
    font-size: 13px;
}
.select-drop-down ul li a:hover {
    background: #f2295b !important;
    color: #fff !important;
}
.select-drop-down ul li a:hover i {
    color: #fff !important;
}

.select-drop-down.two .select-btn {
    background: #fff6ea;
    color: #000;
    border: 2px solid #ffaa48;
}
.select-drop-down.two .select-btn:hover, .select-drop-down.two .select-btn.show {
    background: #ffaa48;
    color: #000;
    border: 2px solid #eee;
}

.select-drop-down.two.select-drop-down ul li a i {
    color: #ffaa48;
}
.select-drop-down.two.select-drop-down ul li a:hover {
    background: #ffaa48 !important;
    color: #000 !important;
}
.select-drop-down.two.select-drop-down ul li a:hover i {
    color: #000 !important;
}
.select-drop-down.two .sort-down {
    border-left: 1px solid #ffddb6;
    color: #ffddb6;
}
