@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');

/* Start Variables */
/* :root {
  --main-color: #FD8723;
  --secondary-color: #fff6e6;
  --header-color: #483b36;
  --para-color: var(--color-white);
  --section-background: #fefcf5;
  --main-duration: 0.5s;
} */
/* End Variables */


/*:root {
    
    --color-dark: rgba(25, 30, 42, 1);
    --color-dark-gray: rgba(87, 99, 122, 1);
    --color-light-gray: rgba(214, 220, 233, 1);
    --color-light: rgba(244, 245, 247, 1);
    --color-gray: gray;
    --color-white: #fff;
    --color-semi-transparent-black: rgba(0, 0, 0, .2);

  
    --color-blue: rgba(0, 124, 249, 1);
    --color-blue-dark: rgba(0, 114, 235, 1);
    --color-light-blue: rgb(7, 130, 253);

   
    --color-light-semi-transparent-white:rgba(255, 255, 255, 0.16);
    --color-transparent-white: rgba(255, 255, 255, 0.3);
    --color-light-brown: rgba(85, 37, 19, 0.08);
    --color-muted-blue: rgba(172, 185, 210, 1);
    --color-soft-orange: rgba(240, 89, 54, 1);
    --color-dark-brown: rgba(39, 29, 28, 1);
    --color-warm-gray: rgba(93, 86, 86, 1);
    --color-soft-peach: rgba(255, 188, 151, 1);
    --color-light-gray-transparent: rgba(218, 218, 218, 0.67);
    --color-dark-slate: rgba(58, 77, 95, 1);
    --color-vibrant-purple: rgba(122, 75, 255, 1);
}
 */


:root {
    --color-dark: #222831;
    /* 222831 */
    --color-dark-gray: #393E46;
    /* 393E46 */
    --color-light-gray: #EEEEEE;
    /* EEEEEE */
    --color-light: #F9F7F7;
    /* F9F7F7 */
    --color-gray: gray;
    --color-white: #fff;
    --color-semi-transparent-black: rgba(0, 0, 0, .2);

    --color-blue: #3F72AF;
    /* 3F72AF */
    --color-blue-dark: #112D4E;
    /* 112D4E */
    --color-light-blue: #00ADB5;
    /* 00ADB5 */

    --color-light-semi-transparent-white: rgba(255, 255, 255, 0.16);
    --color-transparent-white: rgba(255, 255, 255, 0.3);
    --color-light-brown: rgba(85, 37, 19, 0.08);
    --color-muted-blue: #A6E3E9;
    /* A6E3E9 */
    --color-soft-orange: #FF6F61;
    --color-dark-brown: #222831;
    /* 222831 */
    --color-warm-gray: #393E46;
    /* 393E46 */
    --color-soft-peach: #FF9A8B;

    --color-light-gray-transparent: rgba(218, 218, 218, 0.67);
    --color-dark-slate: #2C3C36;
    /* 2C3C36 */
    --color-vibrant-purple: #3F72AF;
    /* 3F72AF */

    /* Additional Colors */
    --color-dark-brown: #222831;
    /* 222831 */
    --color-muted-brown: rgba(82, 68, 58, 0.81);
    --color-dark-grayish-brown: #393E46;
    /* 393E46 */
    --color-light-gray: #EEEEEE;
    /* EEEEEE */
    --color-medium-gray: #A2A2A2;
    --color-slightly-dark-gray: rgba(99, 102, 105, 0.67);
    --color-deep-green: #22322D;
    --color-deep-slate: #2C3C36;
    /* 2C3C36 */
    --color-white: rgba(255, 255, 255, 1);
    --color-off-white: rgba(255, 255, 255, 0.98);
    --color-light-semi-transparent-white: rgba(255, 255, 255, 0.16);
    --color-light-cyan: #A6E3E9;
    /* A6E3E9 */
    --color-bright-orange: #FF6F61;
    --color-soft-orange: #FF9A8B;
    --color-yellow-dark: #112D4E;
    --color-yellow-light: #DBE2EF;
    --color-light-background: #F9F7F7;
    /* F9F7F7 */
    --color-grayish-background: #E8E8E8;

    --main-color: #3F72AF;
    /* 3F72AF */
    --secondary-color: #00ADB5;
    /* 00ADB5 */
    --header-color: #2C3C36;
    /* 2C3C36 */
    --para-color: #222831;
    /* 222831 */
    --section-background: #A6E3E9;
    /* A6E3E9 */
}












/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    animation-duration: 1s;
    animation-fill-mode: both;
    margin: 0;
    padding: 0;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--color-semi-transparent-black);
    border-radius: 4px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Cairo", sans-serif;
    background-color: var(--color-white);
    direction: rtl;

}

a {
    text-decoration-line: none;
    color: var(--color-white);
}

i {
    font-size: 22px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: Cairo;
}

img {
    display: block;
    object-fit: cover;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 180px;
    z-index: 996;
    background: transparent;
    width: 70px;
    height: 70px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top img {
    width: 100%;
    height: 100%;
}

.back-to-top:hover {
    animation-iteration-count: infinite;
    animation-duration: 1400ms;
    animation-name: heartBeat;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.top-header {
    padding: 12px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    background-size: cover;
    background-position: center center;
    background-color: var(--color-dark-grayish-brown);
    background-image: url('https://files.easy-orders.net/1730812061617771612header-bg.svg');
    color: var(--color-white);
    text-align: center;
}

.top-header .top-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.3);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.3);
    }

    70% {
        transform: scale(1);
    }
}

.top-header .top-title i {
    padding-left: 5px;
    color: var(--main-color);
    font-size: 20px;
    animation-name: heartBeat;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-duration: 2000ms;
}

.top-header .top-title p {
    margin-top: auto;
    margin-bottom: auto;
    padding-left: 20px;
    line-height: 170%;
    color: var(--color-white);
    font-weight: 700;
    font-size: 14px;

}

.top-header .top-title .countdown .countdown-item {
    padding-left: 10px;
    color: rgba(255, 255, 255, 0.69);
    font-size: 13px;
}

.bottom-header {
    background-size: cover;
    background-color: var(--color-off-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    padding: 20px 0px;
}

.bottom-header .logo .logo-img {
    margin-left: 4px;
    width: 28px;
    height: auto;
}

.bottom-header .logo a {
    font-size: 21px;
    font-weight: 700;
    text-align: center;
    line-height: 100%;
    color: rgba(35, 35, 35, 1);
}

.bottom-header ul li a {
    line-height: 18px;
    font-weight: 600;
    transition-duration: 300ms;
    font-family: Cairo;
    font-size: 15px;
    padding: 10px 4px 8px;
    color: rgba(82, 68, 58, 0.81);
}

.bottom-header .head-btn {
    max-width: 100%;
    margin-right: 29px;
}

.bottom-header .head-btn a {
    width: 223px;
    border: none;
    padding: 16px 18px;
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: var(--main-color);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.bottom-header .head-btn a p {
    margin-top: auto;
    margin-bottom: auto;
    padding-left: 8px;
}

.bottom-header .head-btn a p,
.bottom-header .head-btn a i {
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
}

.bottom-header .head-btn a:hover {
    transform: translateY(-10px);
}

@media only screen and (max-width: 767px) {
    .top-header .top-title p {
        font-size: 12px;
        padding-left: 10px;
    }

    .top-header .top-title .countdown .countdown-item {
        padding-left: 5px;
        font-size: 11px;
    }

    .bottom-header {
        padding: 12px;
    }

    .bottom-header .logo .logo-img {
        width: 22px;
        height: 22px;
    }

    .bottom-header .logo a {
        font-size: 17px;
    }
}


#main {
    /* padding-top: 60px; */
    background-repeat: no-repeat, no-repeat;
    background-attachment: fixed, fixed;
    background-position: 50% 50%, 50% 50%;
    background-size: cover, cover;
    background-image: url('https://files.easy-orders.net/1730812154206497530form-bg.svg'), linear-gradient(0deg, #EEEEEE, #DBE2EF);

}

/* general  */


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    margin-top: 30px;
}

#hero .middle {
    border-radius: 22px;
    position: relative;
}

.carousel {
    position: sticky;
    top: 0;
}

#hero .right-side {
    width: 48%;
    float: right;
    position: sticky;
    top: 0;
    height: fit-content;
}

#hero .carousel {
    max-width: 100%;
    margin: 0 auto;
}

#hero .carousel .carousel-inner {
    border-radius: 10px;
    max-width: 100%;
    max-height: 200vh;
}

