/* start varibels */
:root {
    --main-color: #1c4645;
    --section-padding: 60px;
    --section-background: #f6f6f6;
}
/* end varibels */

/* start glopal rules */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
*::-webkit-scrollbar {
    width: 7px;
}
*::-webkit-scrollbar-thumb {
    background-color: #E8BC0E;
}

html {
    scroll-behavior: smooth;
}
body {
    font-family: "Work Sans", sans-serif;
    overflow-x: hidden;
    
}
#loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background: whitesmoke;    
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}
#loading-screen img {
    width: 200px;
    position: absolute;
}
#loading-screen .logo-animation {
    animation-name: logo;
    animation-duration: 18s;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    animation-direction:alternate;
    animation-play-state: running;
    animation-fill-mode:forwards;
}
@keyframes logo {
    100% {
        transform: rotate(500deg);
    }
}
#content {
    overflow: hidden;
    width: 100%;
    position: relative;
}
.container {
    padding: 0 25px;
    margin: 0 auto;
}
/* small */

/* medium */
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}
/* large */
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}
/* eng glopal rules */
/* start components */
.background {
    background-image: linear-gradient(to bottom, var(--main-color) 50% , var(--section-background) 50%);
}
.special-heading {
    color: #ebeced;
    font-size: 100px;
    text-align: center;
    margin: 0;
    font-weight: 800;
    letter-spacing: -3px;
}
.special-heading + p {
    margin: -30px 0 0;
    font-size: 20px;
    text-align: center;
    color: #f6b32e;
}
@media (max-width: 767px) {
    .special-heading {
        font-size: 60px;
    }
    .special-heading + p {
        margin-top: -20px;
    } 
}
/* end components *



/* start all skills */
.scrolling-list  {
    background-color: rgb(15, 15, 15);
    height: 1px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    padding: 26px;
    transition: .2s;
}
.scrolling-list-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: scrolling-list  100s linear infinite;
    transform: translateX(10%);
}
.scrolling-list  .scrolling-list-container span {
    font-weight: 900;
    font-style: normal;
    color:white;
    font-size: 14px;
    margin-right: 40px ;
    width: 210px;
}
.scrolling-list  .scrolling-list-container .circle {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: white;
}
.scrolling-list  .scrolling-list-container .seo-friendly {
    width: 550px;
}
/* start all skills animation */
@keyframes scrolling-list  {
    from {
    transform: translateX(10%);
}
    to {
    transform: translateX(-100%);
    }
}


.header {
    padding: 18px;
    background-color: var(--main-color);
    width: 100%;
    transition: .8s  ease;
    z-index: 99999;
}
.header.translate {
    background-color: #f6b32e;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.header .logo {
    width: 100px;
} 
.header .links {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
}
.header .links .icon {
    width: 30px;
    display: none;
    flex-wrap: wrap ;
    justify-content: flex-end;
    display: none;
}
.header .menu {
    display: none;
}
.header .links .icon span {
    background-color: white;
    margin: 2px 0;
}
.header .links .icon span:first-child {
    width: 100%;
    height: 2px;
}
.header .links .icon span:nth-child(2) {
    width: 70%;
    height: 2px;
    transition: 0.3s;
}
.header .links .icon span:last-child {
    width: 100%;
    height: 2px;
}

.header .ul {
    width: 545px;
    max-width: 800px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
    right: 0;
}
.header .ul a {
    color: white;
    font-size: 16px;
    transition: .3s;
    display: flex;
    flex-direction: row-reverse;
}
.icon-cart {
    margin-right: 0px;
    width: 20px;
    position: relative;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.icon-wishlist {
    margin-left: 10px;
    cursor: pointer;
}
.icon-cart span, .icon-wishlist span {
    position: absolute;
    bottom: 0;
    right: -14px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 5px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}
.icon-wishlist {
    display: flex;
    align-items: center;
    position: relative;
    margin-right: 30px;
}
.icon-wishlist i {
    color: white;
    font-size: 20px;
}

.header .ul a:hover {
    color:  #fb8800;;
}
.header .ul a:hover .icon-cart {
    color: white;
}
.header .ul a.change-color {
    color: var(--main-color);
}
.header .head-button{
    cursor: pointer;
    background-color: #f6b32e;
    border: none;
    padding: 10px 18px;
    font-size: 14px;
    transition: .3s;
}
.header .ul li {
    display: flex;
    align-items: center;
}
.header .ul .language-icon  {
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}
.header .ul .language-icon img {
    width: 40px;
}
.header .ul .language-selector {
    display: none;
}
.header .ul .language-selector.language-selector-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 77%;
    transform: translateX(-50%);
    z-index: 9999;
}
#language {
    background-color: #d1d9dc;
    border: none;
    padding: 10px;
    font-size: 13PX;
    cursor: pointer;
}
.header .head-button:hover{
    color: white;
}
.header .head-button.translate {
    background-color: var(--main-color);
    color: #f6b32e;
}
li, a {
    text-decoration: none;
    list-style: none;
}
@media (max-width: 900px) {
    .scrolling-list  .scrolling-list-container span {
        font-size: 12px;
        margin-right: 5px;
    }
    .scrolling-list  {
        padding: 22px;
    }
    .header-spacer {
        height: 70px;
    }
    .header {
        padding: 15px 0;
        width: 99.8%;
    }
    .header .logo {
        width: 80px;
        cursor: auto;
    }
    .header .ul {
        display: none;
    }
    .header .links {
        flex-direction: row;
    }
    .header .links .icon {
        display: flex;
        cursor: auto;
    }
    .header .menu {
        width: 100%;
        height: 100vh;
        z-index: 9999;
        position: fixed;
        background-color:var(--main-color);
        display: flex;
        flex-direction: column;
        padding: 30px;
        top: 0;
        left: 0;
        transform: translateX(100%);
        transition: .7s;
        color: white;
        margin: 0;
        overflow-y: scroll;
    }
    .header .menu.active {
        transform: translateX(0);
        background-color: #f6b32e;
        z-index: 99999;
        overflow-y: scroll;
    }
    .header .menu .x {
        left: 20px;
        color: white;
        top: 20px;
        font-size: 22px;
        font-weight: 900;
        cursor: auto;
        margin-bottom: 20px;
    }
    .header .menu ul {
        padding: 0;
    }
    .header .menu ul li {
        margin-bottom: 35px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.473);
        padding-bottom: 17px;
    }
    .header .menu ul li a {
        color: white;
        font-weight: 500;
        font-size: 18px;
        cursor: auto;
    }

}

