/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/
:root {
    /* Color  */
    --primary-yellow: #bea235;
    --light-gray: #e9e9e9;
    --section-color: #f6f6f6;
    --black: #090909;
    --white: #fff;

    /* Font Family  */
    --font-primary: "Neo Sans Arabic", sans-serif;

    /* Font Size */
    --fs-base: 62.5%;
    --fs-headline-large: 3.6rem;
    --fs-headline-medium: 2.8rem;
    --fs-headline-small: 2.8rem;
    --fs-title-large: 2.2rem;
    --fs-title-medium: 2rem;
    --fs-title-small: 1.8rem;
    --fs-body-large: 1.6rem;
    --fs-body-medium: 1.6rem;
    --fs-label-large: 1.6rem;
    --fs-label-medium: 1.4rem;
    --fs-label-small: 1.2rem;

    /* Line Height  */
    --lh-headline-large: 44px;
    --lh-headline-medium: 36px;
    --lh-headline-small: 32px;
    --lh-title-large: 28px;
    --lh-title-medium: 24px;
    --lh-title-small: 24px;
    --lh-body-large: 24px;
    --lh-body-medium: 24px;
    --lh-label-large: 24px;
    --lh-label-medium: 20px;

    /* Font Weight  */
    --weight-bold: 700;
    --weight-semiBold: 600;
    --weight-medium: 500;
    --weight-regular: 400;

    /* Radius */
    --radius-small: 8px;
    --radius-medium: 12px;
    --radius-large: 16px;
    --radius-extra-large: 32px;
    --radius-full: 1000px;
    --radius-circle: 50%;

    /* Shadow */
    --shadow-1: 0px 2px 4px 0px #00000033;
    --shadow-2: 0px 5px 10px 0px #0000000d;
    --shadow-3: 0px 5px 10px 0px #00000033;
    --shadow-4: 0px 10px 20px 0px #0000001a;

    /* Transition  */
    --main-transition: 0.3s;
    /* Spacing  */
    --section-padding: 50px;
    --padding-top: 140px;
    --padding-bottom: 60px;
}
@media (max-width: 800px) {
    :root {
        --section-padding: 15px;
    }
}
/*-----------------------------------*\
  #RESET
\*-----------------------------------*/
body {
    /* min-height: 1000px; */
}
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul li {
    list-style: none;
}

img,
input,
select,
button {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    height: auto;
}

textarea {
    height: 115px;
    resize: none;
}

input:where(:not([type="checkbox"], [type="radio"])),
select,
textarea {
    background: none;
    font-size: var(--fs-label-medium);
    font-weight: var(--weight-medium);
    padding: 12px 15px;
    border-radius: var(--radius-small);
    width: 100%;
    outline: none;
    margin-top: 10px;
}
input:where(:not([type="checkbox"], [type="radio"])),
select {
    height: 45px;
}
::placeholder {
    font-size: 12px;
    font-weight: var(--weight-medium);
}
input,
select {
    border: 1px solid var(--light-gray);
}

input:where([type="checkbox"]:not(.not), [type="radio"]:not(.not)) {
    position: relative;
    width: 20px;
    height: 20px;
    background-color: var(--white);
    border-radius: 0.25rem;
    appearance: none;
    cursor: pointer;
    border-color: #000;
}

input[type="checkbox"]:not(.not) {
    border-radius: 50%;
    border-radius: 0.25rem;
}

input[type="radio"]:not(.not) {
    border-radius: 50%;
}

input[type="checkbox"]:not(.not):checked {
    background-color: var(--primary-yellow);
}
input[type="radio"]:not(.not):checked {
    background-color: var(--white);
    border: 1px solid var(--primary-yellow);
}

input[type="checkbox"]:not(.not):before {
    content: "";
    position: absolute;
    top: 0px;
    right: 5px;
    width: 8px;
    height: 15px;
    border: 3px solid transparent;
    border-right: none;
    border-top: none;
    transform: rotate(45deg) scale(1);
}

input[type="radio"]:not(.not):before {
    content: "";
    position: absolute;
    top: 3px;
    right: 3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: transparent;
    transform: scale(1);
}

input[type="checkbox"]:checked:before {
    border-color: #fff;
    animation: chicAnim 0.2s ease;
}
@keyframes chicAnim {
    from {
        transform: rotate(45deg) scale(0);
    }
}

input[type="radio"]:not(.not):checked:before {
    background-color: var(--primary-yellow);
    animation: radioAnim 0.2s ease;
}
@keyframes radioAnim {
    from {
        transform: scale(0);
    }
}
label {
    font-size: var(--fs-label-medium);
    font-weight: var(--weight-bold);
    line-height: var(--lh-label-medium);
}
@media (max-width: 600px) {
    label {
        font-size: var(--fs-label-small);
        font-weight: var(--weight-medium);
    }
}
input:focus,
select:focus,
textarea:focus {
    border: 1px solid var(--primary-yellow);
}
button {
    cursor: pointer;
    border: none;
}

address {
    font-size: normal;
}
/* Start Custom Input Number  */
.number-custom {
    height: 40px;
    display: flex;
    background-color: rgb(255, 255, 255);
    align-items: center;
}
.number-custom i {
    color: var(--white);
    background-color: var(--primary-yellow);
    padding: 5px;
    border-radius: 50%;
    font-size: 10px;
    cursor: pointer;
}
input[type="number"] {
    appearance: textfield;
    text-align: center;
    border: none;
    font-size: 15px;
    color: var(--main-color);
    background-color: #ffff;
    outline: none;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    appearance: none;
    margin: 0;
}

/* End Custom Input Number  */
html {
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    scroll-behavior: smooth;
    direction: ltr;
}
section {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
}
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background-color: var(--light-gray);
    border-radius: var(--radius-small);
}

::-webkit-scrollbar-thumb {
    background-color: var(--black);
    border-radius: var(--radius-small);
}

.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

/*-----------------------------------*\
  #COMPONENT
\*-----------------------------------*/
.track-slider {
    margin: 30px 0;
    width: 100%;
}
.track-slider .head-slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
}
.track-slider .head-slider h3 {
    font-size: 25px;
    font-weight: 500;
}
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #ececec;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--main-transition);
    background-color: #fff;
    padding-bottom: 25px;
}
.card:hover {
    box-shadow: 0 2px 15px rgb(0 0 0 / 20%);
}
.card .icon-cart {
    width: 80px;
    height: 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%) scale(0);
    top: 60px;

    font-size: 20px;
    color: #fff;
    background-color: var(--main-color);
    transition: var(--main-transition);
}
.card:hover .icon-cart {
    transform: translateX(-50%) scale(1);
}
.card img {
    width: 150px;
    max-width: 100%;
    height: 150px;
    object-fit: cover;
    margin: 0 auto;
}
.card .price {
    display: flex;
    align-items: center;
    padding-inline: 10px;
}
.card .price > span {
    font-size: 20px;
    font-weight: 600;
}
.card .price div:first-of-type {
    display: flex;
    flex-direction: column;
}
.card .price div:first-of-type span {
    font-size: 10px;
    font-weight: 600;
}
.card .price div:first-of-type span:last-of-type {
    color: #777;
    font-size: 8px;
}
.card .offer {
    font-size: 12px;
    padding: 10px;
}

.card .descrip {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-inline: 10px;
    font-size: 12px;
    line-height: 1.4;
    /* padding-bottom: 20px; */
}
.card .offer span:first-of-type {
    text-decoration: line-through;
    color: #777;
}
.card .offer span:last-of-type {
    color: #c20202;
}
.swiper-slide-button::after {
    content: "";
    font-size: 12px;
    color: #777;
    background-color: #e4e4e4;
    padding: 20px 5px;
}
.track-slider .swiper-slide-button:after {
    position: absolute;
    font-size: 12px;
    color: #777;
    background-color: #e4e4e4;
    padding: 20px 5px;
}
.slider-wrapper-re .box-image {
    position: relative;
    box-shadow: var(--shadow-3);
    border-radius: 10px;
    overflow: hidden;
}
.slider-wrapper-re .box-image img {
    width: 100%;
}
.slider-wrapper-re .box-image .head-box {
    position: absolute;
}
.main-banner img {
    width: 100%;
}
/* Start Animation  */
.loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    border: 4px solid #0000;
    border-radius: 50%;
    border-color: var(--light-gray) #0000;
    animation: l16 1s infinite linear;
}
.loader::before,
.loader::after {
    content: "";
    grid-area: 1/1;
    margin: 2px;
    border: inherit;
    border-radius: 50%;
}
.loader::before {
    border-color: var(--primary-yellow) #0000;
    animation: inherit;
    animation-duration: 0.5s;
    animation-direction: reverse;
}
.loader::after {
    margin: 8px;
}
@keyframes l16 {
    100% {
        transform: rotate(1turn);
    }
}
/* End Animation  */
/* Start Pagination  */
/* pagination */