#hero .carousel .carousel-inner .carousel-item {
    height: 100%;
    width: 100%;
}

#hero .carousel .carousel-inner .carousel-item img {
    max-height: 100%;
    height: 420px;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

#hero .carousel .carousel-inner .carousel-item img:hover {
    cursor: zoom-in;
    transform: scale(1.3);
}

#hero .carousel-indicators {
    position: static;
    margin-left: 0;
    margin-right: 0;
    padding: 20px 0px 5px 0px;
    width: 100%;
    overflow-x: auto;
}

/* Ã˜ÂªÃ˜ÂºÃ™Å Ã™Å Ã˜Â± Ã˜Â´Ã™Æ’Ã™â€ž Ã˜Â´Ã˜Â±Ã™Å Ã˜Â· Ã˜Â§Ã™â€žÃ˜ÂªÃ™â€¦Ã˜Â±Ã™Å Ã˜Â± Ã™ÂÃ™Å  Ã˜Â§Ã™â€žÃ˜Â§Ã˜ÂªÃ˜Â¬Ã˜Â§Ã™â€¡ Ã˜Â§Ã™â€žÃ˜Â£Ã™ÂÃ™â€šÃ™Å  */
#hero .carousel-indicators::-webkit-scrollbar {
    width: 5px;
    /* Ã˜ÂªÃ˜Â­Ã˜Â¯Ã™Å Ã˜Â¯ Ã˜Â¹Ã˜Â±Ã˜Â¶ Ã˜Â´Ã˜Â±Ã™Å Ã˜Â· Ã˜Â§Ã™â€žÃ˜ÂªÃ™â€¦Ã˜Â±Ã™Å Ã˜Â± */
    height: 10px;
}

/* Ã˜ÂªÃ˜ÂºÃ™Å Ã™Å Ã˜Â± Ã˜Â´Ã™Æ’Ã™â€ž Ã˜Â§Ã™â€žÃ˜Â´Ã˜Â±Ã™Å Ã˜Â· Ã™â€ Ã™ÂÃ˜Â³Ã™â€¡ */
#hero .carousel-indicators::-webkit-scrollbar-thumb {
    background-color: var(--color-medium-gray);
    /* Ã™â€žÃ™Ë†Ã™â€  Ã˜Â§Ã™â€žÃ˜Â®Ã™â€žÃ™ÂÃ™Å Ã˜Â© Ã™â€žÃ™â€žÃ˜Â´Ã˜Â±Ã™Å Ã˜Â· */
    border-radius: 20px;
    /* Ã˜ÂªÃ˜Â­Ã˜Â¯Ã™Å Ã˜Â¯ Ã˜Â´Ã™Æ’Ã™â€ž Ã˜Â§Ã™â€žÃ˜Â²Ã™Ë†Ã˜Â§Ã™Å Ã˜Â§ Ã™â€žÃ™â€žÃ˜Â´Ã˜Â±Ã™Å Ã˜Â· */
}

/* Ã˜ÂªÃ˜ÂºÃ™Å Ã™Å Ã˜Â± Ã˜Â´Ã™Æ’Ã™â€ž Ã˜Â§Ã™â€žÃ™â€¦Ã™â€ Ã˜Â·Ã™â€šÃ˜Â© Ã˜Â§Ã™â€žÃ˜ÂªÃ™Å  Ã˜ÂªÃ˜Â¸Ã™â€¡Ã˜Â± Ã™ÂÃ™Å Ã™â€¡Ã˜Â§ Ã˜Â¹Ã™â€ Ã˜Â¯ Ã˜Â§Ã™â€žÃ˜ÂªÃ™â€¦Ã˜Â±Ã™Å Ã˜Â± */
#hero .carousel-indicators::-webkit-scrollbar-track {
    background-color: var(--color-grayish-background);
    /* Ã™â€žÃ™Ë†Ã™â€  Ã˜Â§Ã™â€žÃ˜Â®Ã™â€žÃ™ÂÃ™Å Ã˜Â© Ã™â€žÃ™â€žÃ™â€¦Ã™â€ Ã˜Â·Ã™â€šÃ˜Â© Ã˜Â§Ã™â€žÃ˜ÂªÃ™Å  Ã˜ÂªÃ˜Â¸Ã™â€¡Ã˜Â± Ã™ÂÃ™Å Ã™â€¡Ã˜Â§ Ã˜Â¹Ã™â€ Ã˜Â¯ Ã˜Â§Ã™â€žÃ˜ÂªÃ™â€¦Ã˜Â±Ã™Å Ã˜Â± */
    border-radius: 5px;
    /* Ã˜ÂªÃ˜Â­Ã˜Â¯Ã™Å Ã˜Â¯ Ã˜Â´Ã™Æ’Ã™â€ž Ã˜Â§Ã™â€žÃ˜Â²Ã™Ë†Ã˜Â§Ã™Å Ã˜Â§ Ã™â€žÃ™â€žÃ™â€¦Ã™â€ Ã˜Â·Ã™â€šÃ˜Â© Ã˜Â§Ã™â€žÃ˜ÂªÃ™Å  Ã˜ÂªÃ˜Â¸Ã™â€¡Ã˜Â± Ã™ÂÃ™Å Ã™â€¡Ã˜Â§ Ã˜Â¹Ã™â€ Ã˜Â¯ Ã˜Â§Ã™â€žÃ˜ÂªÃ™â€¦Ã˜Â±Ã™Å Ã˜Â± */
}

#hero .carousel-indicators li.thumbnail {
    width: auto;
    height: 80px;
    border-radius: 10px;
    color: transparent;
}

#hero .carousel-indicators li.thumbnail:not(.active) {
    opacity: 1;
}

#hero .carousel-indicators li img {
    height: 100%;
    width: 100px;
    border-radius: 10px;
    max-width: unset;
}

@media (min-width: 767px) {
    #hero .middle {
        margin-top: 50px;
    }
}

/* start left side */
#hero .left-side {
    width: 48%;
    float: left;
}

#hero .left-side .main-content {
    background-color: var(--color-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    padding: 16px;
}

#hero .left-side .main-content .rating-box {
    font-size: 14px;
    font-family: Roboto;
    font-weight: normal;
    display: flex;
    align-items: center;
    border-radius: 100px;
    transition-duration: 400ms;
    background-image: linear-gradient(274deg, var(--color-yellow-light), transparent);
    border: 1px solid rgba(155, 97, 3, 0.09);
    padding: 8px;
}

#hero .left-side .main-content .rating-box .photo img {
    border-style: solid;
    border-width: 0px;
    border-radius: 50%;
    height: 34px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 34px;
    margin-right: -9px;
}

#hero .left-side .main-content .rating-box .photo img:first-child {
    margin-right: 0;
}

#hero .left-side .main-content .rating-box .left .stars i {
    font-size: 14px;
    color: rgba(253, 135, 35, 1);
}

#hero .left-side .main-content .rating-box .left p {
    line-height: 100%;
    font-family: Cairo;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-muted-brown);
}


#hero .left-side .main-content .title h1 {
    font-family: Cairo;
    color: var(--color-dark-grayish-brown);
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 25px;
    margin-top: 25px;
}

#hero .left-side .main-content .discount h4,
.discount h4 {
    font-family: Cairo;
    font-size: 23px;
    font-weight: 700;
    color: var(--color-muted-brown);
}

#hero .left-side .main-content .discount p,
.discount p {
    font-family: Cairo;
    color: var(--color-slightly-dark-gray);
    font-size: 18px;
    font-weight: 500;
    text-decoration: line-through;
    margin: auto 11px;
}

#hero .left-side .main-content .discount .percentage,
.discount .percentage {
    font-size: 14px;
    font-family: Cairo;
    border-style: solid;
    border-width: 0px;
    border-radius: 6px;
    color: var(--color-yellow-dark);
    background-color: var(--color-yellow-light);
    padding-top: 4px;
    padding-bottom: 4px;
    padding-right: 7px;
    padding-left: 7px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

#hero .left-side .main-content .description {
    font-family: Cairo;
    line-height: 160%;
    color: rgba(35, 28, 28, 0.68);
    font-weight: 500;
    font-size: 16px;
    margin-top: 20px;
}

#hero .left-side .main-content .title-box .r {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 6px 2px;
    margin-left: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#hero .left-side .main-content .title-box .r i {

    color: var(--color-yellow-dark);
    font-size: 18px;
    margin-left: 2px;
}

#hero .left-side .main-content .title-box .r span {
    font-family: Cairo;
    text-align: center;
    line-height: 100%;
    letter-spacing: -1px;
    font-weight: 900;
    font-size: 22px;
    color: var(--color-soft-orange);
}