/* start landing section */
.landing {
    background-color: var(--main-color);
    margin: 0;
    padding-top: 30px;
    position: relative;
    display: flex;
    align-items: center;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    border-bottom: 25px solid #869e9e;
    box-shadow: 0px 30px 0px -3px #d1d9dc;
    transition: .8s;
}
.aside {
    width: 233px;
    height: auto;
    position: fixed;
    background-color: var(--main-color);
    z-index: 999999;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px;
    font-size: 17px;
    color: #d1d9dc;
    font-family: "Kurale", serif;
    line-height: 2.3ch;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.418);
    transition: .8s;
    left: -233px;
    z-index: 9999;

}
.aside .about {
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 125px;
    background-image: url('..//images/about.png');
    background-size: cover;
    color: white;
    z-index: 9;
}
.aside.open {
    left: 0;
    color: var(--main-color);
    background-color: #d1d9dc;

}
.landing .container {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 0 px;
}
.landing .intro-text {
    width: 450px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.five-stars {
    display: flex;
    align-items: center;
    color: #e5c33b;
    font-size: 12px;
}
.five-stars img {
    width: 100px;
    margin: 0 5px 0 0;
}
.landing .intro-text h1 {
    margin: 0;
    padding: 0;
    font-size: 50px;
    color: white;
    font-family: "Raleway", sans-serif;
    
    font-weight: 700; 
}
.landing .intro-text .second-line {
    display: flex;
    align-items: center;
}
.landing .intro-text .second-line h2 {
    font-size: 50px;
    font-family: 'Londrina Outline', cursive;
    color: white;
    margin: 5px 10px 5px 0;
    
}
.landing .intro-text .second-line h1 {
    font-family: 'Roboto', sans-serif;
    background-color: #f6b32e;
}
.landing .intro-text p {
    width: 95%;
    border-left: 1px solid white ;
    padding: 0 0 0 10px ;
    color: white;
    font-weight: 200;
}
.watch-demo {
    width: 200px;
    display: flex;
    align-items: center;
    margin: 30px 0 10px 0;
}
.watch-demo .icon , .watch-demo .videoX {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 15px 0 0;
    padding: 20px;
    background-color: #f6b32e;
    border-radius: 50%;
    box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.685);
    cursor: pointer;
    transition: .3s;
}
.watch-demo .icon , .watch-demo .videoX:hover {
    color: white;
}
.watch-demo .icon i {
    margin-left: 2px;
    color: #111f27;
}
.watch-demo span {
    color: white;
    font-weight: 200;
    font-size: 14px;
}
.watch-demo .videoX {
    width: auto;
    height: auto;
    position: absolute;
    left: 15px;
    top: 20px;
    padding: 10px 12px;
    font-size: 12px;
    z-index: 9999999;
    display: none;
    transform: rotate(-90deg);
}
.watch-demo .videoX.block {
    display: block;
}
.watch-demo .video-container {
    position: absolute;
    top:-100%;
    left: 65%;
    background-color: saddlebrown;
    width: 550px;
    height: 950px;
    display: none;
    z-index: 9999;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 3000px rgba(0, 0, 0, 0.747);
    overflow: hidden;
    transform: rotate(90deg);
}
.watch-demo .video-container.block {
    display: block;
}
.watch-demo video {
    margin: auto;
    width: 100%;
}
.pluses {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.pluses .plus-container {
    color: white;
    text-align: center;
}
.pluses .plus-container h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
}
.pluses .plus-container p {
    padding: 0;
    border: none;
}
.pluses .plus-container:first-child::before {
    display: none;
}
.pluses .plus-container {
    width: 100px;
    font-size: 12px;
    position: relative;
}
.pluses .plus-container::before {
    content: "";
    position: absolute;
    height: 52%;
    width: 1px;
    background-image:linear-gradient(to top, var(--main-color), white, white);
    left: -27px;
    top: 23px;
}
.landing .intro-text .yellow-circle {
    width: 5px;
    height: 5px;
    background-color: #e5c33b;
    border-radius: 50%;
    position: absolute;
    right: 20px;
    top: 40%;
    filter: blur(2px);
}
.landing .intro-text .yellow-circle2 {
    top: 60%;
    right: -130px;
    filter: blur(1px);
}
.landing .intro-text .yellow-circle3 {
    width: 8px;
    height: 8px;
    top: 45%;
    right: -560px;
    filter: blur(3px);
    z-index: 999;
}
.landing .model-container {
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 50%;
    background-color: #205050;
    z-index: 999;
}
.landing .model-container .star {
    width: 55px;
    margin-top: -150px;
    margin-left: 25px;
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.459));
}
.landing .model-container .model {
    position: absolute;
    width: 425px;
    bottom: 0;
    margin-left: -10px;
    transition: .8s;
    transform: translateY(15px);
    animation-name: model1;
    animation-duration: 1s;
    animation-fill-mode: both;
    opacity: 0;
}
@keyframes model1 {
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.landing .model-container .mobile-model {
    display: none;
}
.landing .model-container .circle {
    width: 17px;
    height: 17px;
    margin-top: -150px;
    margin-right: 30px;
    border-radius: 50%;
    background-color: #ffc015;
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.459));
}
.landing .arrow-container {
    width: 150px;
    height: 112px;
    display: flex;
    align-items: end;
    background-color: var(--main-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    bottom: -81px;
    border-bottom-right-radius: 70%;
    border-bottom-left-radius: 70%;
    border: 10px solid #869e9e;
    border-top: none;
    border-left: none;
    border-right: none;
    box-shadow: 0px 30px 0px -19px #d1d9dc;



}
.landing .arrow-container .arrow-container2 {
    width: 150px;
    height: 71px;
    position: relative;
    border-bottom-right-radius: 70%;
    border-bottom-left-radius: 70%;
    background-color: initial;
}
.landing .arrow-container .arrow-container2::after, .landing .arrow-container .arrow-container2::before {
    content: '';
    height: 20px;
    width: 20px;
    background: var(--main-color);
    position: absolute;
    top: -1px;
    right: -20px;
    z-index: 1;
}
.arrow-container2::before  {
    right: auto;
    left: -20px;
}

.arrow-container2 span:after,
.arrow-container2 span:before {
    content: '';
    height: 20px;
    width: 40px;
    background: #869e9e;
    position: absolute;
    top: 0;
    right: -40px;
    z-index: 2;
    border-top-left-radius: 400px;
    border-top-right-radius: 400px;
}

.arrow-container2 span:before {
    right: auto;
    left: -40px;
}
.arrow-container2 span  {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.arrow-container2 span .mouse {
    width: 30px;
    height:50px;
    display: flex;
    align-items: start;
    justify-content: center;
    border: 2.8px solid white;
    border-radius: 20px;
    margin-top: -20px;
    padding-top: 5px;
}
.arrow-container2 span .mouse .mouse-animation {
    width: 2px;
    height:13px;
    border: 2px solid white;
    border-radius: 20px;
    animation-name: mouse-animation;
    animation-duration: 1.6s;
    animation-iteration-count: infinite;
}
.arrow-container2 span i {
    font-size: 25px;
    color: white;
    animation-name: arrow-animation;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
    margin-top: 10px;
}

@keyframes mouse-animation {
    100% {
        transform: translateY(7px);
        opacity: 0;
    }
}
@keyframes arrow-animation {
    100% {
        transform: translateY(7px);
        opacity: 0;
    }
}

.scrolling-list .scrolling-list-container span {
    font-size: 13px;
}
@media (max-width: 700px) {
    .landing {
        border-bottom-left-radius: 44px;
        border-bottom-right-radius: 44px;
        height: auto;
        padding-top: var(--section-padding);
        padding-bottom: var(--section-padding);
    }
    .landing .container {
        flex-direction: column-reverse;
        align-items: center;
    }
    .arrow-container2 span i {
        display: none;
    }
    .arrow-container2 span .mouse .mouse-animation {
        transform: translateY(20px);
    }
    .landing .intro-text {
        width: auto;
    }
    .landing .intro-text h1 {
        font-size: 15px;
    }
    .landing .model-container {
        width: 281px;
        height: 281px;
        position: relative;
        margin-bottom: 40px;
    }
    .landing .model-container::before {
        content: '';
        position: absolute;
        width: 112%;
        height: 112%;
        border-radius: 50%;
        border: 1px solid #32706e;
        left: -15px;
    }
    .landing .model-container .model {
        display: none;
    } 
    .landing .model-container .mobile-model {
        position: absolute;
        width: 292px;
        top: -20px;
        margin-left: -10px;
        display: flex;
    }
    .landing .intro-text {
        width: auto;
        text-align: center;
        align-items: center;
    }
    .five-stars {
        font-size: 12px;
        justify-content: center;
        margin-bottom: 0;
    }
    .landing .intro-text h1 {
        font-size: 35px;
    }
    .landing .intro-text .second-line {
        justify-content: center;
    }
    .landing .intro-text .second-line h2 {
        font-size: 35px;
    }
    .landing .intro-text p {
        border-left:none;
        padding: 0;
        font-size: 15px;
        text-align: center;
        width: 80%;
    }
    .watch-demo {
        display: none;
    }
    .pluses {
        display: none;
    }
    
    .landing .model-container .circle {
        width:14px;
        height: 14px;
    }
    .landing .intro-text .yellow-circle {
        right: 75px;
        top: -113%;
        z-index: 99999999;
    }
    .landing .intro-text .yellow-circle2 {
        right: 270px;
        top: -80%;
    }
    .landing .intro-text .yellow-circle3 {
        right: 240px;
        top: -30%;
    }
    .landing .model-container .star {
        width: 44px;
    }
    .scrolling-list .scrolling-list-container span {
        font-size: 11px;
    }
}
@media (min-width: 700px) and (max-width: 1200px) {
    .landing .model-container .model {
        width: 370px;
        margin-left: 83px;
        z-index: 99;
    }
    .scrolling-list .scrolling-list-container span {
        width: 230px;
        font-size: 11px;
    }
}
/* end landing section */








/* start slider */
main{
    margin: auto;
    padding-top: 90px;
    background-color: var(--section-background);
    
}
.slider{
    width: 100%;
    overflow: hidden;

}
.slider .list {
    padding-top: 60px;
    display: flex;
    width: 100%;
    height: 440px;
    min-width: calc(350px * var(--quantity));
    position: relative;
}
.slider .list .item{
    width: 350px;
    height:auto;
    position: absolute;
    left: 100%;
    animation: autoRun 60s linear infinite;
    transition: filter 0.5s;
    animation-delay: calc( (60s / var(--quantity)) * (var(--position) - 1) - 60s)!important;
    padding: 22px;
    background-color: #e5c33b;
    box-shadow: 3px 3px 13px 2px rgba(0, 0, 0, 0.158);
    text-align: center;
    border-radius: 5px;
}
.slider .list .item p {
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    margin: 7px 0;
    font-family: "Kurale", serif;
    color: var(--main-color);
    font-weight: 600;

}
.slider .list .item button {
    background-color: var(--main-color);
    border: none;
    color: #e5c33b;
    padding: 10px 20px;
    font-weight: 600;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
}
.slider .list .item img{
    width: 100%;
    border-radius: 5px;
}
.slider .list .item .new {
    width: 70px;
    top: 20px;
    position: absolute;
    left: -39px;
    transform: rotate(-48deg);
}
.slider .list .item .new2 {
    width: 24px;
    top: 3px;
    left: -8px;
    z-index: 999;
}
.slider .list .item .new1 {
    animation-name: new;
    animation-duration: 1s;
    animation-fill-mode: backwards;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
    animation-timing-function:cubic-bezier(0.39, 0.575, 0.565, 1);
}
@keyframes new {
    0% {
        transform: rotate(-48deg);
    }
    100% {
        transform: rotate(-60deg);
    }
}
@keyframes autoRun{
    from{
        left: 100%;
    }to{
        left: calc(350px * -1);
    }
}
.slider:hover .item{
    animation-play-state: paused!important;
    filter: grayscale(1);
}
.slider .item:hover{
    filter: grayscale(0);
}
.slider[reverse="true"] .item{
    animation: reversePlay 60s linear infinite;
    -webkit-animation: reversePlay 60s linear infinite;
}
@keyframes reversePlay{
    from{
        left: calc(350px * -1);
    }to{
        left: 100%;
    }
}
/* end slider */



/* start gallery */
.gallery {
    padding-top: 100px;
    padding-bottom: var(--section-padding);    
    background-image: linear-gradient(to top, white, var(--section-background), var(--section-background));
}
.gallery .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 50px;
    padding-top: var(--section-padding);
}
.gallery .gallery-box {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
    position: relative;
    padding: 15px;
    border-radius: 15px;
    /* opacity: 0;
    transform: scale(0); */
    transition: .8s;
}
.gallery .gallery-box a {
    width: auto;
    z-index: 999;
}
.gallery .gallery-box.translate {
    transform: scale(1);
    opacity: 1;
}


.gallery-box::before,
.gallery-box::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 5px solid var(--main-color);
    border-bottom-left-radius: 30px;
    border-top-right-radius:30px;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.gallery-box::before {
    top: -5px;
    right: -5px;
    border-left: none;
    border-bottom: none;
}
.gallery-box::after {
    bottom: -5px;
    left: -5px;
    border-right: none;
    border-top: none;
}
.gallery-box::before:nth-of-type(2) {
    top: -2px;
    right: -2px;
    border-left: none;
    border-bottom: none;
}
.gallery-box::after:nth-of-type(2) {
    bottom: -2px;
    left: -2px;
    border-right: none;
    border-top: none;
}



.gallery .gallery-box .img {
    width: 60px;
    height: 60px;
    position: relative;
    margin-bottom: 25px;
}
.gallery .gallery-box .img img {
    width: 100%;
    border-bottom-left-radius: 15%;
    border-bottom-right-radius: 15%;
    border-top-left-radius: 15%;
    border-top-right-radius: 15%;
    position: absolute;
    left: 0;
    top: 0;
}
.gallery .gallery-box .img::before {
    content: '';
    width: 100%;
    height: 113%;
    position: absolute;
    left: 0;
    top: 0;
    border: 1px solid var(--main-color);
    transform: rotate(-5deg);
    border-bottom-left-radius: 15%;
    border-bottom-right-radius: 15%;
    border-top-left-radius: 15%;
    border-top-right-radius: 25%;
    transition: .7s;
}
.gallery .gallery-box:hover .img::before {
    transform: rotate(0deg);
}
.gallery .gallery-box .information {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}
.gallery .gallery-box .information h3 {
    text-align: start;
    font-family: "Kurale", serif;
    color: var(--main-color);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0px;
}
.gallery .gallery-box .information p {
    text-align: start;
    font-size: 15px;
    width: 90%;
    color: rgba(0, 0, 0, 0.534);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    line-height: 2.8ch;
    margin: 10px 0;
}
.gallery .gallery-box .information .button {
    width: 120px;
    height: 39px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 7px;
    z-index: 999;
}
.gallery .gallery-box .information .first-button {
    margin-top: 29px;
}
.gallery .gallery-box .information .button span {
    font-size: 15px;
    font-family: "Kurale", serif;
    color: var(--main-color);
    font-weight: 600;
    transition: .3s;
}
.gallery .gallery-box .information .button:hover span {
    color: #fb8800;
}
.gallery .gallery-box .information .button i {
    transition: .3s;
    color: var(--main-color);
}
.gallery .gallery-box .information .button:hover i {
    color: #fb8800;
    transform: translateX(5px);
}

@media (max-width: 700px) {
    .gallery .gallery-box.translate2 {
        transform: scale(1);
        opacity: 1;
    }
    .gallery .gallery-box {
        cursor: auto;
    }
    .gallery .gallery-box a{
        cursor: auto;
    }
}
/* end gallery */
/* start servises */
.services {
    padding-top: var(--section-padding);
    padding-bottom: 140px;
}
.services .services-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    grid-gap: 110px;
    margin-top: 100px;
}
.services .services-content .col1 {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.services .services-content .col .serv{
    border-top: 1px solid var(--main-color);
    padding: 25px;
    padding-right: 15px;
    padding-left: 0;
}

.services .services-content .col .serv:last-child {
    border-bottom: 1px solid var(--main-color);
}
.services .services-content .col .serv .serv-p {
    font-size: 20px;
    line-height: 2.3ch;
    margin: 0;
    margin-bottom: 15px;
    font-family: "Kurale", serif;
    transform: translateX(-100px);
    transition: .8s;
    opacity: 0;
}
.services .services-content .col .serv .serv-p.translate {
    transform: translateX(0);
    opacity: 1;
}
.services .services-content .col .serv .information {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.services .services-content .col .serv  .information a {
    color: rgba(0, 0, 0, 0.795);
    font-size: 11px;
    font-weight: 600;
    line-height: 3ch;
}
.services .services-content .col .serv .information img {
    width: 19px;
    background-color: var(--main-color);
    border-radius: 50%;
}
.services .services-content .col3 {
    padding-left: 30px;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 85%;
}
.services .services-content .col3 .serv {
    border: none;
    display: flex;
    flex-direction: column;
    align-items: end;
    padding: 0;
    transform: translateX(-100px);
    opacity: 0;
    transition: .8s;
}
.services .services-content .col3 .serv2 {
    transition: 1.2s;
}
.services .services-content .col3 .serv3 {
    transition: 1.4s;
}
.services .services-content .col3 .serv4 {
    transition: 1.6s;
}
.services .services-content .col3 .serv.translate {
    transform: translateX(0);
    opacity: 1;
}
.services .services-content .col3 .serv:last-child {
    border: none;
}
.services .services-content .col3 .serv span {
    font-size: 28px;
    font-weight: 0;    
    font-family: "Kurale", serif;
    color: var(--main-color);
}
.services .services-content .col3 .serv a {
    color: rgba(0, 0, 0, 0.795);
    font-size: 11px;
    font-weight: 600;
    margin-top: 20px;
}
@media (max-width: 700px) {
    .services .services-content .col .serv {
        padding-left: 0;
        padding-right: 0;
    }
    .services .services-content .col3 {
    padding-left: 0px;
    }
    .services .services-content .col3 .serv {
        margin-bottom: 30px;
        align-items: start;
    }
}


.services .services-content .col2 {
    display: flex;
    justify-content: center;
}
.services .services-content .col2 .model-container {
    background-color: var(--main-color);
    width: 314px;
    height: 430px;
    border-radius: 200px;
    position: relative;
    display: flex;
    justify-content: center;
}
.services .services-content .col2 .model-container::before {
    content: '';
    position: absolute;
    width: 109%;
    height: 109%;
    top: -20px;
    border-radius: 200px;
    border: 2px solid var(--main-color);
    opacity: .6;
}
.services .services-content .col2 .model-container .model2{
    width: 131.3%;
    bottom: -38px;
    position: absolute;
    transform: translateY(30px);
    transition: .8s;
    opacity: 0;
}
.services .services-content .col2 .model-container .model2.translate {
    transform: translateY(0px);
    opacity: 1;
}

@media (max-width: 700px) {
    .services .services-content .col2 .model-container .model2.translate2 {
        transform: translateY(0px);
        opacity: 1;
    }
    .services .services-content .col2 .model-container .model2.translate3 {
        transform: translateY(0px);
        opacity: 1;
    }
    .services .services-content .col3 .serv.translate2 {
        transform: translateX(0);
        opacity: 1;
    }
    .services .services-content .col .serv .serv-p.translate2 {
        transform: translateX(0);
        opacity: 1;
    }
}

/* end servises */

/* start features */
.features {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
    background-color: var(--main-color);
    position: relative;
}
.animation-logo {
    width: 200px;
    height: 200px;
    position: absolute;
    top: -93px;
    left: 7%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.animation-logo img {
    width: 150px;
    position: absolute;
}
.animation-logo .logo2 {
    animation-name: logo;
    animation-duration: 18s;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    animation-direction:alternate;
    animation-play-state: running;
    animation-fill-mode:forwards;
    filter: drop-shadow(0 0 .3px  #111f27);
}
@keyframes logo {
    100% {
        transform: rotate(500deg);
    }
}
.features .special-heading {
    opacity: .2;
}
.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 50px;
    margin-top: var(--section-padding);
}
.features .feat {
    padding: 25px 20px;
    text-align: start;
    background-color: #1d4f4e;
    border-radius: 15px;
    color: white;
    transform: translateY(60px);
    transition: 1s;
}
.features .feat2 {
    transition: 1.4s;
}
.features .feat3 {
    transition: 1.8s;
}
.features .feat.translate {
    transform: translateY(0px);
}
.features .feat .button {
    width: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.features .feat .button span {
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
    margin: 0;
}
.features .feat .button i {
    color: white;
    font-size: 16px;
    transition: .3s;
}
.features .feat .button:hover i {
    color: #f6b32e;
    transform: translateX(5px);
    margin: 0;
}
.features .feat .button:hover span  {
    color: #f6b32e;
}
.features .feat i:first-child {
    margin-bottom: 15px;
}
.features .feat .button i {
    margin: 0;
}
.features .feat h3 {
    margin-bottom: 15px;
}
.features .feat p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.692);
    font-weight: 400;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-bottom: 15px;
}
.features .feat a {
    font-family: "Kurale", serif;
    color: rgba(255, 255, 255, 0.692);
    font-size: 12px;  
}
@media (max-width: 700px) {
    .features .feat {
        transform: translateY(0);
        transform: translateX(-120%);
    }
    .features .feat.translate2 {
        transform: translateX(0px);
    }
    .animation-logo {
        width: 100px;
        height: 100px;
        top: -46px;
        left: 60%;
    }
    .animation-logo img {
        width: 100px;
    }
}
/* end features */

/* start footer */
.footer {
    background-color: #f6b32e;
    color: white;
    padding: 25px 10px;
    text-align: center;
    font-size: 18px;
}
.footer span {
    font-weight: bold;
    color: var(--main-color);
}
/* end footer */
#counter {
    animation: bounce1 1s ease-in-out infinite alternate;
}
@keyframes bounce1 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}
#counter2, #counter3 {
    animation: bounce 3s ease-in-out infinite alternate;
}