.pagination {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-right: 0;
    list-style: none;
    border-radius: 0.357rem;
}

.page-item {
    border-radius: 5rem;
}
.page-item:first-child:not(.prev-item) .page-link {
    border-top-right-radius: 1.428rem;
    border-bottom-right-radius: 1.428rem;
}

.page-item:not(.prev-item) .page-link,
.page-item:not(.next-item) .page-link,
.page-item:not(.first) .page-link,
.page-item:not(.last) .page-link,
.page-item:not(.active) .page-link {
    line-height: 1.3;
}
.page-item.disabled .page-link {
    color: #b9b9c3;
    pointer-events: none;
    cursor: auto;
    background-color: #f3f2f7;
    border-color: #dae1e7;
}
.page-item:first-child .page-link {
    margin-right: 0;
    border-top-left-radius: 0.357rem;
    border-bottom-left-radius: 0.357rem;
}
.page-item:last-child .page-link {
    margin-right: 0;
    border-top-right-radius: 0.357rem;
    border-bottom-right-radius: 0.357rem;
}
.page-item .page-link {
    border: none;
    margin: 0;
    margin-left: 0;
    font-size: 1.5rem;
    min-width: 3.5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.85rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #000000;
    background-color: #f3f2f7;
    border: 1px solid #dae1e7;
}
.page-item.active {
    background-color: #f3f2f7;
    border-radius: 0;
}

.page-item.active .page-link {
    z-index: 3;
    border-radius: 5rem;
    background-color: #bea235;
    color: #ffffff !important;
    font-weight: 600;
    background-color: #bea235;
    border-color: #bea235;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
    cursor: pointer;
}

/* end pagination */
/* End Pagination  */
/* Start background-color  */
.bg-black {
    background-color: white;
}
.bg-orange {
    background-color: #f79c1e;
}
.bg-green {
    background-color: #3bd163;
}

.facebook {
    background-color: #4564a4;
}
.google {
    background-color: #da4838;
}
.basic-color {
    background-color: var(--primary-yellow);
}
/* End background-color  */
/* Start top-sec  */
.top-sec {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
    font-size: var(--fs-label-medium);
    font-weight: var(--weight-medium);
    color: var(--black);
}
.top-sec a.active {
    color: var(--primary-yellow);
}
/* End top-sec  */
/* Start OverLay  */
.over-lay {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #0000008a;
    z-index: 1001;
    width: 100%;
    height: 100%;
    display: none;
}
/* End OverLay  */
.intro-text {
    text-align: center;
    margin-bottom: 30px;
}
.intro-text p:first-of-type {
    color: var(--primary-yellow);
    font-weight: var(--weight-regular);
    font-size: var(--fs-title-medium);
}
.intro-text h1 {
    color: var(--black);
    font-weight: var(--weight-bold);
    font-size: var(--fs-headline-small);
    margin: 0.3em 0;
    line-height: var(--lh-headline-small);
}
.intro-text p:nth-of-type(2) {
    color: var(--black);
    font-weight: var(--weight-regular);
    font-size: var(--fs-label-large);
    line-height: var(--lh-label-large);
}
@media (max-width: 452px) {
    :root {
        --fs-headline-small: 2rem;
    }
}

/* Start Opacity  */
.opacity-50 {
    opacity: 0.5;
}
/* End Opacity  */

/* Start Btn  */
.btn-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}
.btn {
    background-color: var(--primary-yellow);
    color: var(--black);
    font-size: var(--fs-label-large);
    font-weight: var(--weight-bold);
    padding: 15px 0;
    border-radius: var(--radius-small);
    width: 320px;
    text-align: center;
    transition: var(--main-transition);
}
.btn:hover {
    transform: scaleX(1.1);
}
@media (max-width: 400px) {
    .btn-box .btn {
        font-size: var(--fs-label-medium);
    }
}
.btn-section {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    color: var(--black);
    font-size: var(--fs-label-medium);
    font-weight: var(--weight-medium);
    border-radius: var(--radius-small);
}
.border-btn {
    border: 1px solid var(--primary-yellow);
}
/* End Btn  */
/* Start Color Text  */
.black-text {
    color: var(--black);
}
.yellow-text {
    color: var(--primary-yellow);
}
/* End Color Text  */

/* Start Card  */
.card {
    position: relative;
    padding: 10px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-medium);
    transition: var(--main-transition);
    box-shadow: var(--shadow-3);
    background-color: var(--white);
    overflow: hidden;
}

.vendor-card {
    max-width: unset !important;
}
.card:hover {
    transform: scale(1.03);

    box-shadow: var(--shadow-4);
}
.card .image {
    position: relative;
    border-top-left-radius: var(--radius-medium);
    border-top-right-radius: var(--radius-medium);
    overflow: hidden;
}
.card .image .crest {
    position: absolute;
    top: 0;
    right: 0;
    padding: 6px 15px;
    font-size: var(--fs-label-medium);
    font-weight: var(--weight-medium);
}
.card .image img {
    width: 100%;
}
.card .title {
    margin: 8px;
}
.card .title h3 {
    font-size: var(--fs-label-large);
    font-weight: var(--weight-bold);
    line-height: var(--lh-label-large);
}
.card .title p {
    color: var(--black);
    margin-top: 5px;
}
.card .price-star {
    margin: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.card .price-star p {
    font-size: var(--fs-label-small);
    font-weight: var(--weight-bold);
}
.card .time {
    text-align: end;
    font-weight: var(--weight-medium);
}
.card .price-star span {
    display: inline-block;
    color: var(--black);
}
.card .buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}
.card .enter {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: var(--black);
    border-radius: var(--radius-small);
    font-weight: var(--weight-bold);
    font-size: var(--fs-label-small);
    transition: var(--main-transition);
}
.card .enter i {
    margin: 0 5px;
    font-size: 18px;
}
.card .enter:hover {
    background-color: var(--primary-yellow);
    color: var(--black);
}
/* End Card  */

/* Start custom Select  */

.dropdown {
    font-size: 1rem;
    font-weight: 500;
    color: black;
    position: relative;
    min-width: 120px;
}
.dropdown .dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    cursor: pointer;
    border: 1px solid var(--light-gray);
    height: 45px;
    background: none;
    font-size: var(--fs-label-medium);
    font-weight: var(--weight-medium);
    padding: 12px 15px;
    border-radius: var(--radius-small);
    width: 100%;
    margin-top: 10px;
}
.dropdown .dropdown-btn span {
    display: flex;
    align-items: center;
}
.dropdown .dropdown-btn span i {
    font-size: 1.5rem;
    margin: 10px;
}
.dropdown .dropdown-btn span img {
    margin: 10px;
}

.dropdown .dropdown-btn span .hand {
    color: black;
}
.dropdown .dropdown-btn .arrow-down {
    transition: 0.3s;
    display: inline-block;
}
.dropdown .dropdown-options {
    position: absolute;
    z-index: 100;
    box-shadow: var(--shadow-1);
    font-size: var(--fs-label-medium);
    font-weight: var(--weight-medium);
    background-color: white;
    width: 100%;
    margin-top: 1rem;
    border-radius: 5px;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}
.dropdown .dropdown-options.active {
    max-height: 200px;
    overflow: auto;
}
.dropdown .dropdown-options label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 1rem;
    cursor: pointer;
    transition: 0.2s;
    border-bottom: 1px solid var(--light-gray);
}
.dropdown .dropdown-options label:hover {
    border-radius: 5px;
    background-color: #d5d5d5;
}
.dropdown .dropdown-options input:checked + label {
    background-color: var(--primary-yellow);
}
/* End custom Select  */
/* Start Custom file-image  */
.file-images {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.file-images .input-image {
    width: 160px;
}
.file-images .input-image .text {
    font-weight: var(--weight-medium);
    font-size: 12px;
    line-height: var(--lh-label-medium);
    margin-bottom: 8px;
}
.input-image .rawan {
    padding: 10px;
    border: 1px dashed var(--black);
    border-radius: 10px;
}
.img-area {
    position: relative;
    background: var(--light-gray);
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 90px;
}
.img-area .icon {
    font-size: 15px;
}
.img-area h3 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
}
.img-area p {
    color: var(--black);
}
.img-area p span {
    font-weight: 600;
    display: inline-block;
}
.img-area img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 100;
}
.img-area::before {
    content: attr(data-img);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-weight: 500;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 200;
}
.img-area.active:hover::before {
    opacity: 1;
}
.select-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    z-index: 250;
    padding: 16px 0;
    border-radius: 5px;
    background: var(--primary-yellow);
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.select-image:hover {
    background: #ebc52d;
}
/* End Custom file-image  */