#hero .left-side .main-content .choosing .form-container {
    border-style: solid;
    background-repeat: no-repeat;
    border-width: 0px;
    border-radius: 20px;
    background-color: var(--color-yellow-light);
    background-position: center center;
    padding-top: 22px;
    padding-bottom: 22px;
    padding-right: 18px;
    padding-left: 18px;
    background-size: cover;
    background-image: url('https://files.easy-orders.net/1730812154206497530form-bg.svg');
}

#hero .left-side .main-content .choosing .title-box p {
    color: var(--color-dark-grayish-brown);
    line-height: 140%;
    font-family: Cairo;
    font-size: 18px;
    font-weight: 700;
}

#hero .left-side .main-content .form-container form .input-container {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    background-color: var(--color-white);
    padding: 6px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#hero .left-side .main-content .form-container form .input-container img {
    border-style: solid;
    border-width: 0px;
    padding: 4px;
    border-radius: 6px;
    background-color: var(--color-yellow-light);
    height: 36px;
}

#hero .left-side .main-content .form-container form .input-container .input-box {
    width: 100%;
}

#hero .left-side .main-content .form-container form .input-container .input-box input {
    font-family: Cairo;
    font-weight: 400;
    color: var(--color-dark-grayish-brown);
    border-radius: 8px;
    height: 100%;
    font-size: 15px;
    width: 100%;
    outline: none;
    border: none;
    min-height: inherit;
    max-height: inherit;
    overflow: visible;
    line-height: 1.15;
}

#hero .left-side .main-content .form-container form .input-container .input-box input::placeholder {
    color: #abb1bc;
}

#hero .left-side .main-content .choosing .radio-container {
    margin-top: 1px;
    justify-content: space-between;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 19px;
}


#hero .accordion-element input {
    width: 20px;
    height: 20px;
}

#hero .accordion-element input:checked {
    background-color: var(--main-color);
    color: var(--main-color);
}

#hero .accordion-element label {
    padding-right: 6px;
    line-height: 18px;
    font-weight: 500;
    font-size: 18px;
    color: var(--color-dark-grayish-brown);
    font-family: Cairo;
    margin-top: auto;
}

#hero .accordion-btn {
    width: 100%;
    font-size: 17px;
    font-weight: 500;
    outline: none;
    border: none;
    margin-bottom: 20px;
    padding: 10px 12px;
    border-radius: 8px;
    background-color: transparent !important;
    color: var(--color-deep-slate);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#hero .accordion-btn .price {
    color: var(--color-muted-brown);
    line-height: 18px;
    font-weight: 500;
    font-size: 18px;
}

#hero .accordion-btn span {
    color: var(--color-muted-brown);
    text-decoration: line-through;
    opacity: .8;
    font-size: 16px;
}

#hero .accordion-btn .acc-title {
    display: flex;
}

#hero .accordion-btn .free {
    padding: 4px 10px;
    background-color: var(--color-light-gray);
    width: fit-content;
    margin-right: 20px;
    text-align: center;
    margin-top: auto;
}

#hero .accordion-btn .free p {
    font-size: 11px;
    margin: auto;
    color: var(--color-dark-grayish-brown);

}

#hero .accordion-element .color {
    color: var(--color-deep-green);
}

#hero .accordion-element select {
    color: var(--color-deep-green);
    width: 30%;
    cursor: pointer;
    margin-right: 10px;
}

#hero .accordion-element .best-offer {

    border-radius: 5px;
    margin-top: -10px;
    margin-right: 20px;
    width: 120px;
    padding: 1px 5px;
    text-align: center;
    position: absolute;

}

#hero .accordion-element .more {
    background-color: var(--color-light-cyan);
}

#hero .accordion-element .best {
    background-color: #fdaf28;
}

#hero .accordion-element .best-offer h6 {
    font-size: 11px;
    color: var(--color-white);
    margin: 5px 0px;
}

#hero .accordion-body {
    font-weight: 400;
    font-size: 15px;
}

#hero .accordion-body span {
    font-weight: 600;
    font-size: 16px;
}

#hero .choosing .title-box img {
    margin-right: 8px;
    width: 40%;
    height: auto;
}

#hero .choosing .total-price {
    border-style: solid;
    border-color: var(--color-muted-blue);
    border-width: 0px;
    align-items: center;
    border-radius: 10px;
    padding-top: 7px;
    padding-bottom: 7px;
    padding-right: 11px;
    padding-left: 20px;
    background-color: var(--color-yellow-light);
}

#hero .choosing .total-price img {
    width: auto;
    margin-left: 6px;
    height: 32px;
}

#hero .choosing .total-price p {
    line-height: 20px;
    text-align: left;
    font-family: Cairo;
    font-weight: 700;
    color: var(--color-dark-grayish-brown);
    font-size: 14px;
    margin: auto 0;
}

#hero .choosing .total-price span {
    font-family: Cairo;
    line-height: 24px;
    color: var(--color-muted-brown);
    font-size: 16px;
    font-weight: 700;
}

#hero .choosing .order-now {
    font-family: Cairo;
    line-height: 170%;
    font-size: 16px;
    padding: 16px;
    color: var(--color-white);
    background-color: var(--main-color);
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
    outline: none;
    width: 100%;
    animation-iteration-count: infinite;
    animation-name: pulse;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
    animation-duration: 1000ms;
    text-align: center;
}

@keyframes pulse {
    0% {
        transform: scale3d(1, 1, 1);
    }

    50% {
        transform: scale3d(1.05, 1.05, 1.05);
    }

    100% {
        transform: scale3d(1, 1, 1);
    }
}

#hero .choosing .exist-amount {
    align-items: center;
    border-radius: 10px;
    padding: 7px;
    background-color: var(--color-yellow-light);
}

#hero .choosing .exist-amount .left i {
    animation-iteration-count: infinite;
    animation-duration: 1400ms;
    animation-name: heartBeat;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
    margin: auto 0px auto 3px;
    font-size: 20px;
    color: var(--color-soft-orange);
}

#hero .choosing .exist-amount .left p {
    line-height: 100%;
    font-family: Cairo;
    color: var(--color-dark-grayish-brown);
    font-size: 15px;
    font-weight: 600;
    margin: auto 0px;
}

#hero .choosing .exist-amount .line {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    border-radius: 100px;
    width: 60%;
}

#hero .choosing .exist-amount .line .l {
    width: 30%;
    background-color: rgba(251, 174, 42, 1);
    height: 3px;
}

#hero .choosing .exist-amount .line .r {
    width: 70%;
    background-color: rgba(247, 196, 48, 0.35);
    height: 3px;
}

#hero .choosing .main-description {
    font-family: Cairo;
    color: var(--color-muted-brown);
    font-weight: 400;
    font-size: 15px;
    line-height: 170%;
}

#hero .choosing .features-content .item img {
    margin-bottom: 12px;
    width: auto;
    height: 50px;
    background-color: var(--color-yellow-light);
    border-style: solid;
    border-color: var(--color-yellow-dark);
    border-width: 0px;
    padding: 8px;
    border-radius: 14px;
}

#hero .choosing .features-content .item h6 {
    color: var(--color-dark-grayish-brown);
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-family: Cairo;
    font-size: 14px;
    line-height: 130%;
}



