/* ------------------------ add font family -------------------------------- */

@font-face {
    font-family: poppins-regular;
    src: url(../fonts/Poppins-Regular.ttf);
}

@font-face {
    font-family: poppins-medium;
    src: url(../fonts/Poppins-Medium.ttf);
}

@font-face {
    font-family: poppins-semibold;
    src: url(../fonts/Poppins-SemiBold.ttf);
}

@font-face {
    font-family: poppins-bold;
    src: url(../fonts/Poppins-Bold.ttf);
}

.poppins-regular {
    font-family: poppins-regular;
}

.poppins-medium {
    font-family: poppins-medium;
}

.poppins-semibold {
    font-family: poppins-semibold;
}

.poppins-bold {
    font-family: poppins-bold;
}


/* ------------------------ add font family -------------------------------- */


/* ------------------------ Variable Define -------------------------------- */

:root {
    --primary-color: #F5B7A2;
    --secondary-color: #C9EEDB;
    --dark-color: #1A1A1A;
    --white-color: #ffffff;
    --gray-color: #555555;
}


/* ------------------------ Variable Define -------------------------------- */


/* ------------------------------ scrollbar css ----------------------------- */

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 8px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
}


/* ------------------------------ scrollbar css ----------------------------- */

* {
    -webkit-font-smoothing: antialiased;
    -moz-os-font-smoothing: grayscale;
    padding: 0;
    margin: 0;
    outline: 0;
    box-sizing: border-box;
    vertical-align: baseline
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'poppins-regular';
    font-weight: 400;
    font-style: normal;
    outline: 0;
    overflow-x: hidden;
    color: var(--dark-color);
    background-color: #f9f9f9;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary {
    display: block
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    padding: 0;
    margin: 0
}

h1 {
    font-size: 45px;
    line-height: 65px;
}

h2 {
    font-size: 38px;
    line-height: 45px;
}

h3 {
    font-size: 32px;
    line-height: 40px;
}

h4 {
    font-size: 28px;
    line-height: 35px;
}

h5 {
    font-size: 25px;
    line-height: 32px;
}

h6 {
    font-size: 20px;
    line-height: 25px;
}

p,
li {
    font-size: 18px;
    line-height: 23px;
    /* text-align: justify; */
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

ul {
    list-style: none
}

a:hover,
a {
    text-decoration: none;
    color: #f29493;
}

button:focus {
    outline: 0 !important
}

.v-center {
    align-self: center;
    align-items: center
}

button {
    position: relative;
    overflow: hidden;
}

.lnk {
    position: relative;
    overflow: hidden
}

.animation,
.circle,
.circle2,
.clients-logo,
.custom-btn,
.dropdown-toggle,
.hoshd,
.hover-scale img,
.icon-set,
.isotope_item,
.link-hover,
.main-header,
.main-header.sticky,
.navbar,
.s-block,
.sticky,
.sub-menu-sec a,
button,
input {
    -webkit-transition: 1.2s cubic-bezier(.17, .85, .438, .99);
    -o-transition: 1.2s cubic-bezier(.17, .85, .438, .99);
    transition: 1.2s cubic-bezier(.17, .85, .438, .99)
}

.no-shadow {
    box-shadow: none !important
}

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

.secondary-text {
    color: var(--secondary-color);
}

.dark-text {
    color: var(--dark-color);
}

.gray-text {
    color: var(--gray-color);
}

.white-text {
    color: var(--white-color);
}



/* .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
} */

.dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    border-radius: 0;
    border: none;
    box-shadow: 0px 3px 6px #00000029;
    color: var(--secondary-color);
    padding: 0 !important;
    font-size: 20px;
}

.dropdown-menu li a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.nav-link:hover {
    color: var(--primary-color);
}

.btn:focus {
    outline: none !important;
    box-shadow: none
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    border-radius: 5px;
    /* border: 2px solid var(--white-color); */
    height: 55px;
    min-width: 210px;
    padding: 0 20px;
    font-size: 18px;
    font-family: 'poppins-semibold';
    position: relative;
    overflow: hidden;
}