/*-----------------------------------*\
  #Header
\*-----------------------------------*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 15px 30px;
    z-index: 999;
    width: 100%;
}
.header.active {
    animation: slide_in 500ms ease forwards;
    background-color: white;
    box-shadow: var(--shadow-4);
}

@keyframes slide_in {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

.berger-icon {
    display: none;
}
.header .logo img {
    width: 105px;
}
@media (max-width: 1020px) {
    .header .logo {
        flex-basis: 100%;
        display: flex;
        justify-content: center;
    }
}
.header .nav {
    display: flex;
    align-items: center;
    gap: 30px;
    color: var(--black);
    font-size: var(--fs-body-medium);
    font-weight: var(--weight-regular);
}
.header .nav li {
    transition: var(--main-transition);
}
.header .nav li.active,
.header .nav li:hover {
    color: var(--primary-yellow);
}
.header .lang-singup {
    display: flex;
    gap: 10px;
}
@media (min-width: 906px) {
    .header .nav :where(.lang-singup-nav, li.my-account) {
        display: none;
    }
}
@media (max-width: 905px) {
    .header .nav {
        overflow: hidden;
        position: absolute;
        top: 80px;
        display: block;
        left: 30px;
        width: 200px;
        background-color: var(--white);
        box-shadow: var(--shadow-3);
        border-radius: var(--radius-small);
        transform: scale(0);
        transform-origin: top right;
        transition: var(--main-transition);
    }

    .header .nav.active {
        transform: scale(1);
    }

    .header .nav li {
        padding: 15px;
        border-bottom: 1px solid var(--light-gray);
        transition: var(--main-transition);
        color: var(--black);
    }
    .header .nav li:hover {
        border-bottom-color: var(--primary-yellow);
    }
    .header .nav .my-account {
        text-align: center;
    }
    .header .nav .my-account img {
        width: 30px;
        margin: 0 auto 5px;
    }
    .header .nav :where(li:hover, .active .wen) {
        border-color: var(--primary-yellow);
        margin-left: 5px;
    }

    .header .nav .lang-singup-nav a {
        display: block;
    }
    .header .nav .lang-singup-nav .wen {
        text-align: center;
        padding: 15px;
        color: var(--black);
        border-radius: var(--radius-small);
        transition: var(--main-transition);
    }

    .header .nav .lang-singup-nav .wen:hover {
        color: var(--primary-yellow);
    }

    .header .nav .lang-singup-nav .list-lang {
        position: absolute;
        background-color: red;
        position: absolute;
        background-color: white;
        bottom: 46px;
        width: 100%;
        left: -260px;
        border-radius: 8px;
        transition: var(--main-transition);
        height: calc(100% - 46px);
        overflow-y: auto;
    }
    .header .nav .lang-singup-nav .wen .list-lang.active {
        left: 0px;
    }

    .berger-icon {
        display: flex;
        align-items: center;
        position: absolute;
        color: var(--black);
        font-size: 28px;
        cursor: pointer;
    }
    .header .lang-singup {
        display: none;
    }

    .header .nav .lang-singup-nav .in {
        text-align: center;
        padding: 10px;
        margin: 15px 15px 0;
        color: var(--black);
        background-color: var(--primary-yellow);
        border-radius: var(--radius-medium);
    }
}

.header .lang-singup .wen {
    position: relative;
    border: 1px solid var(--black);
    border-radius: var(--radius-small);
    padding: 10px 15px;
    background-color: transparent;
    font-weight: var(--weight-bold);
    color: var(--black);
    font-size: var(--fs-label-medium);
}
.header .lang-singup .wen .list-lang {
    position: absolute;
    background-color: red;
    position: absolute;
    background-color: white;
    top: 42px;
    width: 200px;
    right: 0;
    border-radius: 8px;
    transition: var(--main-transition);
    height: 350px;
    overflow-y: auto;
    color: black;
    transform: scale(0);
    transition: var(--main-transition);
    box-shadow: var(--shadow-3);
}
.header .lang-singup .wen .list-lang.active {
    transform: scale(1);
}
.header .lang-singup .wen .list-lang li {
    padding: 15px;
    border-bottom: 1px solid var(--light-gray);
    transition: var(--main-transition);
    color: var(--black);
}
.header .lang-singup .wen .list-lang li:where(:hover, .active) {
    color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    margin-right: 5px;
}

.header .lang-singup .in {
    border-radius: var(--radius-small);
    padding: 10px 15px;
    background-color: var(--primary-yellow);
    font-weight: var(--weight-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-label-medium);
}

.header .lang-singup .info {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: var(--weight-regular);
    color: var(--black);
    font-size: var(--fs-label-small);
}
.header .lang-singup .info img {
    width: 30px;
}

/*-----------------------------------*\
  #Landing Page
\*-----------------------------------*/
body {
    position: relative;
    background-attachment: fixed;
    background-image: url(../../images/Vector.png);
    background-position: center;
}

.landing {
    position: relative;
    height: 100vh;
}
.landing .landing-content {
    position: relative;
    z-index: 1;
    padding-top: 180px;
}
.landing .landing-content .track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}
.landing .landing-content .track a {
    padding: 10px;
    border-radius: var(--radius-small);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: var(--black);
    font-size: var(--fs-title-large);
    font-weight: var(--weight-bold);
    background-color: var(--primary-yellow);
    transition: 0.3s;
}
@media (max-width: 670px) {
    .landing .landing-content .track a {
        font-size: var(--fs-label-medium);
    }
}
.landing .landing-content .track a:hover {
    transform: skewY(5deg);
}

.landing .landing-content .intro-text h1 {
    color: var(--black);
}
.landing .landing-content .intro-text p:nth-of-type(2) {
    color: var(--black);
    font-weight: var(--weight-regular);
    font-size: 22px;
    line-height: var(--fs-headline-large);
}
.landing .landing-content .application-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
.landing .landing-content .application-mobile img {
    width: 150px;
    transition: var(--main-transition);
}
@media (max-width: 515px) {
    .landing .landing-content .application-mobile img {
        width: 121px;
    }
}
@media (max-width: 415px) {
    .landing .landing-content .application-mobile {
        flex-direction: column-reverse;
    }
    .landing .landing-content .application-mobile img {
        width: 150px;
    }
}
.landing .landing-image {
    display: none;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.landing .landing-image img {
    width: 700px;
    transition: var(--main-transition);
}
@media (max-width: 730px) {
    .landing .landing-image img {
        width: 600px;
    }
}
@media (max-width: 620px) {
    .landing .landing-image img {
        width: 500px;
    }
}
@media (max-width: 515px) {
    .landing .landing-image img {
        width: 400px;
    }
}
@media (max-width: 415px) {
    .landing .landing-image img {
        display: none;
    }
}

/*-----------------------------------*\
  #Features And Services
\*-----------------------------------*/

.features {
    position: relative;
}
.features .content-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
@media (max-width: 700px) {
    .features .content-features {
        grid-template-columns: 1fr;
    }
}
.features .content-features .feat {
    padding: 30px 35px;
    display: flex;
    gap: 10px;
    align-items: start;
    transition: var(--main-transition);
    border-radius: var(--radius-medium);
    background-color: var(--white);
    box-shadow: var(--shadow-2);
}
.features .content-features .feat:hover {
    transform: scale(1.04);
}
@media (max-width: 700px) {
    .features .content-features .feat {
        padding-top: 25px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}
.features .content-features .feat:hover {
    background-color: var(--primary-yellow);
}
.features .content-features .feat .icon {
    margin-top: 10px;
    font-size: 25px;
    padding: 5px;
    color: #38bb92;
    background-color: #0cf3aa1f;
    border-radius: 8px;
}
.features .content-features .feat img {
    margin-top: 10px;
}
.features .content-features .feat .text-feature h2 {
    font-size: var(--fs-headline-small);
    font-weight: var(--weight-bold);
    color: var(--black);
    line-height: var(--lh-headline-small);
    transition: var(--main-transition);
}
@media (max-width: 755px) {
    .features .content-features .feat .text-feature h2 {
        font-size: var(--fs-title-medium);
    }
}
.features .content-features .feat .text-feature p {
    margin-top: 10px;
    font-size: var(--fs-label-large);
    font-weight: var(--weight-regular);
    color: var(--black);
    line-height: var(--lh-label-large);
    transition: var(--main-transition);
}

/*-----------------------------------*\
  #About US
\*-----------------------------------*/

.about-us {
    position: relative;
}
.about-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.03);
}
.about-us .big-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.about-us .big-box .about-contnet {
    position: relative;
    z-index: 1;
    flex: 45%;
}