/* accordion-butn */
.accordion-element {
    margin-bottom: 25px;
    background-color: var(--color-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: Cairo;
    font-weight: bold;
    color: var(--color-deep-slate);
    width: 100%;
    z-index: 100;
    border-radius: 16px;
}

.accordion-element .accordion-butn .btn-title {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition-duration: 240ms;
    padding: 18px;
}

.accordion-element .accordion-butn .btn-title .right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.accordion-element .accordion-butn .btn-title .right img {
    width: auto;
    margin-left: 10px;
    background-color: var(--color-yellow-light);
    border-style: solid;
    border-radius: 10px;
    border-width: 0px;
    padding: 4px;
    height: 36px;
}

.accordion-element .accordion-butn .btn-title .right span {
    line-height: 20px;
    color: var(--color-dark-grayish-brown);
    font-family: Cairo;
    font-weight: 600;
    font-size: 16px;
}

.accordion-butn {
    border: none;
    font-size: 16px;
    padding: 0px;
    font-family: Cairo;
    color: var(--color-deep-slate);
    background-color: var(--color-white);

}

.accordion-butn:hover {
    background-color: var(--color-light-gray);
}

.accordion-butn .btn-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media only screen and (max-width: 992px) {

    #hero .right-side,
    #hero .left-side {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {

    #hero .right-side,
    #hero .left-side {
        width: 100%;
    }

    #hero .carousel .carousel-inner .carousel-item img {
        height: 250px;
    }

    #hero .left-side .main-content .rating-box .photo img {
        width: 28px;
        height: 28px;
    }

    #hero .left-side .main-content .rating-box .left p {
        font-size: 11px;
    }

    #hero .left-side .main-content .title h1 {
        font-size: 24px;
    }

    #hero .left-side .main-content .discount h4,
    .discount h4 {
        font-size: 18px;
    }

    #hero .left-side .main-content .discount p,
    .discount p {
        font-size: 16px;
    }

    #hero .left-side .main-content .title-box .r span {
        font-size: 16px;
    }

    #hero .left-side .main-content .choosing .title-box p,
    #hero .choosing .main-description,
    #hero .choosing .exist-amount .left p,
    #hero .choosing .features-content .item h6,
    #hero .accordion-btn span {
        font-size: 13px;
    }

    #hero .accordion-btn .acc-title {
        flex-direction: column;
    }

    #hero .accordion-element label {
        font-size: 14px;
        padding: 0;
    }

    #hero .accordion-btn .free {
        margin-right: 0;
    }

    #hero .accordion-btn .price {
        font-size: 15px;
    }

    #hero .accordion-element select {
        width: 50%;
    }

    #hero .choosing .exist-amount {
        margin-top: 30px;
    }

    #hero .left-side .main-content {
        padding: 5px;
    }

    #hero .choosing .order-now {
        font-size: 18px;
        padding: 24px;
    }

    #hero .left-side .main-content .choosing .form-container {
        padding: 5px;

    }
}



/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    overflow: hidden;
}

.section-title {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title .top {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    background-color: var(--color-yellow-light);
    padding: 8px 16px 8px 20px;
    border-radius: 10px;
}

.section-title .top span {
    margin-right: 0px;
    display: flex;
    vertical-align: middle;
    max-width: 100%;
    margin-left: 6px;
    font-size: 18px;
    color: var(--color-yellow-dark);
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.section-title .top h6 {
    line-height: 22.4px;
    font-family: Cairo;
    font-weight: 700;
    font-size: 14px;
    color: var(--color-muted-brown);
    margin: auto;
}

.section-title h1 {
    font-family: Cairo;
    text-align: center;
    color: rgb(72, 59, 54);
    line-height: 52px;
    font-size: 40px;
    font-weight: 700;
    margin: 0px;
}

.section-title p {
    font-family: Cairo;
    font-size: 18px;
    color: var(--color-muted-brown);
    line-height: 28.8px;
    font-weight: 400;
    text-align: center;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
}

@media only screen and (max-width: 767px) {
    .section-title {
        margin-bottom: 20px;
    }

    .section-title h1 {
        font-size: 21px;
    }

    .section-title p {
        font-size: 15px;
    }

}


/*--------------------------------------------------------------
# features
--------------------------------------------------------------*/
#features .content {
    background-color: rgb(255, 255, 255);
    border-style: solid;
    border-width: 0px;
    border-radius: 32px 32px 0px 0px;
    padding: 52px 40px 60px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 150px;
}

#features .content .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#features .content .item img {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 18px;
    width: auto;
    background-color: var(--color-yellow-light);
    border-style: solid;
    border-radius: 14px;
    border-color: var(--color-light-cyan);
    border-width: 0px;
    height: 54px;
    padding: 8px;
}

#features .content .item h5 {
    color: rgb(72, 59, 54);
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
    font-family: Cairo;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

#features .content .item p {
    font-family: Cairo;
    font-weight: 400;
    color: rgb(72, 59, 54);
    line-height: 22.4px;
    text-align: center;
    font-size: 14px;
}

@media only screen and (max-width: 767px) {
    #features {
        margin-bottom: 30px;
    }

    #features .content {
        margin-top: 50px;
        padding: 30px 10px 40px;
        border-radius: 32px 32px 32px 32px;
        margin-bottom: 10px;
    }

    #features .content .item {
        margin-bottom: 10px;
    }

    #features .content .item img {
        height: 44px;
    }

    #features .content .item h5 {
        font-size: 16px;
    }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
    padding-top: 100px;
    padding-bottom: 100px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('https://files.easy-orders.net/1730815545147228170serv-bg.svg');
    background-position: 0px 40px;
}

.services .content .accordion {
    max-width: 100%;
    margin-bottom: 20px;
    border-style: solid;
    border-width: 0px;
    border-radius: 18px;
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: 50% 50%;
    align-items: flex-start;
    gap: 20px;
}

.services .content .accordion .accordion-element {
    max-width: 100%;
    width: 100%;
    border-style: solid;
    overflow: hidden;
    background-color: var(--color-white);
    z-index: 100;
    border-width: 0px;
    border-radius: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.services .content .accordion .accordion-element button .btn-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 21px;
    background-color: var(--color-white);
}

.services .content .accordion .accordion-element button:hover {
    background-color: var(--secondary-color);
}

.services .content .right img {
    width: auto;
    margin-left: 10px;
    background-color: var(--color-yellow-light);
    border-style: solid;
    border-width: 0px;
    height: 40px;
    border-radius: 12px;
    padding: 4px;
}

.services .content .right span {
    color: var(--color-dark-grayish-brown);
    line-height: 20px;
    font-family: Cairo;
    font-weight: 700;
    font-size: 16px;
}

.services .content i {
    margin: auto 0;
    border-radius: 6px;
    padding: 2px;
    background-color: var(--color-yellow-light);
    border-style: solid;
    border-width: 0px;
    font-size: 24px;
    color: var(--color-muted-brown);
}

.btn-container {
    margin-top: 60px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.btn-container .btn-box {
    width: 40%;
    align-items: center;
    display: flex;
}

.btn-container .btn-box .btn-r {
    max-width: 100%;
    margin-left: 8px;
    height: 30px;
    box-sizing: border-box;
    animation-duration: 1s;
    animation-fill-mode: both;
    border-style: none;
    display: block;
    width: auto;
    object-fit: cover;
    position: relative;
}

.btn-container .btn-box .btn-l {
    max-width: 100%;
    margin-right: 8px;
    height: 30px;
    box-sizing: border-box;
    animation-duration: 1s;
    animation-fill-mode: both;
    border-style: none;
    display: block;
    width: auto;
    object-fit: cover;
    position: relative;
}

.btn-box a {
    width: 100%;
    font-size: 14px;
    font-family: Roboto;
    font-weight: 400;
    border-style: solid;
    border-width: 0px;
    transition-duration: 0.3s;
    padding: 18px 13px 17px;
    border-radius: 14px;
    background-color: var(--main-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: block;
    text-decoration: none solid rgb(0, 117, 255);
    box-sizing: border-box;
    animation-duration: 1s;
    animation-fill-mode: both;
    position: relative;
}

.btn-box a:hover {
    transform: translateY(-10px);
}

.btn-box a .top {
    max-width: 100%;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-box a .top h5 {
    line-height: 17px;
    text-align: center;
    text-transform: uppercase;
    font-family: Cairo;
    font-weight: 700;
    font-size: 17px;
    color: rgb(255, 255, 255);
    margin-top: auto;
    margin-bottom: auto;
}

.btn-box a .top i {
    margin-right: 7px;
    font-weight: 700;
    font-size: 17px;
    color: rgb(255, 255, 255);
}

.btn-box a p {
    font-family: Cairo;
    line-height: 22.4px;
    text-align: center;
    font-size: 14px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    margin-top: 4px;
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .services {
        padding-bottom: 60px;
    }

    .services .content .accordion {
        grid-template-columns: 100%;
        gap: 5px;
    }

    .btn-container {
        margin-top: 20px;
    }

    .btn-container .btn-box {
        width: 70%;
    }

    .btn-box a {
        padding: 14px;
    }
}



/*--------------------------------------------------------------
# changing
--------------------------------------------------------------*/

#changing .content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-style: solid;
    border-width: 0px;
    background-repeat: no-repeat, no-repeat;
    background-position: 50% 50%, 50% 50%;
    background-size: cover, cover;
    background-image: url('https://files.easy-orders.net/1730815926511700646changing-bg.svg'), linear-gradient(179deg, var(--color-yellow-light), rgba(199, 163, 113, 0.07));
    border-radius: 32px;
    padding: 12px 26px;
    margin: 100px auto;
    max-width: 1360px;

}

#changing .content .right,
#changing .content .left {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
}

#changing .content .top {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px 2px 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 6px;
}

