@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,200;9..40,300;9..40,400;9..40,500;9..40,600;9..40,700;9..40,800;9..40,900&display=swap');



* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'DM Sans', sans-serif;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
}

:root {
    --primary-color: #FB3E2D;
    --secondary-color: #EFC42D17;
    --third-color: #F2F8FF;
    --text-color: #383B3E;
    --text-color2: #6D6D6D;
    --grey-color: #FAFAFA;
    --green-color: #22BF3A;
}

img {
    max-width: 100%;
    height: auto;
    width: auto;
}


h1,
.h1 {
    color: var(--text-color);
    display: block;
    font-size: 44px;
    font-weight: 900;
    line-height: 54px;
}

h2,
.h2 {
    color: var(--text-color);
    display: block;
    font-size: 36px;
    font-weight: 900;
    line-height: 46px;
    margin-bottom: 25px;
}

h3,
.h3 {
    color: var(--text-color);
    display: block;
    font-size: 24px;
    font-weight: 900;
    line-height: 36px;
}

h4,
.h4 {
    color: var(--text-color);
    display: block;
    font-size: 20px;
    font-weight: 900;
    line-height: 30px;
}

h5,
.h5 {
    color: var(--text-color);
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
}

h6,
.h6 {
    color: var(--text-color);
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.content p {
    margin-bottom: 15px;
}
.lgrid{
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;
    column-gap: 10px;
    align-items: start;
}
.rgrid{
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: center;
    column-gap: 10px;
    align-items: start;
}
.half{
    grid-template-columns: 50% 50%;
        column-gap: 20px;
}
.tick-h3 {
    font-size: 22px;
    display: flex;
    align-items: center;
    margin-top: 10px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 5px;
}

.tick-h3::before {
    display: inline-block;
    margin-right: 10px;
    content: "";
    background: url(../images/green-tick.svg)  center/ cover;
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
}

.tick-h3 + p {
    text-align: left;
  }

p {
    color: var(--text-color2);
    line-height: 23px;
    font-size: 15px;
    font-weight: 400;
}

ul.list {
    list-style: none;
    display: grid;
    gap: 15px;
    margin: 15px 0;
}

ul.list li {
    text-align: left;
    display: flex;
    gap: 8px;
}

ul.list li::before {
    content: "";
    display: inline-block;
    background: url(../images/green-tick.svg) center/ contain no-repeat;
    width: 28px;
    height: 28px;
}

ul.list b {
    color: var(--text-color);
}

.p-list {
    text-align: left;
    margin: 10px 0;
}

.p-list::before {
    content: "";
    display: inline-block;
    background: url(../images/green-tick.svg) center/ contain no-repeat;
    width: 15px;
    height: 15px;
    margin-right: 8px;
    margin-bottom: -2px;
}

.p-list b {
    color: var(--text-color);
}



.p-list:last-child {
    margin: 0;
}

a {
    text-decoration: none;
}

.section-wrapper {
    padding: 80px 0px;
}

.bg-primary {
    background-color: var(--primary-color);
}

.bg-second {
    background-color: var(--secondary-color);
}

.bg-third {
    background-color: var(--third-color);
}

.bg-grey {
    background-color: var(--grey-color);
}

.text-primary {
    color: var(--primary-color);
}

.text-white {
    color: white;
}

.text-center {
    text-align: center;
}

.d-flex {
    display: flex;
}

.d-block {
    display: block;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.radius-15 {
    border-radius: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.m-auto {
    margin: auto;
}

.h-auto {
    height: auto;
}

.pb-0 {
    padding-bottom: 0!important;
}
.pt-0{
    padding-top: 0!important;
}
.pb-60 {
    padding-bottom: 60px !important;
}
.pt-60{
    padding-top: 60px !important;
}
.mb-0 {
    margin-bottom: 0;
}

.mb-10 {
    margin-bottom: 10px;
}
section#additional-content p {
    margin-bottom: 10px;
}
/* button */

.btn {
    cursor: pointer;
    background-color: var(--primary-color);
    text-align: center;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 15px 10px;
    min-width: 210px;
    border-radius: 10px;
    border: none;
    transition: .3s;
}

.btn:hover {
    background-color: var(--text-color);
    transition: .3s;
}

.btn-second {
    background-color: var(--text-color);
}

.btn-second:hover {
    background-color: var(--primary-color);
}

.btn:focus {
    box-shadow: none;
}

/* form */

.form-card {
    position: relative;
    background-color: #fff;
    padding: 50px 94px;
    border-radius: 15px;
    box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.08);
}

.form-input-col {
    position: relative;
    margin-bottom: 20px;
}

.form-input-col .form-input {
    text-align: left;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #CDCDCD;
    background: #FFF;
    min-height: 50px;
    outline: none;
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    transition: .3s;
    color: var(--text-color);
}

.form-img-input .form-input {
    padding-left: 52px;
}

.form-input-col .form-input:focus {
    border: 1px solid var(--primary-color);
    transition: .3s;
}

.form-input::placeholder {
    /* color: var(--text-color2); */
    color: #A5A5A5;
}

.form-input-col img {
    width: 23px;
    height: 23px;
    z-index: 10;
    pointer-events: none;
    position: absolute;
    top: 13px;
    left: 18px;
}

.select-wrap::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    background: url(../images/arrow-down.svg) center/ contain no-repeat;
    width: 10px;
    height: 10px;
}