@media (min-width: 681px) {
    .about-us .big-box .about-contnet .intro-text {
        text-align: unset;
    }
}
.about-us .big-box .about-contnet .info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
    margin: 20px 0;
}
@media (max-width: 1200px) {
    .about-us .big-box .about-contnet .info {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 680px) {
    .about-us .big-box .about-contnet .info {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 540px) {
    .about-us .big-box .about-contnet .info {
        grid-template-columns: 1fr;
    }
}
.about-us .big-box .about-contnet .info p {
    padding: 15px 30px;
    border-radius: var(--radius-small);
    background-color: var(--light-gray);
    font-size: var(--fs-label-large);
    font-weight: var(--weight-bold);
    line-height: var(--lh-label-large);
}
.about-us .big-box .about-contnet .info p i {
    font-size: 20px;
    color: #38bb92;
    margin-left: 10px;
}
.about-us .big-box .about-contnet .application-mobile {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.about-us .big-box .about-contnet .application-mobile img {
    width: 100%;
}
@media (max-width: 500px) {
    .about-us .big-box .about-contnet .application-mobile {
        grid-template-columns: 1fr;
    }
    .about-us .big-box .about-contnet .application-mobile img {
        width: 200px;
        margin: 0 auto;
    }
}
.about-us .big-box .about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 45%;
}
@media (max-width: 680px) {
    .about-us .big-box .about-image {
        display: none;
    }
}
.about-us .big-box .about-image::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: var(--light-gray);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media (max-width: 992px) {
    .about-us .big-box .about-image::before {
        width: 300px;
        height: 300px;
    }
}
.about-us .big-box .about-image img {
    width: 200px;
    position: relative;
    z-index: 1;
}

/*-----------------------------------*\
  #Screen Mobile
\*-----------------------------------*/

.screen {
    position: relative;
}
.screen::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.03);
    z-index: -1;
}
.screen .content-screen {
    justify-content: center;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.screen .content-screen img {
    width: 200px;
    transition: var(--main-transition);
}
.screen .content-screen img:hover {
    transform: scale(1.05);
}

/*-----------------------------------*\
  #Information
\*-----------------------------------*/

.information {
    position: relative;
}
.information .info-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.information .info-content .info {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--radius-small);
}
@media (max-width: 661px) {
    .information .info-content .info {
        text-align: center;
    }
}
.information .info-content .info h3 {
    font-size: var(--fs-label-large);
    font-weight: var(--weight-bold);
    line-height: var(--lh-label-large);
    margin-bottom: 5px;
}

.information .info-content .info p {
    font-size: var(--fs-label-medium);
    font-weight: var(--weight-regular);
    line-height: var(--lh-label-medium);
    color: var(--black);
}

/*-----------------------------------*\
  #Talk
\*-----------------------------------*/
.talk h3 {
    font-size: var(--fs-title-large);
    font-weight: var(--weight-bold);
    line-height: var(--lh-title-large);
    margin-bottom: 5px;
}
.talk p {
    font-size: var(--fs-label-large);
    font-weight: var(--weight-bold);
    line-height: var(--lh-headline-small);
    padding: 20px 0 10px;
    border-bottom: 1px solid var(--light-gray);
}

/*-----------------------------------*\
  #Down-now
\*-----------------------------------*/
.down-now {
    position: relative;
}
.down-now::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.03);
}
.down-now .big-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #ffeca962;
    padding: 50px 30px;
    border-radius: var(--radius-extra-large);
    margin-bottom: 50px;
}
.down-now .big-box .content-down-now {
    position: relative;
    z-index: 1;
    flex: 45%;
}

@media (min-width: 681px) {
    .down-now .big-box .content-down-now .intro-text {
        text-align: unset;
    }
}
.down-now .big-box .content-down-now .info .ddd {
    display: flex;
    align-items: center;
}
.down-now .big-box .content-down-now .info .ddd p {
    padding: 15px 0;
    border-radius: var(--radius-small);
    font-size: var(--fs-label-large);
    font-weight: var(--weight-bold);
    line-height: var(--lh-label-large);
}
.down-now .big-box .content-down-now .info .ddd i {
    font-size: 20px;
    color: #38bb92;
    margin-right: 10px;
}
.down-now .big-box .content-down-now .application-mobile {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.down-now .big-box .content-down-now .application-mobile img {
    width: 100%;
}
@media (max-width: 500px) {
    .down-now .big-box .content-down-now .application-mobile {
        grid-template-columns: 1fr;
    }
    .down-now .big-box .content-down-now .application-mobile img {
        width: 200px;
        margin: 0 auto;
    }
}
.down-now .big-box .down-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 45%;
}
@media (max-width: 680px) {
    .down-now .big-box .down-image {
        display: none;
    }
}
.down-now .big-box .down-image::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: #ebcc4b5c;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media (max-width: 992px) {
    .down-now .big-box .down-image::before {
        width: 300px;
        height: 300px;
    }
}
.down-now .big-box .down-image img {
    width: 200px;
    position: relative;
    z-index: 1;
}

/*-----------------------------------*\
  #Login
\*-----------------------------------*/
/*-----------------------------------*\
  #Start Big Section
\*-----------------------------------*/

.big-section {
    width: 80%;
    margin: 5% auto;
    display: flex;
    flex-wrap: wrap;
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-3);
}
@media (max-width: 500px) {
    .big-section {
        width: 95%;
    }
}
/* Start Right Section  */
.big-section .right-section {
    position: relative;
    background-image: url(../../images/VectorSection.png);
    background-size: cover;
    background-position: center;
    padding: 40px;
    flex: 60%;
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media (max-width: 810px) {
    .big-section .right-section {
        flex: 100%;
    }
}

.big-section .right-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: #bea335c9;
    z-index: 1;
}
.big-section .right-section .logo {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}
.big-section .right-section .logo img {
    width: 139px;
}
.big-section .right-section .logo h2 {
    font-size: var(--fs-title-large);
    font-weight: var(--weight-bold);
    line-height: var(--lh-title-large);
}
.big-section .right-section :where(.logo, .image, .box, .steps) {
    position: relative;
    z-index: 2;
}
.big-section .right-section .image img {
    width: 370px;
    max-width: 100%;
}
.big-section .right-section .steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    font-size: var(--fs-label-large);
    line-height: var(--lh-label-large);
    border-radius: var(--radius-small);
    color: var(--black);
}
.big-section .right-section .steps::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 2px;
    background-color: #a79038;
    top: 0;
    left: 14px;
    z-index: -1;
}
.big-section .right-section .steps .step {
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
}
.big-section .right-section .steps .step p {
    margin-left: 40px;
}
.big-section .right-section .steps .step span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #a79038;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.big-section .right-section .steps .step.active span {
    background-color: #319e37;
}
.big-section .right-section .box {
    color: var(--black);
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    text-align: center;
    background-color: #ffffff3d;
    padding: 20px;
    font-size: var(--fs-label-large);
    line-height: var(--lh-label-large);
    border-radius: var(--radius-small);
}
/* End Right Section  */
/* Start Left Section  */
.big-section .left-section {
    flex: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background-color: var(--white);
    padding: 40px;
}
.big-section .left-section > div {
    width: 100%;
}

.big-section .left-section .header-section {
    text-align: center;
}
.big-section .left-section .header-section h2 {
    font-size: var(--fs-title-large);
    font-weight: var(--weight-bold);
    line-height: var(--lh-title-large);
}
.big-section .left-section .header-section p {
    margin-top: 7px;
    font-size: var(--fs-label-large);
    line-height: var(--lh-label-large);
    border-radius: var(--radius-small);
    color: var(--black);
}
.big-section .left-section .header-section p span {
    font-weight: var(--weight-bold);
    color: var(--black);
    display: inline-block;
}
.big-section .left-section .male-or-famale {
    display: flex;
    align-items: center;
    gap: 10px;
}
.big-section .left-section .male-or-famale .m-f {
    flex: 50%;
}
.big-section .left-section .male-or-famale label {
    width: 100%;
    padding: 8px;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid var(--primary-yellow);
    background-color: var(--white);
    transition: var(--main-transition);
}
.big-section .left-section .male-or-famale input[type="radio"] {
    appearance: none;
}
.big-section .left-section .male-or-famale input[type="radio"]:checked + label {
    background-color: var(--primary-yellow);
    color: var(--white);
}