#changing .content .top span {
    margin-right: 0px;
    display: flex;
    vertical-align: middle;
    max-width: 100%;
    margin-left: 6px;
    color: var(--color-light-cyan);
    font-size: 20px;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

#changing .content .top h5 {
    max-width: 100%;
    font-family: Cairo;
    text-align: center;
    line-height: 20px;
    letter-spacing: -1px;
    font-weight: 700;
    color: var(--color-yellow-dark);
    font-size: 20px;
}

#changing .content h4 {
    max-width: 100%;
    margin-bottom: 4px;
    font-weight: 700;
    color: rgb(72, 59, 54);
    font-family: Cairo;
    line-height: 32px;
    text-align: center;
    font-size: 20px;
}

#changing .content p {
    font-family: Cairo;
    color: var(--color-muted-brown);
    font-weight: 400;
    line-height: 25.6px;
    text-align: center;
    font-size: 16px;
    max-width: 100%;
}

#changing .content .mid {
    display: flex;
    align-items: center;
    justify-content: center;
    border-style: solid;
    border-width: 0px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 40px;
    margin: -60px 26px;
    position: relative;
}

#changing .content .mid .img1 {
    position: absolute;
    border-style: none;
    width: 100%;
    height: 500px;
    max-width: 100%;
    min-height: 100%;
    object-position: 100% 50%;
}

#changing .content .mid .in {
    width: 50%;
    animation-duration: 1s;
    animation-fill-mode: both;
    right: 0px;
    position: absolute;
    height: 500px;
}

#changing .content .mid .in .switch-box {
    position: absolute;
    top: 250px;
    left: 0px;
    transform: matrix(1, 0, 0, 1, -20.608, -22.4);
}

#changing .content .mid .in .switch-box span {
    margin-right: 0px;
    margin-left: 0px;
    display: inline-flex;
    vertical-align: middle;
    max-width: 100%;
    color: rgb(255, 255, 255);
    border-radius: 100px;
    padding: 8px;
    background-color: rgba(194, 190, 190, 0.7);
    border-style: solid;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-width: 2.4px;
    border-color: rgba(255, 255, 255, 0.67);
    justify-content: center;
    align-items: center;
    opacity: 1;
}

#changing .content .mid .in .img2 {
    box-sizing: border-box;
    animation-duration: 1s;
    animation-fill-mode: both;
    border-style: none;
    width: 100%;
    height: 500px;
    max-width: 100%;
    min-height: 100%;
    object-position: 100% 50%;
}

@media only screen and (max-width: 767px) {
    #changing .content {
        margin-top: 50px;
        padding: 0;
    }

    #changing .content .mid {
        margin: 30px 0;
    }
}

@media only screen and (max-width: 992px) {
    #changing .content .mid {
        margin: 40px 0px;
    }
}



/*--------------------------------------------------------------
# assistant
--------------------------------------------------------------*/
#assistant {
    background-repeat: no-repeat, no-repeat;
    overflow: hidden;
    border-style: solid;
    border-width: 0px;
    background-size: cover, cover;
    background-position: 50% 100%, 50% 100%;
    background-attachment: scroll, scroll;
    background-image: url('https://files.easy-orders.net/1730815975174033749serv-bg%20%281%29.svg'), linear-gradient(0deg, var(--color-yellow-light), rgb(255, 255, 255));
    padding-top: 150px;
    padding-bottom: 0px;
    margin-bottom: 120px;
}

#assistant .assistant-container {
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.right-img,
.left-img {
    margin-bottom: -120px;
    margin-right: 20px;
    margin-left: 14px;
    height: 40px;
    width: auto;

}

#assistant .content {
    display: grid;
    grid-template-columns: 32% 32% 32%;
    gap: 30px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    max-width: 1220px;
}

#assistant .content .item {
    max-width: 100%;
    flex-flow: column wrap;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    border-style: solid;
    border-width: 0px;
    display: flex;
    background-image: linear-gradient(182deg, rgb(255, 255, 255), rgba(255, 255, 255, 0.95));
    background-color: rgb(255, 255, 255);
    border-radius: 34px 34px 0px 0px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 22px 22px 48px;
    min-height: 220px;
}

#assistant .content .item img {
    width: 40px;
    height: 40px;
    margin: -52px auto 24px;
    width: 60px;
    border-style: solid;
    border-radius: 100px;
    border-width: 0px;
    height: 60px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#assistant .content .item h4 {
    font-family: Cairo;
    color: rgb(72, 59, 54);
    line-height: 18px;
    font-size: 18px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 12px;
}

#assistant .content .item p {
    font-family: Cairo;
    color: var(--color-muted-brown);
    line-height: 25.6px;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}

@media only screen and (max-width: 767px) {
    #assistant {
        padding-top: 0px;
        margin-bottom: 0px;
    }

    #assistant .content {
        grid-template-columns: 100%;
        gap: 50px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    #assistant .content .item {
        border-radius: 34px 34px 34px 34px;
    }

    .right-img,
    .left-img {
        display: none;
    }
}

@media only screen and (max-width: 992px) {
    #assistant {
        padding-top: 50px;
    }
}


/*--------------------------------------------------------------
# using
--------------------------------------------------------------*/
#using {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
    padding-top: 60px;
    padding-bottom: 100px;
}

#using .content {
    width: 1210px;
    box-sizing: border-box;
    animation-duration: 1s;
    animation-fill-mode: both;
    margin: 0px auto;
    max-width: 100%;
    position: relative;
    z-index: 1;
}

#using .content .item {
    background-color: rgb(255, 255, 255);
    align-items: center;
    flex-flow: row nowrap;
    border-radius: 28px;
    display: flex;
    justify-content: space-between;
    z-index: 100;
    padding: 18px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 0%;
    background-image: url('https://files.easy-orders.net/1730816031362220381using-bg.svg');
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 44px;
    max-width: 1000px;
}

#using .content .item .right {
    max-width: 100%;
}

#using .content .item .right .box {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#using .content .item .right .top {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px 2px 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 6px;
}

#using .content .item .right .top span {
    margin-right: 0px;
    display: flex;
    vertical-align: middle;
    max-width: 100%;
    margin-left: 5px;
    color: var(--color-light-cyan);
    font-size: 22px;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

#using .content .item .right .top h3 {
    max-width: 100%;
    font-family: Cairo;
    text-align: center;
    line-height: 30px;
    letter-spacing: -1px;
    font-weight: 700;
    color: var(--color-yellow-dark);
    font-size: 30px;
}

#using .content .item .right h3 {
    max-width: 100%;
    margin-bottom: 6px;
    font-weight: 700;
    color: rgb(72, 59, 54);
    font-family: Cairo;
    line-height: 35.2px;
    text-align: center;
    font-size: 22px;
}

#using .content .item .right p {
    font-family: Cairo;
    color: var(--color-muted-brown);
    font-weight: 400;
    line-height: 25.6px;
    text-align: center;
    font-size: 16px;
    max-width: 100%;
}

#using .content .item img {
    width: 100%;
    border-style: solid;
    border-radius: 12px;
    border-width: 0px;
    max-height: 320px;
    height: 320px;
}

@media only screen and (max-width: 767px) {
    #using .content .item {
        flex-direction: column;
        padding: 10px 0px;
    }

    #using .content .item-reverse {
        flex-direction: column-reverse;
    }

    #using .content .item .right .top h3 {
        font-size: 24px;
    }

    #using .content .item .right h3 {
        font-size: 17px;
    }

    #using .content .item .left {
        margin-top: 10px;
    }

    #using .content .item img {
        width: 100%;
        height: auto;
    }

    .btn-box button {
        width: 300px;
    }
}

@media only screen and (max-width: 992px) {
    #using .content .item img {
        width: 100%;
    }
}



/*--------------------------------------------------------------
# attributes
--------------------------------------------------------------*/
#attributes {
    background-repeat: repeat;
    background-position: 50% 50%;
    background-size: cover;
    padding: 70px 24px 40px;
    margin-bottom: 50px;
}

#attributes .content {
    margin: 0px auto;
    max-width: 100%;
}

#attributes .content .main-content {
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
    background-position: 50% 50%, 50% 50%;
    background-image: url('../img/serv-bg.svg'), linear-gradient(158deg, var(--color-yellow-light), var(--color-light-cyan));
    border-radius: 38px;
    padding: 1px 46px 58px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
}