.primary-btn {
    color: var(--dark-color) !important;
    border: 0;
    height: 55px;
    min-width: 280px;
    border-radius: 100px;
    background: transparent linear-gradient(282deg, #C9EEDB 0%, #C0F3E3 6%, #F5B6A2 95%, #F5B7A2 100%) 0% 0% no-repeat padding-box;
    font-family: poppins-medium;
}

.primary-btn:hover {
    /* background-color: rgba(111, 167, 66, 1);
    color: var(--white-color) !important; */

    box-shadow: 0px 2px 6px #0000001F;
}

.form-group {
    margin-bottom: 24px;
}

.input-label {
    margin-bottom: 10px;
}

.form-control {
    display: block;
    width: 100%;
    min-height: 50px;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 1.42857143;
    color: var(--dark-color) !important;
    background-color: var(--white-color);
    background-image: none;
    border: 0;
    border: 1px solid var(--gray-color);
    border-radius: 25px;
    /* background: #e6e6e699; */
}

.form-control:focus {
    border: 1px solid var(--primary-color);
    outline: 0;
    box-shadow: none;
}

.form-control::placeholder {
    color: var(--gray-color);
    opacity: 1;
}

.cursor {
    cursor: pointer;
}

.modal-close,
.modal-back {
    height: 20px;
}

.modal-content,
.card {
    border-radius: 10px;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url("../../assets/images/svg/down.svg") #e6e6e699 no-repeat 92.5% !important;
    height: 20px;
    width: 20px;
}

.checkbox-style {
    display: block;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkbox-style input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-style .checkmark {
    position: relative;
    height: 25px;
    width: 25px;
    background-color: var(--white-color);
    border: 2px solid var(--gray-color);
    border-radius: 5px;
}

.checkbox-style:hover input~.checkmark {
    background-color: var(--white-color);
}

.checkbox-style input:checked~.checkmark {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
}

.checkbox-style .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-style input:checked~.checkmark:after {
    display: block;
}

.checkbox-style .checkmark:after {
    left: 7.2px;
    top: 2px;
    width: 7px;
    height: 13px;
    border: solid var(--white-color);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.radio-style {
    display: block;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.radio-style input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-style .checkmark {
    position: relative;
    height: 25px;
    width: 25px;
    background-color: var(--white-color);
    border-radius: 50%;
    border: 2px solid var(--gray-color)
}

.radio-style input:checked~.checkmark {
    background-color: var(--white-color);
    border-color: var(--gray-color)
}

.radio-style .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    top: 4px;
    left: 4px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--gray-color);
}

.radio-style input:checked~.checkmark:after {
    display: block;
}




/* ------------------------------ header css ----------------------------- */
.navbar-nav-scroll {
    --bs-scroll-height: auto !important;
}

.c-header-bg {
    background: transparent linear-gradient(282deg, #C9EEDB 0%, #C0F3E3 6%, #F5B6A2 95%, #F5B7A2 100%) 0% 0% no-repeat padding-box;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.site-logo {
    max-width: 216px;
    width: 100%;
}

.navbar-light .navbar-toggler {
    border-color: unset;
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: unset;
}

.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link {
    color: var(--dark-color);
    font-size: 18px;
    font-family: poppins-medium;
    position: relative;
}

.nav-link.active:after,
.nav-link:hover:after {
    content: "";
    position: absolute;
    height: 4px;
    width: 100%;
    background-color: var(--dark-color);
    bottom: -28px;
    left: 0;
    border-radius: 100px;
}

li.nav-item {
    margin-left: 10px;
}

.header {
    position: fixed;
    width: 100%;
    z-index: 9;
    box-shadow: 0px 0px 5px 5px rgb(237 126 158 / 10%);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.nav-link img {
    width: 20px;
    margin-right: 10px;
}

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

/* ------------------------------ header css ----------------------------- */
/* ------------------------------ footer css ----------------------------- */
.footer {
    background-color: var(--dark-color);
    padding: 20px 0 30px 0;
}

.footer-img {
    margin-bottom: 20px;
}

.ftr-details li {
    padding: 0 0 15px 0;
}

.footer-address-list li {
    color: var(--white-color);
    display: flex;
    padding: 0 0 5px 0;
}

.footer-address-list li>span {
    position: relative;
    top: 0px;
}

.footer-address-list li i {
    margin: 0 15px 0 0;
    display: initial;
    font-size: 21px;
}

.footer-address-list li p {
    font-weight: 600;
    font-size: 18px;
    font-family: poppins-medium;
    line-height: 25px;
}

.footer-address-list li p span {
    display: flex;
    font-weight: 400;
    font-size: 15px;
}

.footer hr {
    color: var(--gray-color);
}

.text-max-width-280 {
    max-width: 280px;
    width: 100%;
}

.footer-social-media-icons a {
    margin-right: 20px;
    font-size: 20px;
}

.footer-img-border {
    margin-bottom: -10px;
    width: 100%;
}

.footer-right {
    text-align: end;
}

.footer-address-list li a {
    display: flex;
    margin-bottom: 10px;
}

.footer-address-list li a img {
    width: 20px;
    margin-right: 10px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(248deg) brightness(100%) contrast(96%);
}

.footer-address-list li a:hover img {
    filter: brightness(0) saturate(100%) invert(90%) sepia(91%) saturate(1480%) hue-rotate(294deg) brightness(95%) contrast(100%);
}

/* ------------------------------ footer css ----------------------------- */
/* ------------------------------ content wrapper css ----------------------------- */
.content-wrapper {
    min-height: calc(100vh - 92px);
    /* padding: 143px 0 50px 0; */
}

.header-line {
    position: relative;
}

.header-line:before {
    content: '';
    position: absolute;
    width: 70px;
    height: 5px;
    background: var(--secondary-color);
    border-radius: 50px;
    bottom: -5px;
}

/* ------------------------------ content wrapper css ----------------------------- */
/* ------------------------------ Home page css ----------------------------- */
.splash-img {
    max-width: 450px;
    width: 100%;
    position: relative;
}

.home .store {
    display: flex;
    margin-bottom: 24px;
}

.home .store img {
    max-width: 150px;
    margin: 15px 15px 15px 0;
}

.text-gradient {
    background: -webkit-linear-gradient(#eee, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home {
    padding: 143px 0 50px 0;
}

.heading-para {
    font-size: 25px;
    line-height: 35px;
    margin-top: 24px;
    color: #555555;
}

/* ------------------------------ Home page css ----------------------------- */
/* ------------------------------ FAQ page css ----------------------------- */
.accordion-button {
    padding: 5px 15px;
    font-family: poppins-medium;
}

.accordion-button:not(.collapsed) {
    color: var(--white-color);
    /* background: transparent linear-gradient(282deg, #C9EEDB 0%, #C0F3E3 6%, #F5B6A2 95%, #F5B7A2 100%) 0% 0% no-repeat padding-box; */
    background-color: #424242;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7453%) hue-rotate(345deg) brightness(115%) contrast(109%);
}

.accordion-body {
    color: var(--gray-color);
}

/* ------------------------------ FAQ page css ----------------------------- */
/* ------------------------------ support page css ----------------------------- */
.btn_upload {
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    position: relative;
    display: flex;
}

.yes {
    display: flex;
    /* align-items: flex-start; */
    flex-direction: column;
    position: relative;
    max-width: 280px;
}

.btn_upload input {
    cursor: pointer;
    height: 100%;
    position: absolute;
    filter: alpha(opacity=1);
    -moz-opacity: 0;
    opacity: 0;
}

.it {
    height: 100px;
    margin-left: 10px;
    max-width: 260px;
    object-fit: cover;
    margin-top: 24px;
}

.btn-rmv1,
.btn-rmv2,
.btn-rmv3,
.btn-rmv4,
.btn-rmv5 {
    display: none;
}

.rmv {
    cursor: pointer;
    color: #fff;
    border-radius: 30px;
    border: 1px solid #fff;
    display: inline-block;
    background: rgba(255, 0, 0, 1);
    width: 30px;
    height: 30px;
    position: absolute;
    top: 65px;
    right: 0;
}

.rmv:hover {
    background: rgba(255, 0, 0, 0.5);
}

.featured-section {
    position: relative;
    z-index: 1;
}

.feature-block-two {
    position: relative;
    margin-bottom: 30px;
}

.feature-block-two .inner-box {
    position: relative;
    padding: 50px 50px;
    background-size: cover;
}

.feature-block-two .inner-box:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background-color: rgb(222 208 190 / 76%);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.feature-block-two .inner-box:hover::before {
    background-color: rgb(245 182 162);
}

.feature-block-two .inner-box .number {
    position: relative;
    color: #ffffff;
    font-size: 60px;
    font-weight: 800;
    line-height: 1em;
    /* font-family: 'Montserrat', sans-serif; */
}

.feature-block-two .inner-box h4 {
    position: relative;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.3em;
    margin-top: 12px;
    margin-bottom: 15px;
}

.feature-block-two .inner-box .text {
    position: relative;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.8em;
}

.inner1 {
    background-image: url('../images/feature-1.png');
}

.inner2 {
    background-image: url('../images/feature-2.png');
}

/* ------------------------------ support page css ----------------------------- */
/* ------------------------------ advertise page css ----------------------------- */
.advertise-img {
    max-width: 550px;
    width: 100%;
}

.advertise-card {
    margin-top: 100px;
    margin-bottom: 30px;
}

.advertise-card h5 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.advertise-card .card {
    border: none;
    box-shadow: 0px 2px 6px #0000001f;
    margin-bottom: 24px;
    min-height: 340px;
}

.card-img {
    width: 125px;
    height: 125px;
    object-fit: cover;
    margin-top: -75px;
    margin-bottom: 20px;
}

/* ------------------------------ advertise page css ----------------------------- */
/* ------------------------------ about page css ----------------------------- */
.pad-tb {
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #f5b7a278;
    position: relative;
}

.common-heading {
    padding: 0;
    text-align: center;
    position: relative;
    z-index: 10;
}

.common-heading>span {
    color: var(--dark-color);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 15px 0;
    display: block;
}

.cta-area .common-heading h2 {
    margin-bottom: 40px;
    font-size: 42px;
    letter-spacing: 0.5px;
}

.support-img {
    width: 100%;
    max-width: 450px;
}

/* ------------------------------ about page css ----------------------------- */

/* ------------------------------ responsive css ----------------------------- */
@media(max-width:992px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }

    h1 {
        font-size: 40px;
        line-height: 60px;
    }

    h2 {
        font-size: 35px;
        line-height: 40px;
    }

    .content-wrapper {
        padding: 130px 0 50px 0;
    }

    .advertise-card .card {
        margin-bottom: 90px;
        min-height: auto;
    }

    .last-child-card {
        margin-bottom: 0 !important;
    }

    .footer-left,
    .footer-right {
        text-align: center;
    }

    .footer-heading {
        margin-bottom: 30px;
    }
}

@media(max-width:767px) {

    h1 {
        font-size: 35px;
        line-height: 45px;
    }

    h2 {
        font-size: 30px;
        line-height: 40px;
    }

}

@media(max-width:576px) {

    h1 {
        font-size: 25px;
        line-height: 32px;
    }

    h2 {
        font-size: 20px;
        line-height: 28px;
    }

    .home .store {
        flex-direction: column;
    }

    .site-logo {
        max-width: 145px;
        width: 100%;
    }

    .content-wrapper {
        padding: 105px 0 50px 0;
    }
}

/* ------------------------------ responsive css ----------------------------- */