.select-wrap select.form-input {
    padding-right: 35px;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* container */

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 8px;
    padding-right: 8px;
}

.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 32px;
    padding-right: 32px;
}



@media(min-width: 567px) {
    .container {
        max-width: 540px;
    }
}

@media(min-width: 768px) {
    .container {
        max-width: 720px;
    }
}


@media(min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media(min-width: 1200px) {
    .container {
        max-width: 1180px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}

.row-1000 {
    max-width: 1000px;
}

.col {
    padding-left: 12px;
    padding-right: 12px;
}

.col-12 {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
}

.col-6 {
    width: 50%;
    padding-left: 12px;
    padding-right: 12px;
}

.col-4 {
    width: 33.33333333%;
    padding-left: 12px;
    padding-right: 12px;
}

.col-3 {
    width: 25%;
    padding-left: 12px;
    padding-right: 12px;
}

.col-2 {
    width: 16.66666666%;
    padding-left: 12px;
    padding-right: 12px;
}


/* --------------------header------------------------- */

/* topbar */

.topbar {
    background-color: var(--primary-color);
    color: white;
    padding: 6px 0;
}

.topbar .top-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin: auto;
}

.topbar .sale-txt {
    font-size: 14px;
    font-weight: 500;
}

.topbar .sale-txt span {
    font-weight: 500;
}

.topbar .sale-timing {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar .time-count-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4px 6px;
    gap: 1px;
    border-radius: 2px;
    background: #FFF;
    width: 28px;
}

.topbar .time-count-col strong {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.topbar .time-count-col span {
    color: var(--text-color);
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
}

/* main header */

header {
    z-index: 99;
    position: relative;
}

.main-header {
    padding: 14px 0px;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.06);
}

.main-header .container {
    position: relative;
}

.main-header .mobile-nav-button {
    display: none;
    background-color: transparent;
    border: none;
}

/* .main-header .mobile-nav-button svg path{
    stroke: var(--primary-color)
} */

.main-header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.main-header .logo img {
    display: block;
    margin: auto;
    max-width: 266px;
    height: auto;
}

.main-header .heading-star {
    display: none;
}

.main-header .navbar-nav {
    position: relative;
    display: flex;
    list-style: none;
    gap: 42px;
    font-size: 15px
}
/* dropdown  */

.main-header .dropdown-item {
    position: relative;
}

.main-header .dropdown-item>a {
    display: flex;
    align-items: center;
}


.main-header .dropdown-item>a::after {
    content: "";
    display: block;
    width: 13px;
    height: 7px;
    background: url(../images/arrow-dropdown.svg) center / contain no-repeat;
    margin-left: 10px;
}

.main-header .dropdown-col {
    display: none;
}

.main-header .dropdown-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 18px 40px;
    position: absolute;
    width: max-content;
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    right: -200%;
    top: 40px;
    list-style: none;
    box-shadow: 0px -1px 30px 0px rgba(0, 0, 0, 0.07);
}
@media(min-width:993px) {
    .main-header .navbar-nav {
        display: flex !important;
    }
}