.big-section .left-section .confident {
    display: flex;
    gap: 10px;
    text-align: center;
}
.big-section .left-section .confident .one-number {
    flex: 25%;
}
.big-section .left-section .confident .one-number input {
    text-align: center;
}
.big-section .left-section .google-facebook {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.big-section .left-section .google-facebook .btn-section {
    color: #fff;
}
.big-section .left-section .coma {
    position: relative;
    text-align: center;
    font-size: var(--fs-title-large);
    font-weight: var(--weight-bold);
    line-height: var(--lh-title-large);
    display: flex;
    align-items: center;
    justify-content: center;
}
.big-section .left-section .coma span {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    z-index: 2;
}
.big-section .left-section .coma::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--black);
    right: 0;
    top: 26px;
    z-index: 1;
}
.big-section .left-section .phone {
    display: flex;
    gap: 10px;
    align-items: end;
}

.big-section .left-section .phone :where(.nation, .resid) {
    display: flex;
    flex-direction: column;
    flex: 50%;
}
.big-section .left-section .phone .input-phone {
    flex: 70%;
}
.big-section .left-section .phone .input-con {
    flex: 30%;
}
.big-section .left-section .box {
    position: relative;
}
.big-section .left-section .box i {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    font-size: 25px;
    /* width: 28px; */
    cursor: pointer;
}
.big-section .left-section .box i.fa-eye {
    color: red;
}

.big-section .left-section .remember-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 7px;
}
.big-section .left-section .remember-box .box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.big-section .left-section .remember-box a {
    font-size: var(--fs-label-medium);
    font-weight: var(--weight-semiBold);
    line-height: var(--lh-label-medium);
}
.big-section .left-section .us-new-us-condition {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.big-section .left-section .us-new-us-condition a:first-of-type,
.big-section .left-section .us-new-us-condition a:last-of-type {
    font-size: var(--fs-label-medium);
    font-weight: var(--weight-semiBold);
    line-height: var(--lh-label-medium);
    text-decoration: underline;
}
.big-section .left-section .us-new-us-condition span {
    font-size: var(--fs-label-medium);
    font-weight: var(--weight-regular);
    line-height: var(--lh-label-medium);
    color: var(--black);
}
.big-section .left-section .services {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: var(--radius-small);
    box-shadow: var(--shadow-3);
}
/* End Left Section  */

/*-----------------------------------*\
  #End Big Section
\*-----------------------------------*/
/*-----------------------------------*\
  #Start Select Pro
\*-----------------------------------*/

.select-pro {
    padding: 30px;
    max-width: 715px;
    margin: 150px auto 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    box-shadow: var(--shadow-4);
}
.select-pro .steps {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}
.select-pro .steps .step {
    background-color: var(--black);
    padding: 15px;
    color: var(--white);
    border-radius: var(--radius-small);
    font-weight: var(--weight-bold);
    opacity: 0.5;
}
.select-pro .steps .step.active {
    font-size: var(--fs-label-medium);
    background-color: var(--primary-yellow);
    opacity: 1;
}
.select-pro input,
select,
textarea {
}
.select-pro :where(input[type="radio"], input[type="checkbox"]),
.dropdown :where(input[type="radio"], input[type="checkbox"]) {
    appearance: none;
    border: unset;
}

.select-pro .choices {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.select-pro .choices :where(.roma, .speaking-lang, .craties) {
    display: flex;
    flex-direction: column;
}
.select-pro .choices .add-ser {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-small);
    font-size: var(--fs-label-medium);
    font-weight: 500;
    transition: var(--main-transition);
}
.select-pro .choices .add-ser:hover {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
}
.select-pro .popup-add-ser {
    padding: 40px 10px 20px;
    position: fixed;
    bottom: 0;
    right: 50%;
    transform: translateX(-50%) scale(0);
    z-index: 10000;
    background-color: var(--light-gray);
    width: 600px;
    max-width: 100%;
    border-top-left-radius: var(--radius-large);
    border-top-right-radius: var(--radius-large);

    transition: var(--main-transition);
}
.select-pro .popup-add-ser.active {
    transform: translateX(-50%) scale(1);
}
.select-pro .popup-add-ser i.close:first-child {
    font-size: 20px;
    position: absolute;
    top: 15px;
    right: 15px;
}
.select-pro .popup-add-ser .box {
    border-radius: var(--radius-small);
    background-color: white;
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
}
.select-pro .popup-add-ser .buttons {
    margin-top: 30px;
}
.select-pro .popup-add-ser .box input {
    margin: 0;
}
.select-pro .popup-add-ser .box .image-title {
    display: flex;
    align-items: center;
    gap: 10px;
}
.select-pro .popup-add-ser .box .image-title img {
    width: 100px;
    border-radius: var(--radius-small);
}
.select-pro .popup-add-ser .box .image-title .title {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: var(--fs-label-medium);
    font-weight: var(--weight-medium);
}
.select-pro .popup-add-ser .box .image-title .title span {
    font-weight: var(--weight-bold);
    margin-left: 5px;
}
.select-pro .big-ser {
    width: 100%;
}
.select-pro .box-ser {
    border-radius: var(--radius-small);
    background-color: white;
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    box-shadow: var(--shadow-1);
}

.select-pro .box-ser input {
    margin: 0;
}
.select-pro .box-ser .image-title {
    display: flex;
    align-items: center;
    gap: 10px;
}
.select-pro .box-ser .image-title img {
    width: 100px;
    border-radius: var(--radius-small);
}
.select-pro .box-ser .image-title .title {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: var(--fs-label-medium);
    font-weight: var(--weight-medium);
}
.select-pro .box-ser .image-title .title span {
    font-weight: var(--weight-bold);
    margin-right: 5px;
}
.select-pro .plus-minus-delete {
    text-align: end;
    padding: 0 10px;
}
.select-pro .plus-minus-delete .delete {
    font-size: 20px;
    margin-bottom: 10px;
}
.select-pro .ditails-order {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--radius-small);
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}
.select-pro .ditails-order p {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.select-pro .ditails-order p:not(:last-child) {
    font-size: 14px;
}
.select-pro .ditails-order p:not(:last-child) span {
    font-weight: var(--weight-semiBold);
}
.select-pro .ditails-order p:last-child {
    font-size: 16px;
    font-weight: var(--weight-bold);
}
.select-pro .ditails-order p:last-child span {
    color: var(--primary-yellow);
}

.select-pro .male-or-famale {
    display: flex;
    text-align: center;
    box-shadow: var(--shadow-4);
    border-radius: var(--radius-small);
    padding: 5px;
    margin-top: 10px;
}
.select-pro .male-or-famale .m-f {
    flex: 50%;
}
.select-pro :where(.remember-box, .crate) {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.select-pro .male-or-famale label {
    width: 100%;
    padding: 8px;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    background-color: var(--white);
    transition: var(--main-transition);
    color: var(--black);
}

.select-pro input[type="radio"]:checked + label,
.select-pro input[type="checkbox"]:checked + label {
    background-color: var(--primary-yellow);
    color: var(--white);
}

.select-pro :where(.speaking-lang .languages, .craties .box) {
    display: flex;
    flex-wrap: wrap;
    gap: 0px 6px;
    margin-top: 10px;
}

.select-pro .languages label,
.select-pro .craties .crate label {
    border: 1px solid var(--light-gray);
    padding: 8px;
    font-weight: var(--weight-regular);
    font-size: var(--fs-label-small);
    color: var(--black);
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    background-color: var(--white);
    transition: var(--main-transition);
    width: 102px;
}
.select-pro .buttons {
    display: flex;
    gap: 5px;
    text-align: center;
    justify-content: space-between;
}
.select-pro .buttons button {
    font-size: var(--fs-label-small);
    font-weight: var(--weight-bold);
    padding: 10px 0;
    border-radius: var(--radius-small);
    width: 100%;
    background: var(--primary-yellow);
}
.select-pro .buttons span {
    font-size: var(--fs-label-small);
    font-weight: var(--weight-bold);
    padding: 10px 0;
    border-radius: var(--radius-small);
    width: 320px;
    border: 1px solid var(--primary-yellow);
}
.select-pro .buttons span.con {
    background-color: var(--primary-yellow);
    color: var(--white);
}
.select-pro .buttons a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-label-small);
    font-weight: var(--weight-bold);
    padding: 10px 0;
    border-radius: var(--radius-small);
    border: 1px solid var(--primary-yellow);
    color: black;
}