#attributes .content .main-content img {
    width: auto;
    margin: -41px auto 30px;
    background-color: rgb(255, 255, 255);
    height: 78px;
    border-radius: 24px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 13px;
}

#attributes .content .main-content .box {
    display: grid;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    grid-template-columns: 24% 24% 24% 24%;
    align-items: flex-start;
    gap: 20px;

}

#attributes .content .main-content .box .item {
    border-color: rgb(255, 255, 255);
    padding: 22px;
    background-color: rgb(255, 255, 255);
    background-size: cover;
    background-image: url('../img/body-bg.svg');
    background-position: 0% 50%;
    border-radius: 22px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: -webkit-fill-available;
}

#attributes .content .main-content .box .item .body {
    display: flex;
    justify-content: flex-start;
    flex-flow: column nowrap;
}

#attributes .content .main-content .box .item .body .top {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

#attributes .content .main-content .box .item .body .top span {
    margin-right: 0px;
    display: flex;
    vertical-align: middle;
    max-width: 100%;
    margin-left: 7px;
    color: var(--color-yellow-dark);
    padding: 3px 6px;
    font-size: 16px;
    border-radius: 10px;
    background-color: var(--color-yellow-light);
    justify-content: center;
    align-items: center;
}

#attributes .content .main-content .box .item .body .top h5 {
    color: rgb(72, 59, 54);
    line-height: 16px;
    font-family: Cairo;
    font-weight: 700;
    font-size: 16px;
}

#attributes .content .main-content .box .item .body p {
    font-family: Cairo;
    font-weight: 400;
    line-height: 24px;
    font-size: 15px;
    color: var(--color-muted-brown);
}

@media only screen and (max-width: 767px) {
    #attributes {
        margin-bottom: 0;
    }

    #attributes .content .main-content .box {
        grid-template-columns: 100%;
        gap: 15px;
    }

    #attributes .content .main-content {
        padding: 1px 22px 30px;
    }

    #attributes .content .main-content .box .item {
        padding: 16px;
    }
}


/*--------------------------------------------------------------
# video
--------------------------------------------------------------*/
#video {
    margin-bottom: 50px;
    background-repeat: no-repeat, no-repeat;
    border-style: solid;
    border-width: 0px;
    padding-top: 100px;
    padding-bottom: 40px;
    background-size: cover, cover;
    background-image: url('../img/bg.svg'), linear-gradient(0deg, var(--color-light-gray), rgba(0, 0, 0, 0));
}

#video .demo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#video .section-main {
    background-color: rgb(255, 255, 255);
    border-style: solid;
    border-width: 0px;
    border-radius: 30px;
    padding: 0px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-right: auto;
    margin-left: auto;
    width: 100%;
}

#video .section-main .video-content {
    max-width: 100%;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-top: 20px;
}

#video .section-main .video-content video {
    display: block;
    width: 100%;
    /* height: 599.263px; */
    border: 0px none rgb(0, 0, 0);
    border-radius: 16px;

}

#video .section-main .body-content {
    padding-right: 20px;
    padding-left: 20px;
    margin: 40px auto;
    max-width: 100%;

    display: grid;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    grid-template-columns: 33% 33% 33%;
    align-items: flex-start;
    gap: 30px;
}

#video .section-main .body-content .item {
    margin-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 1px;
    float: right;
}

#video .section-main .body-content .item img {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 15px;
    width: auto;
    background-color: var(--color-yellow-light);
    height: 54px;
    border-radius: 100px;
    padding: 9px;
}

#video .section-main .body-content .item h3 {
    color: rgb(72, 59, 54);
    text-align: center;
    text-transform: uppercase;
    font-family: Cairo;
    font-size: 18px;
    font-weight: 700;
    line-height: 23.4px;
    margin-bottom: 6px;
}

#video .section-main .body-content .item p {
    font-family: Cairo;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    color: var(--color-muted-brown);
    font-size: 15px;
}

@media only screen and (max-width: 767px) {
    #video {
        padding-top: 30px;
    }

    #video .section-main {
        padding: 0 10px;
    }

    #video .section-main .body-content {
        grid-template-columns: 100%;
        gap: 15px;
    }

    #video .section-main .body-content .item {
        margin-left: 0;
    }
}



/*--------------------------------------------------------------
# reviews
--------------------------------------------------------------*/
#reviews {
    margin-bottom: 100px;
}

#reviews .content {
    padding: 28px 40px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    border-radius: 24px;
    background-image: url('../img/reviews-bg.svg');
    background-color: var(--color-yellow-light);
}

#reviews .content .right-side {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

#reviews .content .right-side h2 {
    font-family: Cairo;
    color: var(--color-dark-grayish-brown);
    font-weight: 700;
    line-height: 130%;
    font-size: 29px;
    margin-bottom: 15px;
}

#reviews .content .right-side .mid {
    max-width: 100%;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

#reviews .content .right-side .mid .right {
    margin-left: 10px;
    border-color: rgba(247, 196, 48, 0.31);
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 0px;
    background-color: var(--color-yellow-light);
    padding: 7px 12px;
}

#reviews .content .right-side .mid .right .r {
    margin-left: 6px;
}

#reviews .content .right-side .mid .right .r i {
    color: var(--color-yellow-dark);
    font-size: 14px;
}

#reviews .content .right-side .mid p {
    margin: auto;
    line-height: 20px;
    font-family: Cairo;
    font-weight: 600;
    color: var(--color-muted-brown);
    font-size: 15px;
}

#reviews .content .right-side .mid span {
    font-family: Cairo;
    color: var(--color-dark-grayish-brown);
    font-size: 15px;
    line-height: 100%;
    font-weight: 700;
}

#reviews .content .right-side button {
    letter-spacing: 0px;
    line-height: 160%;
    font-family: Cairo;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-white);
    padding: 12px;
    border-radius: 10px;
    background-color: var(--main-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    width: 165px;
    outline: none;
    border: none;
    cursor: pointer;
}

#reviews .content .left-side {
    display: flex;
    flex-direction: column;

}

#reviews .content .left-side .item {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    border-style: solid;
    border-width: 0px;
    border-radius: 10px;
    align-items: center;
}

#reviews .content .left-side .item .right p {
    line-height: 100%;
    font-family: Cairo;
    color: var(--color-dark-grayish-brown);
    font-size: 15px;
    font-weight: 600;
    margin: auto;
}

#reviews .content .left-side .item .right .stars {
    margin-right: 12px;
}

#reviews .content .left-side .item .right .stars i {
    color: var(--main-color);
    font-size: 14px;
}

#reviews .content .left-side .item .left {
    width: 60%;
}

#reviews .content .left-side .item .left .right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    border-radius: 100px;
    overflow: hidden;
    min-width: 84%;
}

._f1 {
    width: 80%;
}

._f2 {
    width: 30%;
}

._f3 {
    width: 15%;
}

._f4 {
    width: 10%;
}

._f5 {
    width: 0%;
}

#reviews .content .left-side .item .left .right ._f1,
._f2,
._f3,
._f4,
._f5 {
    height: 6px;
    background-color: var(--color-yellow-dark);
    margin: 10px auto;
    border-radius: 20px;
}

._s1 {
    width: 20%;
}

._s2 {
    width: 70%;
}

._s3 {
    width: 85%;
}

._s4 {
    width: 90%;
}

._s5 {
    width: 100%;
}

#reviews .content .left-side .item .left .right ._s1,
._s2,
._s3,
._s4,
._s5 {
    background-color: rgba(247, 196, 48, 0.35);
    height: 6px;
    margin: 10px auto;
    border-radius: 20px;
}

#reviews .content .left-side .item .left p {
    line-height: 100%;
    font-family: Cairo;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-muted-brown);
    margin: auto;
}

#reviews .slider-content {
    margin-top: 50px;
}