.main-header .navbar-nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    transition: .3s;
}

.main-header .navbar-nav a:hover {
    color: var(--primary-color);
    transition: .3s;
}

/* checkout header */

.checkout-header .navbar {
    justify-content: center;
}

.checkout-header .back-btn,
.checkout-header .home-btn {
    gap: 8px;
    display: flex;
    align-items: center;
    margin-right: auto;
    background-color: transparent;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-color);
}

.checkout-header .back-btn img,
.checkout-header .home-btn img {
    display: block;
    margin: auto;
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.checkout-header .heading-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.checkout-header .heading-rating img {
    max-width: 140px;
}

.checkout-header .home-btn {
    visibility: hidden;
    margin-right: 0;
    margin-left: auto;
}

.checkout-header.thanks-header .home-btn {
    visibility: visible;
}



/* --------------------footer------------------------- */

.main-footer {
    background-color: var(--text-color);
}

.main-footer .col {
    width: 24%;
    padding: 0 12px;
    padding-right: 72px;
}

.main-footer .col:last-child {
    width: 16%;
    padding-right: 12px;
}

.main-footer .logo-col {
    width: 30%;
    padding-right: 72px;
}

.main-footer .logo {
    max-width: 260px;
}

.main-footer .mail-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    margin: 10px 0px 30px 0px;
}

.main-footer .payment-logo-col {
    display: flex;
    gap: 10px;
}

.main-footer .payment-logo-col .payment-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 5px;
    width: 40px;
    height: 22px;
}

.main-footer .payment-logo-col .payment-logo img {
    width: 26px;
    height: 17px;
    object-fit: contain;
}

.main-footer .link-col .h3 {
    margin-bottom: 10px;
}

.main-footer .link-col ul {
    display: grid;
    gap: 15px;
    padding: 0;
    list-style: none;
}

.main-footer .link-col ul li {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* .main-footer .link-col ul li::before {
    content: "";
    display: block;
    background: url(../images/list-icon.svg) center/ contain no-repeat;
    width: 15px;
    height: 15px;
} */


.main-footer .link-col a {
    color: #fff;
    transition: .3s;
}

.main-footer .link-col a:hover {
    color: var(--primary-color);
    transition: .3s;
}

#copyright {
    background-color: var(--primary-color);
    padding: 10px 0px;
}

#copyright p {
    color: #fff;
    text-align: center;
}


/* ----------------------------------------sections---------------------------------------- */

/* --------------------banner 2------------------------- */

#banner2 {
    background-color: var(--secondary-color);
    text-align: center;
}

/* --------------------why choose us------------------------- */

.why-choose-col {
    border-radius: 15px;
    background: var(--grey-color);
    padding: 24px;
    margin: 12px 0;
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.13);
    transition: .5s;
    height: calc(100% - 24px);
}

/* .why-choose-col .why-choose-img {
    border-radius: 5px;
    background: #FAFAFA;
    width: 66px;
    height: 58px;
    padding: 8px;
} */