.select-pro .persons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
@media (max-width: 720px) {
    .select-pro .persons {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 550px) {
    .select-pro .persons {
        grid-template-columns: repeat(2, 1fr);
    }
}
.select-pro .persons .person {
    border-radius: var(--radius-small);
    overflow: hidden;
}
.select-pro .persons .person .image {
    position: relative;
}
.select-pro .persons .person .image label img {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.select-pro .persons .person .image .star {
    position: absolute;
    bottom: 5px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.397);
    border-radius: var(--radius-small);
    padding: 5px 10px;
    z-index: 100;
}
.select-pro .persons .person .image .star span {
    display: inline-block;
    color: var(--white);
}
.select-pro .persons .person .title {
    background-color: var(--section-color);
    padding: 5px;
    transition: var(--main-transition);
}

.select-pro .persons .person .title h3 {
    font-size: var(--fs-label-small);
    margin-bottom: 5px;
    transition: var(--main-transition);
}
.select-pro .persons .person .title p {
    font-size: 10px;
    color: var(--black);
    transition: var(--main-transition);
}
.select-pro input[type="radio"]:checked + .title {
    background-color: var(--primary-yellow);
}
.select-pro input[type="radio"]:checked + .title h3 {
    color: white;
}
.select-pro input[type="radio"]:checked + .title p {
    color: white;
}

.select-pro .credits-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 550px) {
    .select-pro .credits-card {
        grid-template-columns: repeat(2, 1fr);
    }
}
.select-pro .credits-card .cred-card {
    box-shadow: var(--shadow-3);
    border-radius: var(--radius-small);
}
.select-pro .credits-card .cred-card img {
    transition: var(--main-transition);
    width: 100%;
    border: 2px solid transparent;
    border-radius: 10px;
}
.select-pro .credits-card .cred-card input[type="radio"]:checked + label img {
    border-color: var(--primary-yellow);
}
.select-pro .expiry-cvc {
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
/*-----------------------------------*\
  #Start Select Pro
\*-----------------------------------*/
/*-----------------------------------*\
  #Order
\*-----------------------------------*/
.order {
    padding-top: var(--padding-top);
    padding-inline: var(--section-padding);
}
.popup-complete,
.popup-Determine {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: fixed;
    background-color: var(--white);
    width: 500px;
    max-width: 100%;
    top: 50%;
    right: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 10000;
    padding: 15px;
    border-radius: var(--radius-small);
    transition: var(--main-transition);
}
.popup-complete .check-title,
.popup-Determine .check-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}
.popup-complete .check-title img,
.popup-Determine .check-title img {
    max-width: 150px;
}
.popup-complete .check-title p,
.popup-Determine .check-title p {
    font-size: var(--fs-label-small);
    font-weight: var(--weight-medium);
}
.popup-complete.active,
.popup-Determine.active {
    transform: translate(-50%, -50%) scale(1);
}
.popup-complete .close,
.popup-Determine .close {
    position: absolute;
    top: 3px;
    left: 10px;
    font-size: 12px;
}
.popup-complete .comp,
.popup-Determine .comp {
    background-color: var(--light-gray);
    -radius: var(--radius-small);
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.popup-complete .comp .image-title,
.popup-Determine .comp .image-title {
    display: flex;
    gap: 5px;
}
.popup-complete .comp .image-title img,
.popup-Determine .comp .image-title img {
    width: 80px;
    -radius: var(--radius-small);
}
.popup-complete .comp .image-title .title h2,
.popup-Determine .comp .image-title .title h2 {
    margin-bottom: 5px;
}
.popup-complete .comp .image-title .title p,
.popup-Determine .comp .image-title .title p {
    font-size: var(--fs-label-small);
    line-height: var(--lh-label-small);
}
.popup-complete .comp .note,
.popup-Determine .comp .note {
    padding: 4px;
    font-size: var(--fs-label-small);
    border-radius: 4px;
}
.popup-complete .prag,
.popup-Determine .prag {
    line-height: 1.5;
}
.popup-complete .enter,
.popup-Determine .enter {
    text-align: center;
    padding: 8px;
    border-radius: 5px;
    font-weight: var(--weight-bold);
}
.top-section {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-section .top-sec {
    margin: 0;
}
.top-section .button {
    background-color: var(--primary-yellow);
    border-radius: var(--radius-small);
    color: black;
    font-size: var(--fs-label-small);
    font-weight: var(--weight-semiBold);
    padding: 5px 10px;
    display: none;
}
.order .big-box {
    display: flex;
    gap: 15px;
}
.order .side-section {
    padding: 20px;
    background-color: var(--white);
    flex: 250px;
    height: 400px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-1);
}
.order .side-section .box-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.order .side-section .box-head h3 {
    font-size: 20px;
    font-weight: 600;
}
.order .side-section .box-head i {
    font-size: 20px;
    display: none;
}
.order .side-section .box {
    display: flex;
    flex-direction: column;
    gap: 35px;
}
.order .side-section .put {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}
.order .side-section .put span {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
@media (max-width: 970px) {
    .order .side-section {
        position: fixed;
        z-index: 1005;
        width: 300px;
        height: 100%;
        border-radius: 0px;
        top: 0;
        left: -500px;
        overflow: auto;
        transition: var(--main-transition);
    }
    .order .top-section .button {
        display: block;
    }
    .order .side-section.active {
        left: 0;
    }
    .order .side-section .box-head i {
        display: block;
    }
}
.order .main-section {
    flex: 70%;
}
.order .main-section .head {
    padding: 5px;
    border-radius: var(--radius-small);
    background-color: var(--white);
    box-shadow: var(--shadow-1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.order .main-section .head .icons i {
    color: var(--primary-yellow);
    font-size: 20px;
    margin: 0 5px;
}
.order .main-section .head .arr {
    display: flex;
    align-items: center;
}
.order .main-section .head .arr .dropdown .dropdown-btn {
    height: unset;
    padding: 5px 10px;
    margin: 0;
    border: none;
    font-size: var(--fs-label-small);
}
.order .main-section .head .arr .dropdown label {
    font-size: var(--fs-label-small);
    font-weight: var(--weight-medium);
}
.order .content {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 25px;
}
.order .basket {
    margin: 40px auto 60px;
    background-color: var(--white);
    padding: 15px;
    box-shadow: var(--shadow-1);
    text-align: center;
    width: 250px;
    border-radius: var(--radius-large);
    transition: var(--main-transition);
}
.order .basket:hover {
    transform: scale(1.2);
}
.order .basket i {
    font-size: 80px;
    color: var(--light-gray);
}
.order .basket h3 {
    margin: 20px 0 10px;
}
/*-----------------------------------*\
  #Start Progress 
\*-----------------------------------*/
.progress {
    padding-top: var(--padding-top);
    padding-inline: var(--section-padding);
}
.progress .steps {
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.progress .steps::after {
    content: "";
    top: 12px;
    right: 50%;
    position: absolute;
    width: calc(100% - 20px);
    transform: translateX(-50%);
    border: 1px dashed #319e37;
    z-index: -1;
}
.progress .steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.progress .steps .step span {
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid var(--black);
}
.progress .steps .step span i {
    color: var(--white);
    font-size: 15px;
    display: none;
}
.progress .steps .step p {
    font-size: var(--fs-label-small);
    font-weight: var(--weight-bold);
}
.progress .steps .step.active span {
    border-color: #319e37;
    background-color: #319e37;
}
.progress .steps .step.active span i {
    display: block;
}
.progress .steps .step.active p {
    color: #319e37;
}
.progress .box {
    background-color: #f6f4ec;
    border-radius: var(--radius-small);
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    box-shadow: var(--shadow-3);
}
.progress .box .image-title {
    display: flex;
    gap: 5px;
}
.progress .box .image-title img {
    width: 80px;
    border-radius: var(--radius-small);
}
.progress .box .image-title .title h2 {
    margin-bottom: 5px;
}
.progress .box .image-title .title p {
    font-size: var(--fs-label-small);
    line-height: var(--lh-label-small);
}
.progress .box .note {
    padding: 4px;
    font-size: var(--fs-label-small);
    border-radius: 4px;
}
.progress .note {
    padding: 10px;
    border-radius: var(--radius-small);
    background-color: var(--white);
    margin: 20px 0;
}
.progress .note p {
    margin-top: 10px;
    line-height: 1.6;
    font-size: 14px;
}

.progress .sec-videos .videos {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.progress .sec-videos .videos video {
    width: 200px;
    border-radius: 10px;
}
.progress .sec-videos .controll-videos {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-3);
}
.progress .sec-videos .controll-videos .watch-videos {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.progress .sec-videos .controll-videos .watch-videos .ved {
    display: flex;
    flex-direction: column;
    width: 48%;
}
@media (max-width: 600px) {
    .progress .sec-videos .controll-videos .watch-videos {
        flex-direction: column;
    }
    .progress .sec-videos .controll-videos .watch-videos .ved {
        width: 100%;
    }
}
.progress .sec-videos .controll-videos .watch-videos .ved span {
    font-size: var(--fs-label-small);
    margin-bottom: 10px;
    font-weight: var(--weight-semiBold);
}

.progress .sec-videos .controll-videos .watch-videos .ved video {
    border-radius: 10px;
}
.progress .sec-videos .controll-videos .controll {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}
.progress .sec-videos .controll-videos .controll button {
    background-color: var(--primary-yellow);
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: var(--weight-semiBold);
    font-size: var(--fs-label-small);
}
.progress .buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}
.progress .buttons .enter {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: var(--black);
    border-radius: var(--radius-small);
    font-weight: var(--weight-bold);
    font-size: var(--fs-label-small);
    transition: var(--main-transition);
}
/*-----------------------------------*\
  #End Progress
\*-----------------------------------*/
/*-----------------------------------*\
  #Start Condition 
\*-----------------------------------*/
.condition {
    padding-top: var(--padding-top);
    padding-inline: var(--section-padding);
}

.condition .content {
    background-color: var(--white);
    padding: 10px;
    border-radius: var(--radius-small);
    box-shadow: var(--shadow-4);
}
.condition .content p {
    line-height: 1.7;
    font-size: 12px;
}
.condition .content ol li {
    font-size: 12px;
    list-style-position: inside;
    line-height: 1.7;
    color: #333333;
    padding-top: 6px;
}
/*-----------------------------------*\
  #End Condition
\*-----------------------------------*/
/*-----------------------------------*\
  #Start Contact Us
\*-----------------------------------*/
.contact-us {
    padding: 20px;
    max-width: 800px;
    margin: 150px auto 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    box-shadow: var(--shadow-4);
}
.contact-us .title {
    text-align: center;
}
.contact-us .title p {
    font-size: 14px;
}
.contact-us .content {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 600px) {
    .contact-us .content {
        grid-template-columns: 1fr;
    }
}
.contact-us .content p {
    font-size: 12px;
    font-weight: var(--weight-medium);
}
.contact-us .content .description {
    direction: ltr;
}
.contact-us .content .description ul li {
    display: flex;
    font-size: 12px;
    margin-bottom: 10px;
    line-height: 1.6;
}
.contact-us .content .description ul li i {
    font-size: 15px;
    color: var(--primary-yellow);
    margin-right: 10px;
}
/*-----------------------------------*\
  #End Contact Us
\*-----------------------------------*/
/*-----------------------------------*\
  #Start Map Order
\*-----------------------------------*/
.map-order {
    padding-top: var(--padding-top);
    padding-inline: var(--section-padding);
}
.map-order .content {
    display: grid;
    grid-template-areas: "map map map map map map map map map map step step";
    background-color: var(--white);
    padding: 10px;
    border-radius: var(--radius-small);
    box-shadow: var(--shadow-4);
    position: relative;
    z-index: -3;
}

.map-order .content .map {
    display: flex;
    flex-direction: column;
    grid-area: map;
    margin-right: 20px;
    gap: 20px;
}
@media (max-width: 600px) {
    .map-order .content .map {
        margin: 0;
    }
    .map-order .content {
        grid-template-areas: "map map map map map map map map map map map map" "step step step step step step step step step step step step ";
    }
}
.map-order .content .map .vedios {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
}
@media (max-width: 850px) {
    .map-order .content .map .vedios {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (max-width: 500px) {
    .map-order .content .map .vedios {
        grid-template-columns: 1fr 1fr;
    }
}
.map-order .content .map .vedios img {
    width: 100%;
    border-radius: 5px;
}
.map-order .content .map .vedios video {
    width: 100%;
    border-radius: 5px;
}
.map-order .content .map img {
    width: 100%;
}

.map-order .content .ccc {
    grid-area: step;
}
.map-order .content .steps {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}
.map-order .content .steps .step {
    position: relative;
    min-height: 140px;
    display: flex;
}
.map-order .content .steps .step .time {
    font-size: 12px;
    font-weight: var(--weight-medium);
}
.map-order .content .steps .step .time p {
    margin-bottom: 6px;
}
.map-order .content .steps .step .vvv {
    position: relative;
    padding-inline: 10px;
}
.map-order .content .steps .step .circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ff0000;
    display: block;
    border: 2px solid #fff;
}
.map-order .content .steps .step .vvv:not(.cdcd)::after {
    content: "";
    top: 0;
    right: 46%;
    transform: translateX(-50%);
    position: absolute;
    height: 100%;
    border: 1px dashed #ff0000;
    z-index: -2;
}

.map-order .content .steps .step.active .vvv::after {
    border: 1px dashed #319e37;
}
.map-order .content .steps .step.active .vvv .circle {
    background-color: #319e37;
}
.map-order .content .steps .step .desc {
    font-size: 12px;
    font-weight: var(--weight-medium);
    line-height: 1.5;
    margin-bottom: 10px;
}
/*-----------------------------------*\
  #End Map Order
\*-----------------------------------*/
/*-----------------------------------*\
  #Start Profile
\*-----------------------------------*/
.profile {
    padding-top: var(--padding-top);
    padding-inline: var(--section-padding);
}
.profile .buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-bottom: 5px;
    gap: 10px;
}
.profile .buttons a {
    text-align: center;
    display: block;
    background-color: var(--primary-yellow);
    font-weight: var(--weight-medium);
    font-size: 14px;
    padding: 10px;
    border-radius: 5px;
    transition: var(--main-transition);
    min-width: 50px;
}
.profile .buttons a:hover {
    transform: scale(1.01);
}
@media (max-width: 655px) {
    .profile .buttons {
        grid-template-columns: 1fr 1fr;
    }
}
.profile .content {
    background-color: var(--white);
    padding: 10px;
    border-radius: var(--radius-small);
    box-shadow: var(--shadow-4);
    position: relative;
}
.profile .content .grideant {
    height: 60px;
    width: 100%;
    background-image: linear-gradient(to right, #05a3ff, #ebd61a);
    border-radius: 5px;
    margin-bottom: 20px;
}
.profile .content .image-name {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
@media (max-width: 500px) {
    .profile .content .image-name {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
}
.profile .content .image-name .profile-pic {
    color: transparent;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}
.profile .content .image-name .profile-pic input {
    display: none;
}
.profile .content .image-name .profile-pic img {
    position: absolute;
    object-fit: cover;
    width: 140px;
    height: 140px;
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    z-index: 0;
}
.profile .content .image-name .profile-pic .-label {
    cursor: pointer;
    height: 165px;
    width: 165px;
}
.profile .content .image-name .profile-pic:hover .-label {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    color: #fafafa;
    transition: background-color 0.2s ease-in-out;
    border-radius: 100px;
    margin-bottom: 0;
}
.profile .content .image-name .profile-pic span {
    display: inline-flex;
    padding: 0.2em;
    height: 2em;
}

.profile .content .image-name .image {
    width: 70px;
    height: 50%;
    border-radius: 50%;
    overflow: hidden;
}
.profile .content .image-name .image img {
    width: 100%;
}
.profile .content .image-name .title p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    font-weight: var(--weight-medium);
}
.profile .content .image-name .title span {
    font-size: 14px;
    line-height: 1.5;
    font-weight: var(--weight-regular);
}

.profile .content .inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}
.profile .content .change-btn {
    background-color: var(--primary-yellow);
    border-radius: 5px;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: var(--weight-semiBold);
}
.profile .content .services {
}
.profile .content .services .big-box {
    display: flex;
    justify-content: space-between;
    margin-top: 11px;
}
.profile .content .services .big-box .remember-box {
    display: flex;

    flex-direction: column;
    margin-bottom: 10px;
}
.profile .content .services .big-box .remember-box label {
    border-radius: var(--radius-small);
    border: 1px solid var(--primary-yellow);
    padding: 10px;
}
@media (max-width: 450px) {
    .profile .content .services .big-box .remember-box label {
        font-size: 11px;
    }
}
.profile input[type="radio"]:checked + label,
.profile input[type="checkbox"]:checked + label {
    background-color: var(--primary-yellow);
    color: var(--white);
}
.profile :where(input[type="radio"], input[type="checkbox"]) {
    appearance: none;
    border: none;
    width: 0;
    height: o;
}

/*-----------------------------------*\
  #End Profile
\*-----------------------------------*/
/*-----------------------------------*\
  #Start Notifecations And Offer
\*-----------------------------------*/
:where(.notifecations, .offer) {
    padding-top: var(--padding-top);
    padding-inline: var(--section-padding);
}
:where(.notifecations, .offer) .content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 400px;
    box-shadow: var(--shadow-3);
    padding: 30px 20px;
    border-radius: var(--radius-extra-large);
    background-color: rgba(255, 255, 255, 0.849);
}

:where(.notifecations, .offer) .content img {
    width: 100%;
    transition: var(--main-transition);
    cursor: pointer;
    border-radius: var(--radius-extra-large);
}

:where(.notifecations, .offer) .content :where(.traking, .noti) {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
:where(.notifecations, .offer) .content .traking p {
    font-size: var(--fs-label-small);
    font-weight: var(--weight-medium);
    line-height: var(--lh-label-large);
    color: var(--black);
    border-bottom: 1px solid var(--light-gray);
    padding: 20px 0;
}
.notifecations .content .noti {
    border-radius: var(--radius-small);
    padding: 15px 10px;
}
.notifecations .content .noti.active {
    background-color: #f6f4ec;
}

.notifecations .content .noti .img-title {
    display: flex;
    gap: 0 10px;
    align-items: center;
    margin-bottom: 6px;
}
.notifecations .content .noti .img-title img {
    width: 50px;
    border-radius: 50%;
}
.notifecations .content .noti .img-title h3 {
    font-size: var(--fs-label-large);
    font-weight: var(--weight-bold);
    line-height: var(--lh-label-large);
    color: var(--black);
}
.notifecations .content .noti .disc {
    position: relative;
    font-size: var(--fs-label-small);
    line-height: var(--lh-label-medium);
    font-weight: var(--weight-medium);
    padding: 0 10px 20px;
}
.notifecations .content .noti .disc::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #dddee1;
    border-radius: 10px;
}
.notifecations .content .noti .date {
    padding-top: 5px;
    color: var(--black);
}
/*-----------------------------------*\
  #End Notifecations And Offer
\*-----------------------------------*/

/*-----------------------------------*\
  #Start Wallet
\*-----------------------------------*/
.wallet {
    padding-top: var(--padding-top);
    padding-inline: var(--section-padding);
}
.wallet .content {
    background-color: var(--white);
    padding: 10px;
    border-radius: var(--radius-small);
    box-shadow: var(--shadow-4);
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 1000px) {
    .wallet .content {
        grid-template-columns: 1fr;
    }
}
.wallet .content .box .title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: var(--weight-medium);
}
.wallet .content .box .ballance {
    background-color: var(--primary-yellow);
    border-radius: var(--radius-extra-large);
    position: relative;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: end;
    margin-bottom: 20px;
}
.wallet .content .box .ballance img {
    position: absolute;
    top: -20px;
    left: 20px;
}
.wallet .content .box .ballance .sallery {
    margin-inline: 20px;
    color: white;
}
.wallet .content .box .ballance .sallery p {
    font-size: 14px;
    margin-bottom: 5px;
}
.wallet .content .box .ballance .sallery span {
    font-size: 24px;
    font-weight: var(--weight-medium);
}
.wallet .content .box .transaction .heading {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.wallet .content .box .transaction .heading p {
    color: var(--primary-yellow);
    font-size: 12px;
    font-weight: var(--weight-semiBold);
}
.wallet .content .box .transaction .trans {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.wallet .content .box .transaction .trans .icon-desc {
    display: flex;
    align-items: center;
    gap: 10px;
}
.wallet .content .box .transaction .trans .icon-desc i {
    background-color: var(--primary-yellow);
    font-size: 20px;
    padding: 10px;
    border-radius: 50%;
    transform: rotate(30deg);
    color: var(--white);
}
.wallet .content .box .transaction .trans.active i {
    transform: rotate(210deg);
    background-color: var(--black);
}
.wallet .content .box .transaction .trans .icon-desc .desc p {
    font-size: 14px;
    margin-bottom: 5px;
}
.wallet .content .box .transaction .trans .time {
    direction: ltr;
}
.wallet .content .box .transaction .trans .time p {
    font-size: 12px;
    margin-bottom: 5px;
}
.wallet .content .box .transaction .trans .time span {
    font-size: 12px;
    color: #3bd163;
    font-weight: var(--weight-medium);
}
.wallet .content .box .transaction .trans.active .time span {
    color: #ff0000;
}
.wallet :where(input[type="radio"], input[type="checkbox"]) {
    appearance: none;
}
.wallet .content .box .credits-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 10px;
}
@media (max-width: 550px) {
    .wallet .content .box .credits-card {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 390px) {
    .wallet .content .box .credits-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
.wallet .content .box .credits-card .cred-card img {
    transition: var(--main-transition);
    width: 100%;
    border: 2px solid transparent;
    border-radius: 10px;
}
.wallet
    .content
    .box
    .credits-card
    .cred-card
    input[type="radio"]:checked
    + label
    img {
    border-color: var(--primary-yellow);
}
.wallet .content .box .amount-btn {
    width: 100%;
    text-align: center;
    background-color: var(--primary-yellow);
    font-size: 14px;
    font-weight: var(--weight-medium);
    padding: 10px 5px;
    border-radius: var(--radius-small);
    margin-top: 10px;
}
.wallet .content .small-box h3 {
    margin-bottom: 10px;
    font-size: 14px;
}
/*-----------------------------------*\
  #End Wallet
\*-----------------------------------*/
/*-----------------------------------*\
  #Start Faqs
\*-----------------------------------*/
.faqs {
    margin-top: 150px;
    padding-inline: var(--section-padding);
}
.faqs .content {
    background-color: var(--white);
    padding: 10px;
    border-radius: var(--radius-small);
    box-shadow: var(--shadow-4);
    position: relative;
}

.faqs .faq {
    margin: 0 auto;
    margin-bottom: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-3);
    border-radius: var(--radius-small);
    overflow: hidden;
}
.faqs .faq .question {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--main-color);
    background-color: var(--primary-yellow);
}
.faqs .faq .question h2 {
    font-size: 1.4rem;
    margin: 0;
    margin-top: 0;
}
.faqs .faq .question i {
    font-size: 25px;
    transition: 0.2s ease-in-out;
}
.faqs .faq .answers {
    padding: 0px 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}
.faqs .faq.active .answers {
    max-height: 1500px;
}
.faqs .faq.active .question i {
    transform: rotate(180deg);
}
.faqs .faq .answers p {
    line-height: 1.6;
    padding-top: 1rem;
    margin: 0;
    font-size: 1.2rem;
}
/*-----------------------------------*\
  #End Faqs
\*-----------------------------------*/
/*-----------------------------------*\
  #Start Videos
\*-----------------------------------*/
.videos {
    padding-top: var(--padding-top);
    padding-inline: var(--section-padding);
}
.videos .content {
    background-color: var(--white);
    padding: 10px;
    border-radius: var(--radius-small);
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}
.videos .content iframe {
    width: 100%;
    border-radius: 10px;
    min-height: 300px;
}
/*-----------------------------------*\
  #End Videos
\*-----------------------------------*/
/*-----------------------------------*\
  #Start Media
\*-----------------------------------*/
.media {
    padding-top: var(--padding-top);
    padding-inline: var(--section-padding);
}
.media .content {
    background-color: var(--white);
    padding: 10px;
    border-radius: var(--radius-small);
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.media .content .ser-link {
    padding: 10px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    transition: var(--main-transition);
}
.media .content .ser-link:hover {
    background-color: var(--primary-yellow);
}
/*-----------------------------------*\
  #End Media
\*-----------------------------------*/
/*-----------------------------------*\
  #Footer
\*-----------------------------------*/
.footer {
    background-color: var(--white);
    margin-top: 50px;
    padding-top: 30px;
    padding-bottom: 40px;
    border-top: 1px solid var(--light-gray);
}
.content-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.content-footer .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background-color: var(--primary-yellow);
    padding: 10px;
    font-size: var(--fs-headline-medium);
    border-radius: var(--radius-small);
}
.content-footer .nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--white);
    font-size: var(--fs-body-medium);
    font-weight: var(--weight-regular);
}
@media (max-width: 642px) {
    .content-footer .nav {
        flex-direction: column;
    }
}
.content-footer .nav li {
    transition: var(--main-transition);
    color: var(--black);
}
.content-footer .nav li.active,
.content-footer .nav li:hover {
    color: var(--primary-yellow);
}
.content-footer .social i {
    font-size: 50px;
    color: #319e37;
}