@keyframes bounce {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}






.cart-message {
    position: fixed;
    bottom: 47%;
    left: -70px;
    background-color: #f6b32e;
    color: var(--main-color);
    font-size: 20px;
    font-weight: 600;
    padding: 10px 20px;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: opacity 1s ease;
    transform: rotate(-90deg);
}


.name {
    font-size: 20px;
}
.image2 {
    position: absolute;
    left: 0;
    opacity: 0;
    transition: .2s ease-in;
}
.product-images {
    position: relative;
}
.product-images:hover .image2 {
    opacity: 1;
}

/* cartTab */
.cartTab {
    width: 430px;
    background-color: white;
    color: #1e3117;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    inset: 0 -430px 0 auto;
    display: grid;
    grid-template-rows: 70px 1fr 70px;
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.116);
    transition: .7s ease-in-out;
    z-index: 999999;
}
.cartTab h1 {
    padding: 20px;
    margin: 0;
    font-weight: 300;
}
.cartTab .btn {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.cartTab .btn button {
    background-color: #E8BC0E;
    cursor: pointer;
    border: none;
    font-weight: 500;
    font-family: "Kurale", serif;
    color: #143938;
    font-size: 20px;
}
.cartTab a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E8BC0E;
}
.cartTab .btn .close {
    background-color: var(--main-color);
    color: white;
}