.why-choose-col .why-choose-img img {
    display: block;
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.why-choose-col .h4 {
    margin: 15px 0;
    transition: .5s;
}

.why-choose-col p {
    transition: .5s;
}

.why-choose-col:hover {
    background: var(--third-color);
    transition: .5s;
}

/* .why-choose-col:hover .h4,
.why-choose-col:hover p {
    color: white;
    transition: .5s;
} */

/* --------------------how we work------------------------- */

.how-we-work h2.mb-heading {
    display: none;
}

.how-we-work .work-step {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-left: 20px;
}

.how-we-work .work-step-col {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.how-we-work .step-count {
    border-radius: 3px;
    background: var(--primary-color);
    padding: 5px;
    text-align: center;
}

.how-we-work .step-count::after {
    content: "";
    position: absolute;
    background: var(--primary-color);
    width: 1px;
    height: 100%;
}

.how-we-work .work-step-col:last-child .step-count::after {
    display: none;
}

.how-we-work .step-count p {
    min-width: 25px;
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.how-we-work .work-step-col .h4 {
    margin-bottom: 10px;
}


/* --------------------why important------------------------- */

.additional-content .row {
    max-width: 1000px;
    margin: 0 auto;
}

.additional-content img {
    max-width: 45%;
    margin-right: 50px;
    margin-bottom: 30px;
    float: left;
}


.additional-content-2 img {
    margin-left: 50px;
    margin-right: 0px;
    float: right;
}

/* 
.additional-content .why-imp-img,
.additional-content .content {
    padding: 0 20px;
}

.additional-content .content {
    margin: auto 0;
} */

/* -------------------reviews------------------------ */


.slider-parent {
    position: relative;
    width: 100%;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide-arrow {
    z-index: 90;
    position: absolute;
    background-image: url("../images/arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    background-color: var(--primary-color);
    width: 42px;
    height: 42px;
    border-radius: 10px;
    transform: scaleX(-1);
    transition: .3s;
    top: 36%;
    border: none;
    cursor: pointer;
}

.slide-prev-btn {
    left: -44px;
}

.slide-next-btn {
    right: -44px;
}

.slide-next-btn {
    transform: scaleX(1);
}

.slide-arrow:hover,
.slide-arrow:focus {
    background-color: var(--text-color);
    background-image: url("../images/arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
}

/* splide slider arrow */

.splide__arrow {
    z-index: 90;
    position: absolute;
    background-image: url("../images/arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    background-color: var(--primary-color);
    width: 42px;
    height: 42px;
    border-radius: 10px;
    transform: scaleX(-1);
    transition: .3s;
    top: 36%;
    border: none;
    cursor: pointer;
}

.splide__arrow svg {
    display: none;
}

.splide__arrow--prev {
    left: -44px;
}

.splide__arrow--next {
    right: -44px;
}

.splide__arrow--next {
    transform: scaleX(1);
}

.splide__arrow:hover,
.splide__arrow:focus {
    background-color: var(--text-color);
    background-image: url("../images/arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
}

.splide__pagination {
    gap: 10px;
    margin-top: 30px !important;
}

.splide__pagination .splide__pagination__page {
    cursor: pointer;
    border: none;
    background-color: var(--text-color);
    border-radius: 7px;
    width: 12px !important;
    height: 12px !important;
    transition: .3s;
}

.splide__pagination .splide__pagination__page.is-active {
    background-color: var(--primary-color) !important;
    width: 52px !important;
    transition: .3s;
}

.reviews h2 {
    margin-bottom: 4px;
}

.reviews .trustpilot-col {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin: 15px 0px 35px 0px;
}

.reviews .trustpilot-col img {
    max-width: 118px;
}

.reviews .trustpilot-col img.customer-img {
    max-width: 102px;
}

.reviews .slide {
    flex: 0 0 33.3333%;
}

.reviews .review-slide {
    height: 100%;
    background-color: var(--third-color);
    padding: 30px;
    border-radius: 15px;
    margin: 0 12px;
}

.reviews .review-slide .h5 {
    font-weight: 500;
}

.reviews .review-profile {
    gap: 15px;
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.reviews .review-profile img {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    object-fit: cover;
}

.reviews .review-profile p {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.1;
}

.reviews .review-profile .prof {
    font-size: 12px;
    font-weight: 300;
    padding: 2px 10px;
    border-radius: 20px;
    background: #DDEF86;
}

.slider-parent .pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.slider-parent .pagination-btn {
    cursor: pointer;
    border: none;
    background-color: var(--text-color);
    border-radius: 7px;
    width: 12px;
    height: 12px;
    transition: .3s;
}

.slider-parent .pagination-btn:last-child,
.slider-parent .pagination-btn:nth-last-child(2) {
    display: none;
}

.slider-parent .pagination-btn.active {
    background-color: var(--primary-color);
    width: 52px;
    transition: .3s;
}

/* -------------------get started------------------------- */

.get-started-txt {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 50px;
    border-radius: 15px;
    border: 1px solid rgba(56, 59, 62, 0.04);
    background: var(--secondary-color);
    box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.07);
}

.get-started-txt h2 {
    margin-bottom: 10px;
}

/* --------------------faq------------------------- */

#faq .col-6 {
    padding: 0 10px;
}

.accordion .accordion-item {
    display: block;
    background-color: var(--grey-color);
    border-radius: 10px;
    margin: 15px 0;
}

.accordion .accordion-header {
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px;
    padding-right: 42px;
    cursor: pointer;
}

.accordion .accordion-header:after {
    content: "";
    position: absolute;
    background: url(../images/plus-icon.svg) center/ contain no-repeat;
    width: 15px;
    height: 15px;
    right: 20px;
}
.accordion h2 {
    margin: 0;
}
.accordion .accordion-header.show:after {
    background: url(../images/minus-icon.svg) center/ contain no-repeat;
}


.accordion .accordion-body {
    padding: 0px 20px 20px 20px;
    display: none;
}


/* --------------------tablet responsive------------------------- */

@media(max-width:992px) {

    .col-6 {
        width: 100%;
    }
.rgrid, .lgrid, .half {
    grid-template-columns: 100%;
}
    .col-2 {
        width: 33.3333%;
    }

    h1,
    .h1 {
        font-size: 36px;
        line-height: 52px;
    }

    h2,
    .h2 {
        font-size: 28px;
        line-height: 36px;
    }

    p {
        font-size: 14px;
        line-height: 20px;
    }

    .section-wrapper-2 {
        padding-top: calc(117.45px + 60px);
    }

    .wrapper-no-banner {
        padding-top: calc(72.45px + 60px);
    }

    .form-card {
        padding: 50px 60px;
    }

    /* --------------------header------------------------- */

    header {
        position: fixed;
        z-index: 99;
        width: 100%;
    }

    .main-header .mobile-nav-button {
        width: 25px;
        height: 25px;
        display: block;
    }

    .main-header .navbar-nav {
        padding-top: 18px;
        display: none;
        width: 100%;
    }

    .main-header .navbar-nav li {
        padding: 6px 0;
    }

    .main-header .logo img {
        max-width: 220px;
    }

    .main-header .heading-star {
        display: block;
        max-width: 140px;
        height: auto;
    }

    header .navbar-nav:before {
        content: "";
        display: flex;
        position: absolute;
        top: 8px;
        left: -10%;
        border-top: 1px solid rgba(0, 0, 0, .3);
        width: 120%;
        height: 1px;
    }
    /* dropdown  */

    .main-header .dropdown-menu {
        margin-top: 8px;
        grid-template-columns: 1fr;
        grid-gap: 0px;
        position: relative;
        width: 100%;
        padding: 0px 10px;
        right: unset;
        top: unset;
        box-shadow: none;
    }

    .main-header .dropdown-menu a {
        font-size: 14px;
    }

    /* --------------------footer------------------------- */

    .main-footer .col {
        width: 50% !important;
        padding: 0 12px !important;
    }

    .main-footer .row {
        gap: 30px 0;
    }

    /* --------------------sections------------------------- */

    /* how we work */

    .how-we-work h2.mb-heading {
        display: block;
        text-align: center;
    }

    .how-we-work-txt h2 {
        display: none;
    }

    .how-we-work-txt {
        padding-top: 30px;
    }

    .how-we-work-txt h2 {
        display: none;
    }


    .how-we-work .work-step {
        padding-left: 0;
    }


    /* why important */

    .additional-content img {
        margin-right: 20px;
    }

    .additional-content-2 .row {
        flex-direction: column-reverse;
    }

    .additional-content-2 .col-12 {
        order: -1;
    }

    /* reviews */

    .slide-arrow {
        width: 38px;
        height: 38px;
    }

    .reviews .slide {
        flex: 0 0 50%;
    }

    .slider-parent .pagination-btn:nth-last-child(2) {
        display: block;
    }

}


/* --------------------mobile responsive------------------------- */

@media(max-width:767px) {


    h1,
    .h1 {
        font-size: 24px;
        line-height: 30px;
    }

    h2,
    .h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .container-fluid {
        padding-left: 8px;
        padding-right: 8px;
    }

    .btn {
        padding: 14px 10px;
        min-width: 168px;
    }

    .form-card {
        padding: 30px 26px;
        border-radius: 15px;
    }

    .form-input-col .form-input {
        padding: 10px 13px;
        font-size: 14px;
    }

    .form-img-input .form-input {
        padding-left: 45px;
    }

    .form-input-col img {
        top: 13px;
        left: 13px;
    }

    .get-started .dropdown-menu a {
        padding: 12px 18px !important;
        font-size: 14px !important;
    }

    .col-4 {
        width: 100%;
    }

    .section-wrapper-2 {
        padding-top: calc(150px + 25px);
    }

    .wrapper-no-banner {
        padding-top: calc(72.45px + 60px);
    }

    .select-wrap::after {
        right: 15px;
    }

    /* --------------------header------------------------- */

    .topbar .sale-txt {
        font-size: 13px;
        display: grid;
    }

    .main-header .logo img {
        max-width: 180px;
    }

    .main-header .heading-star {
        display: block;
        max-width: 100px;
    }

    /* checkout header  */

    .checkout-header .back-btn span,
    .checkout-header .home-btn span {
        display: none;
    }

    /* .checkout-header .back-btn img,
    .checkout-header .home-btn img {
        width: 21px;
        height: 21px;
    } */

    /* --------------------footer------------------------- */


    .main-footer .row {
        gap: 10px 0;
    }

    .main-footer .logo-col {
        width: 100% !important;
        text-align: center;
        padding: 0 12px !important;
    }

    .main-footer .mail-link {
        justify-content: center;
    }

    .main-footer .payment-logo-col {
        justify-content: center;
        margin-bottom: 20px;
    }

    /* --------------------sections------------------------- */

    /* banner */

    #banner2 {
        padding-top: calc(150px + 40px);
        padding-bottom: 40px;
    }

    #banner2 h1 {
        font-size: 26px;
    }


    /* why important */

    
    .additional-content img {
        max-width: 100%;
        margin-right: 0;
        margin-left: 0;
        float: none;
    }

    .additional-content .content {
        text-align: center;
    }

    .additional-content .content p {
        text-align: justify;
    }

    /* reviews */

    .slide-next-btn {
        right: 0;
    }

    .slide-prev-btn {
        left: 0;
    }

    .splide__arrow--next {
        right: 0;
    }

    .splide__arrow--prev {
        left: 0;
    }

    .reviews .slide {
        flex: 0 0 100%;
    }

    .slider-parent .pagination-btn:last-child {
        display: block;
    }


    /* get started */

    .get-started-txt {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .get-started-txt .btn {
        width: 70%;
    }

    /* faq */

    .accordion .accordion-header {
        padding-top: 10px;
        padding-bottom: 10px;
    }

}

/* --------------------small mobile responsive------------------------- */

@media(max-width:380px) {

    .section-wrapper-2 {
        padding-top: calc(113.58px + 50px);
    }

    .wrapper-no-banner {
        padding-top: calc(61.53px + 50px);
    }

    /* header */

    .topbar .top-content {
        justify-content: space-between;
        gap: 15px;
    }

    .main-header .logo img {
        max-width: 166px;
    }

    .main-header .heading-star {
        max-width: 90px;
    }

    .main-header .mobile-nav-button {
        width: 20px;
        height: 20px;
    }

    /* banner */

    #banner2 {
        padding-top: calc(113.57px + 40px);
        padding-bottom: 40px;
    }
}
.busybtn {
    cursor: pointer;
}

.busybtn.active {
    position: relative;
    pointer-events: none;
    opacity: 0.65;
    display: inline;
    align-items: center;
    justify-content: center;
    padding-left: 60px !important;
}

.busybtn.active:after {
    content: '';
    position: absolute;
    left: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    animation: spin 1s linear infinite;
}