.card {
    border: none;
}

.qr-box {
    cursor: pointer;
}
#custom-loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* semi-transparent black background */
    z-index: 9999;
    /* ensure it's above other content */
    display: none;
    /* initially hidden */
}

#custom-loader {
    border: 6px solid #1f4c25;
    /* light grey border */
    border-top: 5px solid white;
    /* blue border on top */
    border-radius: 50%;
    width: 55px;
    height: 55px;
    animation: custom-spin 1s linear infinite;
    /* spin animation */
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    /* half of loader height */
    margin-left: -50px;
    /* half of loader width */
}



@keyframes custom-spin {
    0% {
        transform: rotate(0deg);
    }

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

.hero {
    padding: 10px 0 60px 0;
}

.hero .section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero .header {
    position: relative;
    background-color: var(--primary);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 104px;
}

.hero .header::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../../img/background-image-one.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.hero .header>* {
    position: relative;
    z-index: 1;
}

.hero .header .head {
    color: white;
    margin: 0;
}

.hero .pragraphs {
    display: flex;
    flex-direction: column;
}

.hero .pragraphs .parag {
    color: #61656E;
    margin: 0
}

@media screen and (max-width:992px) {
    .hero .header .head {
        text-align: center;
        font-size: 28px;
    }
}


@media screen and (max-width:768px) {
    .hero .header .head {
        text-align: center;
        font-size: 24px;
    }
}

@media screen and (max-width:568px) {
    .hero .header .head {
        text-align: center;
        font-size: 20px;
    }

    .hero .pragraphs .parag {
        font-size: 14px;
    }
    .hero .pragraphs{
        padding-left: 5px;
    }
}

.products-new .items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 60px
}

.products-new .items .item {
    flex-basis: 30%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 600px;
}

.products-new .items .item .image {
    height: 260px;
    background-color: #F9FAFB;
    border-radius: 16px;
    border: 1px solid #DCE3F2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.products-new .items .item .image img {
    height: 85%;
    max-width: 100%;
}

.products-new .items .item .mini-head {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #D19036;
    font-weight: 700;
}

.products-new .items .item .mini-head p {
    margin: 0;
    font-size: 14px;
}

.products-new .items .item .title {
    font-size: 18px;
    font-weight: 600;
    font-weight: 700;
    color: var(--primaryText)
}