.cartTab.open {
    inset: 0 0 0 auto;
}
.cartTab.close{
    inset: 0 100% 0 auto;
}
.listCart {
    padding: 0 20px;
    overflow-y: scroll;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.listCart .item img{
    width: 100%;
}
.listCart .item{
    display: grid;
    grid-template-columns: 50px 130px 55px 1fr;
    gap: 10px;
    align-items: center;
    border-bottom: 1px solid #0000000a;
    padding: 15px 0;
}

.listCart .item .name {
    font-size: 15px;
}
.product-count {
    display: flex;
    align-items: center;
    width: 102px;
    padding: 5px;
    justify-content: space-between;
}
.plus, .minus {
    width: 25px;
    height: 25px;
    font-size: 15px;
    font-weight: bold;
    background-color: var(--main-color);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 50%;
}
.count {
    margin: 0 10px;
    font-size: 20px;
    /* margin-bottom: 10px; */
}


/* side cart tab */








/* list products */
.img-container {
    width: 100%;
    overflow: hidden;
}
.listProduct  img{
    width: 100%;
    border-radius: 2px;
    border-top-left-radius: 30px;
    transition: .3s;
}
.listProduct{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.product-item  {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom:30px;
    position: relative;
    height: auto;
    border-top-left-radius: 50px;
    transition: .1s ease-in;
}
.product-item h3 {
    font-size: 13px;
    font-weight: 500;
    position: absolute;
    background-color: #143938;
    padding: 5px 20px;
    left: -1px;
    top: -1px;
    color: white;
    border-bottom-right-radius: 50px;
    border-top-left-radius: 50px;
    transition: .3s;
}
.product-item p {
    width: 70%;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 18px;
    margin: 10px 0 3px 0;
}
.before-sale {
    color: red;
    font-size: 12px;
    opacity: .7;
    position: relative;
    font-weight: 500;
}
.before-sale::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color:red;
}

.wishlistTab{
    width: 430px;
    background-color: white;
    color: #1e3117;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    inset: 0 -430px 0 auto;
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.116);
    transition: .7s ease-in-out;
    z-index: 99999;
    display: grid;
    grid-template-rows: 70px 1fr 70px;
}
.wishlistTab img{
    width: 100px;
}
.wishlistTab  h1 {
    padding: 20px;
    margin: 0;
    font-weight: 300;
}
.wishlistTab .closeWishlistTab {
    background-color: var(--main-color);
    color: white;
    padding: 7px 15px;
    border: none;
    cursor: pointer;

    font-weight: 500;
    font-family: "Kurale", serif;
    font-size: 20px;
}
.wishlistTab .btn {
    display: grid;
    grid-template-columns: repeat(1, 1fr); 
}
.listWishlist {
    height: 100%;
    padding: 0 20px;
    overflow-y: scroll;
}
.listWishlist .item {
    align-items: center;
    border-bottom: 1px solid #0000000a;
    padding: 15px 0;
}
.listWishlist .item button {
    background-color: var(--main-color);
    color: white;
    padding: 7px 15px;
    border: none;
    font-size: 13px;
    cursor: pointer;
}
.listWishlist .item .addToCart {
    background-color:#E8BC0E;

}
.listWishlist .item .name {
    width: 80%;
    margin: 10px 0;
    font-size: 15px;
}
.wishlistTab.open {
    inset: 0 0 0 auto;
}
.wishlistTab.close{
    inset: 0 100% 0 auto;
}
.add-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 40%;
}
.listProduct i {
    padding: 0;
    width: auto;
    background-color: white;
    padding: 19px;
    color: #143938;
    font-size: 15px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #00000022;
}
.listProduct .addWishlist,
.listProduct .addCart  {
    border: none;
    background-color: transparent;
    margin: 6px;
    opacity: 0;
    transition: .2s ease-in;
}
.product-item:hover .addCart{
    opacity: 1;
}
.product-item:hover .addWishlist{
    opacity: 1;
}
.product-item:hover  {
    box-shadow: 10px 0px 5px 10px rgba(0, 0, 0, 0.023);
}
.product-item:hover img {
    scale: 1.1;
}
.product-item:hover h3 {
    border-top-left-radius: 0%;
}
.listProduct .addWishlist .fa-solid {
    color: #eb4e4e;
    animation-name: icon;
    animation-fill-mode: both;
    animation-duration: 1s;
    
}
@keyframes icon {
    0% {
        scale: 1;
    }
    50% {
        scale: 1.5;
    }
    100% {
        scale: 1;
    }
}