.slider-content .swiper-slide .item {
    border-radius: 16px;
    height: 400px;
    width: 100%;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.slider-content .swiper-slide .item .top {
    height: 50%;
    width: 100%;
    border-radius: 16px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    overflow: hidden;
}

.slider-content .swiper-slide .item .top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-content .swiper-slide .item .stars {
    width: fit-content;
    margin-top: -20px;
    display: flex;
    align-items: center;
    padding-top: 9px;
    padding-bottom: 9px;
    padding-right: 12px;
    padding-left: 12px;
    background-color: rgba(255, 255, 255, 1);
    border-style: solid;
    border-width: 0px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.slider-content .swiper-slide .item .stars i {
    font-size: 14px;
}

.slider-content .swiper-slide .item .bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slider-content .swiper-slide .item .bottom .btm {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0 5px 0;
}

.slider-content .swiper-slide .item .bottom .btm img {
    margin-left: 3px;
    height: 14px;
    width: auto;
    display: block;
}

.slider-content .swiper-slide .item .bottom .btm h3 {
    font-size: 17px;
    font-weight: 700;
    font-family: Cairo;
    color: rgba(72, 59, 54, 1);
    line-height: 130%;
    margin: auto 0;
}

.slider-content .swiper-slide .item .bottom .para {
    padding: 0 20px 10px;
}

.slider-content .swiper-slide .item .bottom p {
    color: rgba(82, 68, 58, 0.81);
    font-family: Cairo;
    font-size: 15px;
    font-weight: 400;
    line-height: 160%;
    text-align: center;

}

.next-icon,
.prev-icon {
    color: var(--main-color);
    padding: 10px;
    font-size: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    padding: 20px 0;
}

@media only screen and (max-width: 767px) {
    #reviews {
        margin-bottom: 50px;
    }

    #reviews .content {
        padding: 20px 10px;
    }

    #reviews .content .right-side {
        align-items: center;
    }

    #reviews .content .right-side h2 {
        font-size: 26px;
    }

    #reviews .content .right-side .mid p {
        font-size: 12px;
    }

    #reviews .content .right-side .mid .right .r i {
        font-size: 12px;
    }

    #reviews .content .btn-review {
        margin: auto;
    }

    #reviews .content .left-side {
        margin-top: 20px;
    }

    #reviews .content .left-side .item .right p {
        font-size: 12px;
    }

    #reviews .content .left-side .item .right .stars i {
        font-size: 12px;
    }
}



/*--------------------------------------------------------------
# faq
--------------------------------------------------------------*/
#faq .faq-container {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: var(--color-yellow-light);
    background-attachment: scroll;
    padding: 80px 40px 70px 40px;
    border-radius: 40px;
    background-image: url('../img/serv-bg.svg');
    margin-right: auto;
    margin-left: auto;
}

#faq .content {
    width: 80%;
    margin: auto;
}

#faq .more-faq {
    margin-right: auto;
    margin-left: auto;
    margin-top: 118px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 41px 41px 41px;
    border-radius: 26px;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-position: top center;
    background-image: url('../img/more-faq.svg'), linear-gradient(120deg, rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.76));
}

#faq .more-faq .top-icon {
    width: auto;
    margin-top: -34px;
    margin-bottom: 24px;
    height: 70px;
    background-color: var(--color-white);
    padding: 17px;
    border-radius: 26px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#faq .more-faq h3 {
    font-weight: bolder;
}

#faq .more-faq p {
    font-family: Cairo;
    color: var(--color-muted-brown);
    font-weight: 400;
    line-height: 160%;
    text-align: center;
    font-size: 18px;
}

#faq .more-faq a {
    margin-right: auto;
    margin-left: auto;
    margin-top: 16px;
    width: 230px;
    font-size: 14px;
    font-family: Roboto;
    font-weight: normal;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px 8px 20px;
    background-color: var(--main-color);
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#faq .more-faq a img {
    margin-left: 10px;
    width: 36px;
    height: auto;
}

#faq .more-faq a p {
    font-family: Cairo;
    line-height: 130%;
    font-weight: 500;
    text-align: center;
    color: var(--color-white);
    font-size: 18px;
    margin: auto 0;
}

@media only screen and (max-width: 767px) {
    #faq .faq-container {
        padding: 40px 20px;
    }

    #faq .content {
        width: 100%;
    }

    .accordion-element .accordion-butn .btn-title .right span {
        font-size: 15px;
    }

    .accordion-element .accordion-butn .btn-title .right img {
        width: 28px;
        height: 28px;
    }

    #faq .more-faq {
        margin-top: 80px;
    }

    #faq .more-faq .top-icon {
        height: 62px;
    }

    #faq .more-faq h3 {
        font-size: 18px;
    }

    #faq .more-faq p {
        font-size: 16px;
    }
}


/*--------------------------------------------------------------
# cta
--------------------------------------------------------------*/
#cta {
    margin: 60px 0 0 0;

}

#cta .content {
    width: 80%;
    background-color: var(--color-white);
    border-style: solid;
    border-width: 0px;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    padding-top: 28px;
    padding-bottom: 28px;
    padding-right: 40px;
    padding-left: 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-right: auto;
    margin-left: auto;
    display: flex;
}

#cta .content .item {
    display: flex;
}

#cta .content .item img {
    margin-left: 6px;
    width: auto;
    background-color: var(--color-yellow-light);
    border-style: solid;
    border-color: var(--color-yellow-dark);
    border-width: 0px;
    border-radius: 14px;
    padding: 6px;
    height: 44px;
    display: block;
    object-fit: cover;
}

#cta .content .item h6 {
    color: var(--color-dark-grayish-brown);
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-family: Cairo;
    font-size: 14px;
    line-height: 130%;
    margin: auto 0;
}

@media only screen and (max-width: 767px) {
    #cta .content {
        width: 100%;
        padding: 20px 10px;
    }

    #cta .content .item {
        width: 50%;
        margin: 10px 0px
    }

    #cta .content .item img {
        height: 44px;
    }

    #cta .content .item h6 {
        font-size: 14px;
        font-weight: 600;
    }

    #footer .content .top {
        margin: auto;
    }
}



/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
#footer {
    margin-bottom: 100px;
}

#footer .content {
    display: flex;
    flex-direction: column;
}

#footer .content .top {
    display: flex;
    justify-content: space-between;
    padding: 30px 20px;
    border-color: var(--color-light-gray);
    border-radius: 24px;
    background-color: var(--color-light-gray);
}

#footer .content .top .item {
    display: flex;
    flex-direction: column;
}

#footer .content .top .item h3 {
    font-family: Cairo;
    line-height: 160%;
    letter-spacing: 0px;
    color: var(--color-dark-grayish-brown);
    font-size: 18px;
    font-weight: 700;
}

#footer .content .top .item p,
#footer .content .top .item ul {
    font-family: Cairo;
    line-height: 160%;
    font-weight: 400;
    color: var(--color-muted-brown);
    font-size: 15px;
}

#footer .content .top .item ul {
    list-style: none;
}

#footer .content .top .item ul li {
    padding-bottom: 7px;
    color: #483b36;
}

#footer .content .top .item ul li a {
    color: #483b36;
}

#footer .content .top .item ul li a {
    text-decoration: underline;

}

#footer .content .top .item .social-icons i {
    font-size: 22px;
    font-weight: bolder;
    margin-left: 20px;
    display: block;
    color: #000;
}

#footer .content .top .item input {
    font-size: 14px;
    border-width: 1px;
    border-style: solid;
    color: var(--color-dark-grayish-brown);
    line-height: 18px;
    font-family: Cairo;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-right: 16px;
    padding-left: 16px;
    border-color: var(--color-light-gray);
    border-radius: 10px;
    width: 100%;
}

#footer .content .top .item input:focus {
    border: 2px solid var(--main-color);
    outline: none;
}

#footer .content .top .item button {
    margin-top: 10px;
    font-family: Cairo;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 18px;
    color: var(--color-white);
    border-color: var(--color-white);
    background-color: var(--color-dark-grayish-brown);
    padding-top: 16px;
    padding-bottom: 16px;
    padding-right: 24px;
    padding-left: 24px;
    font-size: 15px;
    border-radius: 10px;
    outline: none;
    border: none;
    cursor: pointer;
    width: 100%;
}

#footer .content .bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}

#footer .content .bottom .item img {
    height: 26px;
    float: left;
}

@media only screen and (max-width: 767px) {
    #footer .content .top {
        padding: 20px 10px;
    }

    #footer .content .top .item h3,
    #footer .content .top .item .social-icons i {
        font-weight: 600;
    }

    #footer .content .top .item .social-icons i {
        font-size: 18px;
    }

    #footer .content .top .item {
        margin-top: 10px;
    }

    #footer .content .bottom {
        padding: 30px 0px 60px;
    }

    #footer .content .bottom .item img {
        float: initial;
        margin: auto;
    }
}



/* start static-section */
#static-section {
    padding-bottom: 18px;
    padding-right: 24px;
    padding-left: 24px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    left: 0;
    width: 100vw;
    z-index: 1000;
    bottom: 0;
}

#static-section .static {
    margin-right: auto;
    margin-left: auto;
    max-width: 1440px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-style: solid;
    border-top-width: 1px;
    border-bottom-width: 0px;
    border-left-width: 1px;
    border-right-width: 1px;
    background-color: var(--color-white);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 24px;
    z-index: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 18px;
    border-color: var(--color-muted-blue);

}