.products-new .items .item .description {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.products-new .items .item .description .stat {
    color: #095E37;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.products-new .items .item .description .stat p {
    margin: 0;
}

.products-new .items .item .description .stat .number {
    font-weight: 700;
}

.products-new .items .item .explain {
    color: #61656E;
    font-size: 14px;
}

.products-new .items .item .price {
    display: flex;
    gap: 9px;
    align-items: center;
    justify-content: space-between;
}

.products-new .items .item .price .num {
    font-weight: bold;
    font-size: 20px;
    color: var(--primaryText);
    margin: 0;
}

.products-new .items .item .cart {
    border-radius: 55px;
    background-color: white;
    color: var(--primary);
    padding: 10px 10px;
    cursor: pointer;
    border: 1px solid var(--primary);
    transition: all 0.3s;
    margin: 0;
}

.products-new .items .item .cart:hover {
    transform: scale(1.05);
}

.products-new .items .item .cart:active {
    transform: scale(0.98);
}

.products-new .items .item .more {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.products-new .items .item .price img {
    width: 44px;
    height: 44px;
}

.products-new .items .item .more a {
    border-radius: 55px;
    background-color: var(--primary);
    color: white;
    padding: 10px 24px;
    cursor: pointer;
    transition: all 0.3s
}

.products-new .items .item .more a:hover {
    transform: scale(1.05);
}

.products-new .items .item .more a:active {
    transform: scale(0.98)
}

@media screen and (max-width:1200px) {
    .products-new .items .item {
        flex-basis: 40%;
    }

    .products-new .header .head {
        font-size: 40px;
    }

    .products-new .header a {
        font-size: 35px;
    }
}

@media screen and (max-width:992px) {
    .products-new .items {
        justify-content: center;
    }

    .products-new .items .item {
        flex-basis: 80%;
    }

    .products-new .header .head {
        font-size: 35px;
    }

    .products-new .header a {
        font-size: 30px;
    }
}

@media screen and (max-width:768px) {
    .products-new .items {
        justify-content: space-between;
        margin-top: 50px;
    }
    .products-new .items .item .description{
        display: none;
    }
    .products-new .items .item .explain{
        display: none;
    }
    .products-new .items .item .image{
        height: 200px;
    }
    .products-new .items .item .price .qr-box{
        display: none;
    }
    .container-fluid .container{
        max-width: 100% !important;
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .products-new .items .item {
        flex-basis: 45%;
        min-height: 700px;
    }

    .products-new .header .head {
        font-size: 30px;
    }

    .products-new .header a {
        font-size: 25px;
    }
    .products-new .items .item .mini-head p {
    font-size: 12px;
}
.products-new .items .item .title {
    font-size: 14px;
}

    .products-new {
        margin-top: 0;
    }
    .products-new .items .item{
        min-height: auto;
    }
    .products-new .items .item .price .num{
        font-size: 18px;
    }
    .products-new .items .item .more a , .products-new .items .item .more button{
    font-size: 14px;
    padding: 9px 19px;
}
}

@media screen and (max-width:568px) {
    .products-new .items{
        column-gap: 0;
    }
    .products-new .items .item .image{
        height: 160px;
    }
    .products-new .items .item {
        flex-basis: 48%;
    }
    .products-new .items .item .price .num{
        font-size: 17px;
    }
    .products-new .items .item .image img {
    height: 80%;
    max-width: 90%;
}
.products-new .items .item .mini-head p {
    font-size: 8px;
}
.products-new .items .item .title {
    font-size: 11px;
}
.products-new .items .item .description {
   flex-wrap: wrap;
   font-size: 14px;
}
.products-new .items .item .more a , .products-new .items .item .more button{
    font-size: 12px;
    padding: 7px 15px;
}

    .products-new .header {
        flex-wrap: wrap;
        gap: 30px;
    }

    .products-new .header .head {
        font-size: 22px;
    }

    .products-new .header a {
        font-size: 18px;
    }
}

.subscribe {
    padding: 80px 0;
    background: linear-gradient(269.6deg, #EEF2F5 70.62%, #CCD2D4 93.8%);
}

.subscribe .section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.subscribe .section .section-one {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-basis: 40%;
}

.subscribe .section .section-one .image {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.subscribe .section .section-one .image .circle {
    width: 176px;
    height: 176px;
    border-radius: 100%;
    border: 3px solid #F9FAFB;
    display: flex;
    justify-content: center;
    align-items: center;
}

.subscribe .section .section-one .image .circle .img-one {
    width: 122px;
    position: relative;
    left: 0px;
    top: -6px;
}

.subscribe .section .section-one .image .circle .img-two {
    width: 178px;
    position: relative;
    top: -19px;
    left: 4px;
}

.subscribe .section .section-one .image .circle .img-three {
    width: 160px;
}


.subscribe .section .section-one .image .one {
    background-color: #84D4EF;
}

.subscribe .section .section-one .image .two {
    background-color: #FDD358;
}

.subscribe .section .section-one .image .three {
    background-color: #80ADF2;
}

.subscribe .section .section-one .carre {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 185px;
    height: 185px;
    padding-top: 63px;
    padding-right: 56px;
    padding-bottom: 63px;
    padding-left: 56px;
}

.subscribe .section .section-one .un {
    background-color: #6F81C2;
}

.subscribe .section .section-one .deux {
    background-color: #F3C890;
}

.subscribe .section .section-one .trois {
    background-color: #9CCFC8;
}

.subscribe .section .section-one .carre .title {
    margin: 0;
    color: white;
    font-size: 36px;
    font-weight: 600;
}

.subscribe .section .section-two {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-basis: 40%;
}

.subscribe .section .section-two .head {
    color: var(--primaryText);
    font-size: 48px;
    font-weight: 500;
}

.subscribe .section .section-two .description {
    margin: 0;
    color: var(--primaryText);
    font-size: 18px;
}

.subscribe .section .section-two form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.subscribe .section .section-two form .input {
    height: 44px;
    border-radius: 55px;
    padding: 14px 24px;
    color: var(--primaryText);
    border: 1px solid #DCE3F2;
    background: #F9FAFB;
    outline: none;
    width: 60%;
}

.subscribe .section .section-two form .submit {
    height: 44px;
    background-color: var(--primary);
    color: white;
    padding: 10px 24px;
    border-radius: 55px;
    border: none;
    transition: all 0.3s;
}

.subscribe .section .section-two form .submit:hover {
    transform: scale(1.05);
}

.subscribe .section .section-two form .submit:active {
    transform: scale(0.98);
}

@media screen and (max-width:1200px) {
    .subscribe .section .section-two .head {
        font-size: 40px;
    }
}

@media screen and (max-width:992px) {
    .subscribe .section .section-two .head {
        font-size: 35px;
        text-align: center;
    }

    .subscribe .section .section-two .description {
        text-align: center;
    }

    .subscribe .section .section-two form .input {
        width: 400px;
    }

    .subscribe .section .section-one {
        flex-basis: 100%;
    }

    .subscribe .section .section-two {
        width: 80%;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width:768px) {
    .subscribe .section .section-two .head {
        font-size: 30px;
    }

    .subscribe .section .section-two {
        width: 100%;
    }

    .subscribe .section .section-two form .input {
        width: 300px;
    }
}

@media screen and (max-width:568px) {
    .subscribe .section .section-two .head {
        font-size: 25px;
    }

    .subscribe .section .section-two form .input {
        width: fit-content;
    }

    .subscribe .section .section-one .image .circle {
        width: 146px;
        height: 146px;
    }

    .subscribe .section .section-one .image .circle .img-one {
        width: 93px;
    }

    .subscribe .section .section-one .image .circle .img-two {
        width: 136px;
    }

    .subscribe .section .section-one .image .circle .img-three {
        width: 125px;
    }

    .subscribe .section .section-one .carre {
        width: 140px;
        height: 140px;
    }

    .subscribe .section .section-one .carre .title {
        font-size: 30px;
    }

    .subscribe .section .section-two form {
        flex-direction: column;
    }

    .subscribe .section .section-two form .input {
        width: 300px;
    }
}