/* تلوين النجوم */
.price {
    width: 100%;
    margin: 0;
    font-weight: 600;
    color: #143938;
}
.rating {
    margin-bottom: 7px;
}
.star {
    font-size: 17px;
    margin: 0;
    padding: 0;
    color: lightgray; /* لون النجوم الفارغة */
}

.star.filled {
    color: rgb(243, 186, 0); /* لون النجوم المملوءة */
}
.product-item p {
    color: var(--main-color);
}

.listProduct i {
    transition: .2s;
    cursor: pointer;
}
.listProduct i:hover {
    color: #ffc015;
}


@media (max-width: 700px) {
    .icon-wishlist {
        margin-left: 0;
        cursor: auto;
        margin-right: 27px;    
    }
    .icon-cart,
    .cartTab .btn button,
    .plus, .minus,
    .listProduct button,
    .wishlistTab .closeWishlistTab,
    .listWishlist .item button  {
    cursor: auto;
    }
    .icon-cart {
        margin-right: 21px;
    }
    .listProduct {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        gap: 13px;
    }
    .product-item  {
        position: relative;
        height: 220px;
        align-items: center;
        font-size: 13px;
        display: block;
    }  
    .product-item p {
        width: 100%;
        font-size: 16px;
        margin: 7px 0 3px 0;
    }    
    .listProduct img {
        width: 100%;
    }
    .listProduct button{ 
        margin: 0;
    }
    .listProduct .addWishlist i {
        top: 5px;
        right: 7px;
    }
    .cartTab {
        width: 100%;
        padding: 0;
        inset: 0 -730px 0 auto;
    }
    
    .cartTab h1 {
        padding-bottom: 0;
    }
    .cartTab .listCart {
        padding: 20px 10px;
        padding-top: 0;
    }
    .listCart .item {
        display: grid;
        grid-template-columns: 50px 100px 70px 1fr
    }
    .listCart .item .name {
        font-size: 13px;
    }
    .product-count {
        width: 80px;
        font-size: 11px;
    }
    .plus, .minus {
        width: 20px;
        height: 20px;
    }
    .wishlistTab {
        width: 100%;
        inset: 0 -730px 0 auto;
    }
    .slider .list .item {
        width: 230px;
        padding: 16px;
    }
    .slider .list {
        min-width: calc(210px * var(--quantity));
    }
    .slider .list .item p {
        margin: 4px 0;    
        font-size: 16px;
        font-weight: 600;
    }
    .slider .list .item button {
        font-size: 14px;
        cursor: auto;
    }
    .slider .list {
        height: 350px;
    }
    .gallery {
        padding-top: 52px;
    }



    .slider{
        overflow-x: scroll;
    }
    .slider::-webkit-scrollbar {
        display: none;
        width: 0;
    }

    .slider .list .item .new1 {
        width: 62px;
        top: 22px;
        position: absolute;
        left: -33px;
        z-index: 9;
    }
    .price {
        margin: 5px 0;
    }
    .add-container {
        top: 27%;
    }
    .listProduct .addWishlist,
    .listProduct .addCart  {
    opacity: 1;
    margin: 2px;
    }
    .listProduct i {
        padding: 14px;
        font-size: 13px;
        cursor: auto;
    }
    .product-item h3 {
        font-size: 11px;
    }
    .features .feat .button {
        cursor: auto;
    }
}
@media (min-width: 580px) and (max-width: 1100px) {
    .listProduct {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* //////////////////////////////////////////// */
/* new styinig for login and address page  */

.main {
    width: 100%;
    height: 100vh;
    display: flex;
}
.forms-container {
    width: 64%;
    height: 100%;
    border-radius: 35px;
    position: absolute;
    right: -30px;
    background-color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.Address {
    align-items: start;
}
#addressForm {
    width: 90%;
    margin: auto;
}
#addressForm input {
    width: 42%;
}
.forms-container #login-form,
.forms-container #signup-form {
    width: 500px;
    position: relative;
}
.forms-container h2 {
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 600;
    color: var(--main-color);
}
.forms-container input {
    border: none;
    border-bottom: 2px solid rgba(0, 98, 0, 0.07);
    width: 500px;
    margin-bottom: 35px;
    outline: none;
    padding: 10px 0;
    color: rgb(0, 53, 0);
    font-size: 14px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    transition: .5s;
} 
.create-account,
.login, 
.Address .button {
    width: 92%;
}
.row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-items: center;
}
.create-account,
.login, 
.Address .button {
    background-color: #f6b32e;
    border: none;
    padding: 15px 20px;
    color: rgba(0, 79, 0, 0.824);
    font-weight: 600;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 16px;
    width: 100%;
    border-radius: 0;
    cursor: pointer;
    transition: .3s;
} 
@media (max-width: 700px) {
    .create-account,
    .login, 
    .Address .button {
        border-radius: 50px;
        cursor: auto;
    }
}