#static-section .static .right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
}

#static-section .static .right .r {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#static-section .static .right .r img {
    border-radius: 8px;
    box-shadow: 0px 0px 0px 6px rgba(251, 184, 46, 0.12);
    height: 64px;
    margin-left: 13px;
    width: 64px;
    min-width: 64px;
}

#static-section .static .right .r .details h3 {
    font-family: Cairo;
    color: var(--color-dark-grayish-brown);
    line-height: 160%;
    font-weight: 700;
    font-size: 19px;
    margin-bottom: 4px;
}

#static-section .static .right .r .details .inline {
    display: flex;
    align-items: center;
}

#static-section .static .right .r .details .inline .span1 {
    font-family: Cairo;
    font-weight: 700;
    font-size: 19px;
    color: var(--color-muted-brown);
    margin-left: 8px;
}

#static-section .static .right .r .details .inline .span2 {
    text-decoration-line: line-through;
    font-family: Cairo;
    color: var(--color-slightly-dark-gray);
    font-size: 18px;
    font-weight: 500;
    margin-left: 11px;
}

#static-section .static .right .r .details .inline .span3 {
    font-family: Cairo;
    border-style: solid;
    border-width: 0px;
    border-radius: 6px;
    color: var(--color-yellow-dark);
    background-color: var(--color-yellow-light);
    font-weight: 500;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-right: 7px;
    padding-left: 7px;
    font-size: 15px;
}

#static-section .static .left {
    width: 28%;
}

#static-section .static .left button {
    animation-name: pulse;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-duration: 1600ms;
}

#static-section .static .right {
    display: flex;
    padding-left: 20px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

#static-section .static .right img {
    margin-left: 18px;
    width: 60px;
    min-width: 60px;
    border-radius: 7px;
}

#static-section .static .right h5 {
    font-family: Tajawal;
    color: rgba(22, 39, 34, 1);
    font-weight: 600;
    line-height: 160%;
    font-size: 19px;
}

@media only screen and (max-width: 767px) {
    #static-section {
        padding: 0;
    }

    #static-section .static {
        display: flex;
        flex-direction: column;
        padding: 12px;
    }

    #static-section .static .right,
    #static-section .static .left h6 {
        display: none;
    }

    #static-section .static .left {
        width: 100%;
    }

    .back-to-top {
        bottom: 140px;
        width: 55px;
        height: 55px;
    }
}

#x-checkout-btn {
    border: 0;
    width: 100%;
}

/* end static-section */





/*========================== old code  ============================*/


.btn-container .btn-box {
    width: unset;

}

#x-checkout-btn {
    font-family: Cairo;
    line-height: 170%;
    font-size: 16px;
    padding: 16px;
    color: var(--color-white);
    background-color: var(--main-color);
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
    outline: none;
    width: 100%;
    animation-iteration-count: infinite;
    animation-name: pulse;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
    animation-duration: 1000ms;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/*quantity*/
.in-product-quantity-counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px;
    background-color: #fea65b73;
    border-radius: 20px;
    margin: 10px 0;
}

#checkout-form>div>form>div.in-product-quantity-counter>div {
    margin: 0 !important;
    padding: 5px 0 !important;
    background-color: #eee;
    border-radius: 15px;
}

#checkout-form>div>form>div.in-product-quantity-counter>label {
    font-size: 20px;
    font-weight: 600;
}

form label.block.text-sm.font-medium.text-gray-700 {
    font-size: 18px;
}

/*quantity*/


/*main carousel*/
.right-side .carousel .carousel-inner .carousel-item img,
#hero .carousel .carousel-inner .carousel-item img {
    height: auto !important;
    width: 100% !important;
    object-fit: cover !important;
    max-height: 65vh !important;
}

.right-side .carousel-indicators {
    position: static !important;
    margin-left: 0;
    margin-right: 0;
    padding: 10px 0px 5px 0px !important;
    width: 100%;
    overflow-x: auto;
    gap: 10px !important;
    display: flex;
}

.right-side .carousel-indicators li.thumbnail {
    width: auto !important;
    height: auto !important;

}

.right-side .carousel-indicators li img {
    height: auto !important;
    width: 100px !important;
    border-radius: 10px !important;
}

#main .carousel-indicators {
    position: static;
    margin-left: 0;
    margin-right: 0;
    padding: 20px 0px 5px 0px;
    width: 100%;
    overflow-x: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

section.first-preef {
    background-color: transparent;
    background-image: linear-gradient(180deg, #E8E7FD 60%, #FAE7F3 90%);
    padding: 80px 40px;
    border-radius: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 40px;
    margin: 65px 0 0px 0;
}

.text-first-preef {
    background-color: white;
    padding: 20px 40px;
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 35px;

    text-align: center;
}

.img-first-preef {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    border-top-right-radius: 220px;
    border-top-left-radius: 70px;
    border-bottom-right-radius: 70px;
    border-bottom-left-radius: 70px;
    background-image: url(https://files.easy-orders.net/1730785187483741202.jpg);
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 50vh;
}

.img-first-preef img {
    max-width: 100%;
    border-top-right-radius: 220px;
    border-top-left-radius: 70px;
    border-bottom-right-radius: 70px;
    border-bottom-left-radius: 70px;
}

.text-first-preef h1 {
    color: #474444;
    font-size: 36px;
    font-weight: 600;
}

.text-first-preef h5 {
    color: #50555C;
    font-size: 19px;
    font-weight: 500;
    line-height: 180%;
}

section.free-shipping {
    padding: 20px 0px 20px 0px;
    text-align: center;
    color: #50555C;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 3px;
    background-color: #E8E7FD;
    margin: 0 0 65px;
    font-weight: 900;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.img-first-preef {
    position: relative;
    overflow: visible;
}

.img-first-preef::before {
    content: "";
    position: absolute;
    top: 5%;
    right: 0%;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 0, 0, 0.5);
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.7);
    z-index: 1;
    animation: spin 2s linear infinite;
    transform: translate(-50%, -50%);
}


@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}






@media only screen and (max-width: 767px) {
    .right-side .carousel-indicators {
        gap: 5px !important;
    }

    section.first-preef {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        padding: 30px 20px;
        gap: 15px;
        margin: 35px 0 0 0;
    }

    .text-first-preef h1 {
        font-size: 27px !important;
        font-weight: 700 !important;
    }

    .text-first-preef h5 {
        font-size: 16px !important;
        line-height: 130% !important;
    }

    .text-first-preef {
        padding: 20px 12px !important;
        gap: 7px !important;
    }

    .right-side .carousel .carousel-inner {

        display: none !important;
    }

    .right-side .carousel-indicators li img {
        height: auto !important;
        width: auto !important;
        border-radius: 10px;
        max-width: 84vw !important;
        aspect-ratio: 1;
        max-height: 65vh;

    }

    .right-side .carousel-indicators li.thumbnail {
        width: 90vw !important;
        height: auto !important;
        border-radius: 10px;
        color: transparent !important;
    }

    #main .carousel-indicators li.thumbnail {
        padding: 0;
    }

    #delivery>div>div>div>p {
        font-family: Tajawal;
        font-size: 15px;
        color: rgba(43, 59, 53, 1);
        font-weight: 500;
    }

    #details h2 {
        font-size: 23px;
    }

    #questions .accordion-element .accordion-header button {
        padding: 13px;
    }

    .accordion-element .accordion-header button span {
        font-size: 16px !important;
        text-align: right;
    }

    .shipping_cost_container.mt-2.flex.items-center.justify-between {
        font-size: 18px !important;

    }

    .total-price.my-3.d-flex.align-items-center.justify-content-between {
        font-size: 17px;
        padding: 8px;
    }

    .accordion-element {
        margin-bottom: 12px;
    }
}


#main .left-side {

    max-width: 100%;
}


p#basePrice {
    font-size: 23px;
    text-decoration: line-through;
    color: #979494;
}

.carousel .carousel-inner .carousel-item {
    height: auto;
    background-color: #bdd03d;
    overflow: hidden;
    max-height: 65vh !important;
}







.carousel-indicators {
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    display: flex;
    gap: 10px;
}

.carousel-indicators .thumbnail {
    scroll-snap-align: center;
    background-color: transparent;
}

/*main carousel*/

#hero {
    margin-top: 5px;
}

.carousel .carousel-inner .carousel-item {
    background-color: transparent !important;
}