.create-account:hover,
.login:hover, 
.Address .button:hover {
    background-color: #1e3117;
    color: #E8BC0E;
}
.forms-container p {
    font-size: 12px;
    color: rgba(0, 79, 0, 0.664);
    margin-top: 20px;
    align-items: center;
}
.forms-container p button {
    border: none;
    background-color: transparent;
    color: #E8BC0E;
    font-size:14px;
}




.phone {
    position: relative;
    width: 50%;
    display: flex;
}

#countryCode {
    background-color: transparent;
    border: none;
    position: absolute;
    top: 31%;
    right: 60px;
}


/* تنسيق الحاوية */
.loginLogoutButtonContainer {
    position: relative;
    margin-left: 30px;
    background-color: transparent;
    border: none;
    font-size: 14px;
    width: 40px;
    height: 40px;
    color: #58d7d7d8;
    font-weight: 500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loginLogoutButtonContainer.background {
    background-color: chartreuse;
}
.loginLogoutButtonContainer.border {
    border: 2px solid #869e9e;
}
/* تنسيق الأيقونة */
.loginLogoutButtonContainer .login-icon {
    font-size: 19px;
    transition: color 0.5s ease; /* تأثير الانتقال عند تغيير اللون */
}

.login-icon.loged {
    fill: #4fafafa0;
}
.user {
    fill: #4fafafa0;
    opacity: .5;

}
.user.color {
    fill: white;
    opacity: 1;
}

/* تنسيق الرسالة (Tooltip) */
.tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #f6b32e;
    color: #ffffff;
    padding: 4px 9px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    font-weight: 600;
}

/* إظهار الرسالة وتحريكها عند الهوفر */
.loginLogoutButtonContainer:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.product-details {
    padding-top: 50px;
    padding-bottom: 120px;
    display: flex;
}
.product-details #productImage {
    width: 500px;
    margin-right: 30px;
    border-radius: 7px;
}
.product-details #productName {
    font-size: 15px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.468);
}
.product-details #productDescription {
    font-weight: 500;
    font-size: 23px;
    margin: 10px 0;
    width: 300px;
    line-height: 2.5ch;
}
.product-details .price {
    display: flex;
    font-size: 14px;
}
.before-sale {
    margin-left: 5px;
}
.product-details #productPrice {
    font-weight: 600;
    color: #1d4f4e;
}
.product-details button{
    cursor: pointer;
    background-color: #f6b32e;
    border: none;
    padding: 10px 18px;
    font-size: 12px;
    transition: .3s;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 600;
    background-color: #1c4645;
    color: #f6b32e; 
}
.product-details button:hover {
    color: white;
}
.reviews {
    display: flex;
    align-items: center;
}
.reviews .reviewsText {
    color: rgba(0, 0, 0, 0.557);
    font-weight: 600;
    font-size: 11px;
    margin-left: 5px;
}
.product-details hr {
    margin: 20px 0;
    color: rgba(0, 0, 0, 0.079);
    
}
.quantity-and-addToCart {
    display: flex;
}
.quantityy {
    display: flex;
    background: #0000000f;
    width: 110px;
    justify-content: space-between;
    align-items: center;
    transition: .3s;
    margin-right: 10px;
}
.quantityy #decrementBtn, .quantityy #incrementBtn{
    padding: 10px 15px;
    font-weight: 700;
    background-color: transparent;
    color: #143938;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.748);
    border-top: 0;
    border-bottom: 0;
}
.quantityy #decrementBtn i, .quantityy #incrementBtn i{
    font-size: 10px;
}

.quantityy #productQuantity {
    margin: 0 7px;
    color: #143938;
    font-weight: 300;
}
.quantityy #decrementBtn:hover, .quantityy #incrementBtn:hover{
    color: white;
    background-color: #f6b32e;
}
.tag, .category {
    font-size: 12px;
    margin: 5px 0 0 0;
}
.tag span, .category span {
    color: rgba(0, 0, 0, 0.58);
    font-weight: 700;
    font-size: 10px;
}


@media (max-width: 900px) {
    .quantityy {
        display: flex;
    }
    .header .links {
        align-items: center;
    }
    .loginLogoutButtonContainer {
        display: none;
    }
    .Phone-login{
        display: flex;
        flex-direction: column;        
        margin: 10px auto 80px auto;
        width: 100px;
        height: 100px;
        padding: 0;
    }
    .Phone-login .tooltip {
        color: #111f27;
        font-weight: 600;
        font-size: 18px;
        opacity: 1;
        bottom: -30px;
    }
    .product-details {
        flex-direction: column;
        align-items: center;
    }
    .product-details #productImage {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
        margin-top: 0;
    }

    .main .video {
        width: 100%;
        display: flex;
        justify-content: space-around;
    }
    .forms-container {
        margin: 60px 0;
        width: 90%;
        height: auto;
        left: 50%;
        transform: translateX(-50%);
        background-color: #111f277c;
        border-radius: 10px;
        padding: 40px 20px;
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.275);
    }
    .forms-container #login-form,
    .forms-container #signup-form {
        width: 90%;
    }
    .forms-container input {
        width: 100%;
        padding: 10px;
        background-color: transparent;
        border-bottom: 1px solid #ffffff51;
        color:  white;
        font-weight: 600;
        background: #ffffff09;
        border: 1px solid #ffffff17;
        border-radius: 50px;
        margin-bottom: 16px;
    }
    .forms-container input::placeholder,
    .forms-container textarea::placeholder {
        color:  rgba(255, 255, 255, 0.685);
    }
    .forms-container h2 {
        color: #f6b32e;
    }
    .forms-container p {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.844);
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }


    .Address #addressForm {
        height: 100%;
    }
    .Address #addressForm .row {
        flex-direction: column;
    }
    #addressForm input {
        width: 100%;
        background: #ffffff09;
        border: 1px solid #ffffff17;
        border-radius: 50px;
    }
    .Address #addressForm .phone {
        width: 100%;
    }
    #countryCode {
        top: 16%;
        right: 0;
        color: #fb8800;
    }
    .Address .button {
        margin-bottom: 20px;
    }   
    .product-details .details {
        width: 100%;
    }
    .product-details #addToCart {
        width: 100%;
        position: fixed;
        bottom: 0;
        z-index: 999;
        background-color: #f6b32e;
        color: #143938;
        left: 0;
        padding: 20px 0;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        font-size: 19px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }
    .product-details {
        padding-top: 30px;
    }   


}




.order-details-container {
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .6s;
    transform: translateY(100px);
}
.order-details-container.opacity {
    opacity: 1;
    transform: translateY(0px);
    width: 1170px;
    margin: 60px auto 0 auto;

}
.order-details-container .order-details {
    width: 100%;
}
.order-details-container .order-details-img {
    width: 80%;
    margin-right: -150px;
    z-index: -1;
}
.order-details-container .order-details-img img {
    width: 100%;
    filter: hue-rotate(319deg);
    -webkit-filter: hue-rotate(319deg);
}
.order-details-container .customer-and-about {
    width: 100%;
    margin: 0 0px 40px 0px;
    justify-content: start;
}
.about-customer,
.about-address,
.about-order {
    margin: 40px 0;
    padding: 0 50px 0 0;
    width: auto;
    border-radius: 7px;
}
.about-customer {
    margin-right: 100px;
}
.customer-and-about .row,
.about-address .row {
    justify-content: start;
    line-height: 2.7ch;
}
.order-details-container h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #143938;
    position: relative;
    font-family: "Kurale", serif;
}
.order-details-container span {
    margin-right: 10px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.563);
}
.order-details-container p {
    font-weight: 600;
    font-size: 13px;
}
.order-details-container table {
    border-collapse:inherit;
    border: 2px solid rgba(255, 255, 255, 0); /* شفافية حدود الجدول */
    border-collapse: collapse; /* دمج حدود الخلايا */
    width: 100%;
}
.order-details-container th, 
.order-details-container td {
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.066); /* إضافة الحد السفلي لكل خلية */
    border: none;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 5px;

}
.order-details-container .row1 {
    background-color: #304c5d0c;
}
.order-details-container .priducts {
    margin-bottom: 15px;
}
.order-details-container .total {
    margin: 25px 0;
    color: #ffc015;
}
.order-details-container i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    background-color: #598baa19;
    padding: 20px;
    border-radius: 50%;
    position: absolute;
    left: 0px;
    top: -50px;
    color: #ffc015;
}


@media (max-width: 700px) {
    .product-details button {
        cursor: auto;
    }
    .order-details-container {
        padding: 0 37px;
        margin: 20px 0;
    }
    .order-details-container .customer-and-about {
        width: 100%;
        margin: 0 0 25px 0;
        flex-direction: column;
    }
    .about-customer, .about-address {
        margin-right: 0px;
    }
    .order-details-container .row {
        align-items: start;
    }
    .order-details-container .order-details-img {
        position: absolute;
        right: 100px;
        top: 200px;
    }
    .product-details hr {
        margin: 15px 0;
        color: rgba(0, 0, 0, 0.027);
    }
    .order-details-container.opacity {
        width: 970px;
        padding: 11px;
    }
}

@media (min-width: 700px) and (max-width: 900px){
    .icon-cart {
        margin-right: 30px;
    }
}
    .order-details-container {
        padding: 0 37px;
        margin: 60px 0;
    }

    .about-customer, .about-address {
        margin-right: 0px;
    }

.done-order-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99;
    transition: .3s;
    text-align: center;
}
.doneOrderImg-doneOrderText {
    padding: 50px 80px;
    border-radius: 5px;
    box-shadow: 1px 1px 20px 10px rgba(0, 0, 0, 0.048);
    margin-top: -140px;
    animation: container 1.5s ease .1s 1 alternate;
    transform: scale(.8);
}
@keyframes container {
    0% {
        transform: scale(.8);
}
    50% {
        transform: scale(.9);
    }
    100% {
        transform: scale(.8);
    }
}

.done-order-container .done-order {
    width: 100%;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;    
}
.done-order-container .message {
    animation: message 1.2s ease-in-out .2s 1 alternate;
    transform: translateY(0);
}
@keyframes message {
    0% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0);
    }
}
.done-order-container .message h3 {
    font-weight: 600;
    font-size: 38px;
    color: #E8BC0E;
    margin: 7px 0;
}
.done-order-container .message span {
    color: #14393870;
    font-weight: 600;
    font-size: 19px;
}

.done-order img {
    position: absolute;
    width: 150px;
}
.done-order-circle {
    animation: circle 1.5s ease-in-out .2s 1 alternate-reverse;
}
@keyframes circle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(480deg);
    }
}
.check-mark {
    animation: checkMark 1.5s ease .1s 1 alternate;
}
@keyframes checkMark {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
        filter: drop-shadow(0px 0px 3px rgba(255, 255, 255, 0.24));
    }
    100% {
        transform: scale(1);
    }
}



.password-container {
    position: relative;
}
.girl {
    position: absolute;
    bottom: 53px;
    right: 0;
    width: 100px;
    height: 100px;
    transition: .3s;
}
.girl img {
    width: 75px;
    position: absolute;
    top: 0;
    transition: .3s;
}



.swal2-popup {
    position: fixed !important; /* تأكد من أن التنبيه ثابت فوق جميع العناصر */
    z-index: 99999999 !important; /* تعيين z-index أعلى من أي عنصر آخر */
    backdrop-filter: blur(30px);
    background-color: #14393881;
    border: 1px solid rgba(255, 255, 255, 0.295);
    color: white;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.164);
}
/* تخصيص لون الأيقونة حسب نوع التنبيه */
.swal2-success-circular-line-left,
.swal2-success-circular-line-right,
.swal2-success-fix{
    background-color: transparent !important; /* لون أخضر للأيقونة الناجحة */
}
.swal2-popup .swal2-html-container {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.623);
    font-weight: bold;
}

.swal2-container {
    z-index: 9999999999999999;
}
/* تغيير لون زر التأكيد */
.custom-confirm-btn {
    background-color: #f6b32e!important; /* لون الخلفية */
    color: #45a049 !important; /* لون النص */
    border: none !important; /* إزالة الحدود */
    padding: 10px 20px !important; /* التحكم في المسافات */
    border-radius: 5px !important; /* زوايا مستديرة */
    font-size: 16px !important; /* حجم النص */
    cursor: pointer !important; /* تغيير المؤشر عند التمرير */
    transition: background-color 0.3s ease; /* تأثير انتقال */
    outline: none;
}

/* لون مختلف عند التمرير على الزر */
.custom-confirm-btn:hover {
    background-color: #45a049 !important;
    color: white !important; /* لون النص */
}


.address-container .image,
.login-container .image {
    width: 41%;
    background-color: darkblue;
    background: url(../images/back.webp);
    background-repeat: no-repeat;
    background-size: cover;
}
@media (max-width: 700px) {
    .swal2-popup {
        width: 80% !important; /* يغطي الشاشة بالكامل */
        font-size: 10px !important;
    }
    .swal2-popup .swal2-html-container {
        font-weight: 500;
        font-size: 15px;
    }
    .login-container {
        background: url(../images/back.webp);
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
    }
    .intro-title {
        line-height: 1.5ch;
    }
    .intro-text .button {
        margin-top: 20px;
        cursor: auto;
    }
    .address-container {
        overflow-y: scroll; /* منع تغيير حجم الصفحة */
    }
    .five-stars {
        margin-bottom: 0;
    }
    .girl {
        width: 60px;
        bottom: 3px;
        right: 0;
    }
    .girl img {
        width: 55px;
        position: absolute;
        top: 0;
    }
    .address-container .image,
    .login-container .image {
        display: none;
    }
    .done-order-container  {
        padding: 5px;
    }
    .done-order-container .message span {
        font-size: 17px;
    }
    .doneOrderImg-doneOrderText {
        padding: 40px 4px;
    }
}



@media (min-width: 700px) and (max-width: 900px){
    .forms-container {
        background-color: #111f277c;
        border-radius: 10px;
        padding: 40px 20px;
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.275);
    }
    .address-container .image, .login-container .image {
        width: 100%;
    }
    .girl {
        width: 60px;
        bottom: 3px;
        right: 0;
    }
    .girl img {
        width: 55px;
        position: absolute;
        top: 0;
    }
}
