/*============== global style ========*/ 
* {
    margin: 0;
    padding: 0;
}
html {
    overflow-x: hidden;
    overflow-y : hidden
}
body {
    font-family: regularFont ;
    direction: rtl;
}
.btn {
    padding: 0;
}
.form-control:focus , .btn:focus {
    box-shadow: none !important;
    outline: none;
}
p {
    margin-bottom: 0;
}
/*========= fonts =============*/
@font-face {
    font-family: regularFont ;
    src: url(../fonts/Tajawal-Regular.ttf);
} 
@font-face {
    font-family: mediumFont;
    src: url(../fonts/Tajawal-Medium.ttf);
}
@font-face {
    font-family: blodFont;
    src: url(../fonts/Tajawal-Bold.ttf);
}
/* start nav */
nav.navbar {
    background: #5C3BCE;
    padding-left: 130px;
    padding-right: 130px;
    padding-top: 0;
    padding-bottom: 2px;
}
nav.navbar a.logo {
    margin-left: auto;
}

nav.navbar a.logo h2 {
    color: white;
    font-size: 24px;
    font-weight: 700;
}
nav.navbar ul.links,
nav.navbar ul.icons {
    list-style: none;
    display: flex;
    margin: 0;
}
nav.navbar ul li a{
    margin-right: 32px;
    color: #DBD2F9;
    font-size: 18px;
    transform: translateY(4px);
    font-weight: 400;
    transition: all .3s ease;
}
nav.navbar ul li a.active ,
nav.navbar ul li a:hover {
    color: white;
    font-weight: 700;
}
nav.navbar ul.icons .bars-icon {
    display: none;
}
nav.navbar ul.links .close-icon {
    display: none;
}
nav.navbar form {
    position: relative;
    width: 300px;
    margin-right: 32px;
}
nav.navbar form input{
    border: 1px solid #00CFC2;
    box-sizing: border-box;
    border-radius: 20px;
    background: white;
    height: 40px;
    font-weight : 400 ;
    font-size : 14px ;
    color: #5C6670;
}
nav.navbar form input::placeholder{
    font-weight : 400 ;
    font-size : 14px ;
    color: #5C6670;
}
nav.navbar form button{
    position: absolute;
    left: 0;
    top: 0;
    background: #362083;
    height: 40px;
    border-radius: 20px 0 0 20px ;
    width: 40px;
}
nav.navbar .dropdown {
    position: relative;
}
nav.navbar .dropdown:hover .drop-menu {
    display: block;
}
nav.navbar .dropdown .drop-menu {
    position: absolute;
    background: white;
    z-index: 600;
    text-align: start;
    list-style: none;
    padding: 10px;
    top: 30px;
    right: 34px;
    width: 200px;
    box-shadow: 0 0 12px rgba(0,0,0,.01);
    transition: all .3s ease;
    display: none;
}
nav.navbar .dropdown .drop-menu li {
    border-bottom: 1px solid #ddd;
    padding-bottom: 12px;
    transition: all .3s ease;
}
nav.navbar .dropdown .drop-menu li:last-of-type {
    border-bottom: none;
    padding-bottom: 3px;
}
nav.navbar .dropdown .drop-menu li a {
    margin-right: 0;
    color: #362083;
}
@media (max-width : 1200px) {
    nav.navbar {
        padding: 2px 18px  2px;
    }
    nav.navbar a.logo img {
        height: 45px;
    }
    nav.navbar ul.links {
        position: fixed;
        height: 100%;
        width: 300px;
        background: #000;
        left: -300px;
        top: 0;
        z-index: 1000;
        display: block;
        text-align: center;
        padding-top: 100px;
        transition: all .5s ease;
    }
    nav.navbar ul.links li a {
        margin-bottom: 30px;
        margin-right: auto;
    }
    nav.navbar ul.icons .bars-icon {
        display: inline;
    }
    nav.navbar ul.links .close-icon {
        display: inline;
        position: absolute;
        top: 20px;
        right: 30px;
    }
    nav.navbar form {
        width : 140px;
        margin-right: 19px;
    }
    nav.navbar form input ,
    nav.navbar form button {
        height: 28px;

    }
    nav.navbar .dropdown a:first-of-type {
        display: none;
    }
    nav.navbar .dropdown .drop-menu {
        display: block;
        background: none;
        top: auto;
        right: auto;
        width: 100%;
    }
    nav.navbar .dropdown .drop-menu li {
        border-bottom: none;
        padding-bottom: none;
    }
    nav.navbar .dropdown .drop-menu li a {
        color: #DBD2F9;
        display: block;
        text-align: center;
    }
}
/* end nav */
/* start search */
section.search {
    background: rgb(41,32,72,95%) ;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all .5s ease;
}
section.search form {
    position: relative;
}
section.search form input{
    border: 1px solid #00CFC2;
    box-sizing: border-box;
    border-radius: 20px;
    background: white;
    height: 40px;
    font-weight : 400 ;
    font-size : 14px ;
    color: #5C6670;
}
section.search form input::placeholder{
    font-weight : 400 ;
    font-size : 14px ;
    color: #5C6670;
}
section.search form button{
    position: absolute;
    left: 0;
    top: 0;
    background: #00CFC2;
    height: 40px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    width: 40px;
}
section.search a.close-icon {
    position: absolute;
    top: 10%;
    right: 10%;
}
section.search a.close-icon img {
    width : 25px
}
/* end search */
/* start login form */
.login-form {
    padding-top: 96px;
}
.login-form h1 {
    color: #5C3BCE;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 73px;
}
.login-form form {
    width: 70%;
    margin: auto;
}
.login-form form .form-group {
    position: relative;
    margin-bottom: 32px;
}
.login-form form .form-group label {
    position: absolute;
    color: #5C3BCE;
    font-size: 16px;
    font-weight: 700;
    right: 47px;
    top: -13px;
    background: white;
    padding: 0 9px;
    display: none;
}
.login-form form .form-group input {
    height: 50px;
    border-radius: 25px;
    border: 1px solid #5C3BCE ;
    font-weight: 500;
    font-size: 16px;
    color: #171F26;
    padding-right: 40px;
}
.login-form form .form-group input::placeholder {
    font-weight: 500;
    font-size: 16px;
    color: #171F26;
}
.login-form form .form-group a.forget-btn {
    margin-top: 8px;
    margin-bottom: 32px;
    float: right;
}
.login-form form .form-group img {
    position: absolute;
}
.login-form form button[type = "submit"] {
    background: #00CFC2;
    color: white;
    height: 48px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 20px;
    width: 100%;
    margin-bottom: 108px;
}
.login-form h6 {
    font-size: 16px;
    font-weight: 400;
}
.login-form h6 .register-btn {
    color:  #3190FF;
    font-weight: 700;
}
@media (max-width : 992px) {
    .login-form {
        padding-top: 70px;
    }
    .login-form h1 {
        font-size: 30px;
        margin-bottom: 50px;
    }
    .login-form form {
        width: 100%;
    }
}
/* end login form */
/* start signup form */
.signup-form {
    padding-top: 40px;
}
.signup-form h1 {
    color: #5C3BCE;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 30px;
}
.signup-form form {
    width: 70%;
    margin: auto;
}
.signup-form form .form-group {
    position: relative;
    margin-bottom: 20px;
}
.signup-form form .form-group label {
    position: absolute;
    color: #5C3BCE;
    font-size: 16px;
    font-weight: 700;
    right: 47px;
    top: -13px;
    background: white;
    padding: 0 9px;
    display: none;
}
.signup-form form .form-group input {
    height: 50px;
    border-radius: 25px;
    border: 1px solid #5C3BCE ;
    font-weight: 500;
    font-size: 16px;
    color: #171F26;
    padding-right: 40px;
}
.signup-form form .form-group input::placeholder {
    font-weight: 500;
    font-size: 16px;
    color: #171F26;
}
.signup-form form .form-group a.forget-btn {
    margin-top: 8px;
    float: right;
}
.signup-form form .form-group img {
    position: absolute;
}
.signup-form form button[type = "submit"] {
    background: #00CFC2;
    color: white;
    height: 48px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 20px;
    width: 100%;
    margin-bottom: 55px;
}
.signup-form h6 {
    font-size: 16px;
    font-weight: 400;
}
.signup-form h6 .login-btn {
    color:  #3190FF;
    font-weight: 700;
}
@media (max-width : 992px) {
    .signup-form {
        padding-top: 70px;
    }
    .signup-form h1 {
        font-size: 30px;
        margin-bottom: 50px;
    }
    .signup-form form {
        width: 100%;
    }
}
/* end signup form */
/* start forget-password form */
.forget-password-form {
    padding-top: 180px;
}
.forget-password-form h1 {
    color: #5C3BCE;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 64px;
}
.forget-password-form form {
    width: 70%;
    margin: auto;
}
.forget-password-form form .form-group {
    position: relative;
    margin-bottom: 32px;
}
.forget-password-form form .form-group label {
    position: absolute;
    color: #5C3BCE;
    font-size: 16px;
    font-weight: 700;
    right: 47px;
    top: -13px;
    background: white;
    padding: 0 9px;
    display: none;
}
.forget-password-form form .form-group input {
    height: 50px;
    border-radius: 25px;
    border: 1px solid #5C3BCE ;
    font-weight: 500;
    font-size: 16px;
    color: #171F26;
    padding-right: 40px;
}
.forget-password-form form .form-group input::placeholder {
    font-weight: 500;
    font-size: 16px;
    color: #171F26;
}
.forget-password-form form .form-group a.forget-btn {
    margin-top: 8px;
    float: right;
}
.forget-password-form form .form-group img {
    position: absolute;
}
.forget-password-form form button[type = "submit"] {
    background: #00CFC2;
    color: white;
    height: 48px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 20px;
    width: 100%;
    margin-bottom: 55px;
}
@media (max-width : 992px) {
    .forget-password-form {
        padding-top: 70px;
    }
    .forget-password-form h1 {
        font-size: 30px;
        margin-bottom: 50px;
    }
    .forget-password-form form {
        width: 100%;
    }
}
/* end signup form */
/* start reset-password form */
.reset-password-form {
    padding-top: 138px;
}
.reset-password-form h1 {
    color: #5C3BCE;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 64px;
}
.reset-password-form form {
    width: 70%;
    margin: auto;
}
.reset-password-form form .form-group {
    position: relative;
    margin-bottom: 32px;
}
.reset-password-form form .form-group label {
    position: absolute;
    color: #5C3BCE;
    font-size: 16px;
    font-weight: 700;
    right: 47px;
    top: -13px;
    background: white;
    padding: 0 9px;
    display: none;
}
.reset-password-form form .form-group input {
    height: 50px;
    border-radius: 25px;
    border: 1px solid #5C3BCE ;
    font-weight: 500;
    font-size: 16px;
    color: #171F26;
    padding-right: 40px;
}
.reset-password-form form .form-group input::placeholder {
    font-weight: 500;
    font-size: 16px;
    color: #171F26;
}
.reset-password-form form .form-group a.forget-btn {
    margin-top: 8px;
    float: right;
}
.reset-password-form form .form-group img {
    position: absolute;
}
.reset-password-form form button[type = "submit"] {
    background: #00CFC2;
    color: white;
    height: 48px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 20px;
    width: 100%;
    margin-bottom: 55px;
}
@media (max-width : 992px) {
    .reset-password-form {
        padding-top: 70px;
    }
    .reset-password-form h1 {
        font-size: 30px;
        margin-bottom: 50px;
    }
    .reset-password-form form {
        width: 100%;
    }
}
/* end signup form */
/* start main */
main {
    background: #362083;
    padding: 16px 130px;
    display: flex;
}
main div.dropdown {
    margin-left: auto;
}
main div.dropdown button {
    color: white;
    font-weight: 400;
    font-size: 12px;
    margin-right: 18px;
}
main div.dropdown button:hover {
    color: white;
}
main div.dropdown button::after {
    display: none;
}
main div.dropdown button::before {
    content: '\f078';
    position: absolute;
    right: 2px;
    top: 4px;
    font-size: 13px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
main div.dropdown .dropdown-menu {
    text-align: start;
}
main ul.icons {
    display: flex;
    list-style: none;
    margin: 0;
}
main ul.icons li a {
    margin-right: 22px;
}
@media (max-width : 992px) {
    main {
        padding: 32px 30px 8px 16px;
    }
    main div.dropdown button {
        margin-right: 0px;
    }
    main div.dropdown button::before {
        right: -15px;
    }
}
/* end main */
/* start header */
header div.carousel .carousel-item {
    position: relative;
    height: 750px;
    max-height: 550px;
}
header div.carousel .carousel-item img{
    object-fit: cover;
    height: 750px;
}
header div.carousel .carousel-item .content {
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    width: 100%;
}
header div.carousel .carousel-item .content h1 {
    color: white;
    margin-bottom: 32px;
    font-weight: 700;
    font-size: 32px;
}
header div.carousel .carousel-item .content p {
    color: white;
    font-weight: 400;
    font-size: 24px;
    width: 416px;
    margin: auto auto 32px auto;
}
header div.carousel .carousel-item .content .browse {
    background: #00CFC2;
    border-radius: 20px;
    width: 400px;
    margin: auto;
    color: white;
    font-size: 20px;
    font-weight: 700;
    height: 48px;
    line-height: 43px;
}
header div.carousel .carousel-indicators li {
    height: 10px;
    width: 10px;
    background: white;
    border-radius: 50%;
    border: 0;
    opacity: 1;
}
header div.carousel .carousel-indicators li.active {
    border: 1px solid #F5FAF9 ;
    background: #00CFC2;
    height: 20px;
    width: 20px;
    transform: translateY(-5px);
}
header div.carousel .carousel-control-prev {
    left: 45px;
}
header div.carousel .carousel-control-next {
    right: 45px;
}
header div.carousel .carousel-control-prev,
header div.carousel .carousel-control-next {
    opacity: 1;
}
header div.carousel .carousel-control-prev img,
header div.carousel .carousel-control-next img{
    background: transparent;
    border-radius: 100%;
    padding: 5px 11px;
    transition: all .3s ease;
}
header div.carousel .carousel-control-prev img:hover,
header div.carousel .carousel-control-next img:hover{
    background : #00CFC2
}
@media (max-width : 992px) {
    header {
        height: 300px;
    }
    header div.carousel .carousel-item {
        height: 300px;
        max-height: 300px;
    }
    header div.carousel .carousel-item img{
        height: 300px;
    }
    header div.carousel .carousel-control-prev,
    header div.carousel .carousel-control-next {
        display: none;
    }
    header div.carousel img {
        height: 300px;
    }
    header div.carousel .carousel-item .content {
        top: 57%;
    }
    header div.carousel .carousel-item .content h1 {
        font-size: 18px;
        margin-bottom: 17px;
    }
    header div.carousel .carousel-item .content p {
        font-size: 16px;
        width: 80%;
        margin-bottom: 17px;
    }
    header div.carousel .carousel-item .content .browse {
        width: 80%;
        height: 30px;
        line-height: 30px;
        font-size: 13px;
    }
}
/* end header */
/* start sections */
.sections {
    padding: 96px 130px 0 130px;
}
.sections .title-row {
    margin-bottom: 32px;
}
.sections .title-row h1 {
    margin-left: auto;
    color: #5C3BCE;
    font-weight: 700;
    font-size: 32px;
}
.sections .title-row a {
    color: #5C3BCE;
    font-weight: 700;
    font-size: 18px;
}
.sections .sections-row .parent {
    background: #F4F2FD;
    height: 60px;
    margin-bottom: 32px;
    border-radius: 4px;
    text-align: center;
    line-height: 60px;
    display: block;
    overflow : hidden
}
.sections .sections-row .parent p {
    font-weight: 700;
    font-size: 18px;
    color: #5C3BCE;
}
@media (max-width : 992px) {
    .sections {
        padding: 48px 16px 0 16px;
    }
    .sections .sections-row .parent p {
        font-size: 12px;
    }
    .sections .title-row h1 {
        font-size: 18px;
    }
    .sections .title-row a {
        font-size: 14px;
    }
}
/* end sections */
/* start products */
.products {
    padding: 96px 130px 0 130px;
}
.products .title-row {
    margin-bottom: 32px;
}
.products .title-row h1 {
    margin-left: auto;
    color: #5C3BCE;
    font-weight: 700;
    font-size: 32px;
}
.products .title-row a {
    color: #5C3BCE;
    font-weight: 700;
    font-size: 18px;
}
.products .cards-row .card{
    padding: 4px 4px 16px 4px;
    background: #F4F2FD;
    border-radius: 8px;
    text-align: start;
    margin-bottom: 32px;
    border: none;
    position: relative;
}
.products .cards-row .card img{
    border-radius: 8px;
    height: 450px;
    object-fit: contain;
}
.products .cards-row .card .card-body {
    padding: 24px 16px 0 0;
    position: relative;
}
.products .cards-row .card .card-body .card-title {
    width :325px ;
    color: #171F26;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
}
.products .cards-row .card .card-body .author{
    color : #171F26 ;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 24px;
}
.products .cards-row .card .card-body .price{
    color : #5C3BCE ;
    font-weight: 700;
    font-size: 32px;
}
.products .cards-row .card .card-body .cart-btn {
    position: absolute;
    left: 16px;
    bottom: 3px;
}
.products .cards-row .card .card-body .cart-btn img {
    width: 48px;
    height: 48px;
}
.products .cards-row .card i.fa-heart {
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
    color: #5C3BCE;
    font-size: 30px;
}
@media (max-width : 992px) {
    .products {
        padding: 48px 16px 0 16px;
    }
    .products .title-row h1 {
        font-size: 18px;
    }
    .products .title-row a {
        font-size: 14px;
    }
}
/* end products */
/* start footer */
footer {
    background: #110733;
    margin-top: 50px;
    padding-top: 30px;
}
footer .logo-content {
    padding-bottom: 48px;
    border-bottom: 1px solid #362083;
}
footer .logo-content h1{
    font-weight: 700;
    font-size: 32px;
    color: white;
    margin-bottom: 10px;
}
footer .logo-content p{
    width : 350px ;
    color: #DBD2F9;
    font-weight: 400;
    font-size: 16px;
    margin: auto;
}
footer .rights-content p {
    margin-top: 32px;
    margin-bottom: 24px;
    color: #DBD2F9;
    font-weight: 400;
    font-size: 16px;
}
.langbutton{
    color: #CBE6E2;
    padding: 0px 11px 0px 0px;
    
}
/* end footer */ 
/* start preloader */
.preloader {
    /* background-image: url(../images/loader-bg.webp); */
    background-color: #3d030f;
    background-size: 100% 100%;
    color: white;
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 100000;
    text-align: center;
    padding-top: 30vh;
}
.preloader h1 {
    font-size: 64px;
    font-weight: 700;
}
.preloader i {
    font-size: 27px;
    margin: 50px 30px;
}
.preloader .first-load {
    animation: loading .5s ease infinite;
}
.preloader .second-load {
    animation: loading .5s ease infinite 0.1s;
}
.preloader .third-load {
    animation: loading .5s ease infinite 0.2s;
}
@keyframes loading {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px)
    }
  }
/* end preloader */
/* start breadcrumb */
.breadcrumb {
    background: url(../images/breadcrumb-bg.webp);
    background-size: 100% 100%;
    padding: 128px 0;
    margin-bottom: 32px;
}
.breadcrumb h1 {
    color: white;
    font-weight: 700;
    font-size: 32px;
}
@media (max-width : 992px) {
    .breadcrumb h1 {
        font-size: 20px;
    }
    .products .cards-row .card img {
        height: 311px;
    }
}
/* end breadcrumb */
/* start details-header */
.details-header {
    padding: 32px 128px;
    background: #F4F2FD;
    border-radius: 0px 0px 24px 24px;
    direction: ltr;
}
.details-header div.carousel .carousel-indicators li {
    height: 10px;
    width: 10px;
    background: white;
    border-radius: 50%;
    border: 0;
    opacity: 1;
}
.details-header div.carousel .carousel-indicators li.active {
    border: 1px solid #F5FAF9 ;
    background: #00CFC2;
    height: 20px;
    width: 20px;
    transform: translateY(-5px);
}
.details-header div.carousel .carousel-control-prev {
    left: 45px;
}
.details-header div.carousel .carousel-control-next {
    right: 45px;
}
.details-header div.carousel .carousel-control-prev,
.details-header div.carousel .carousel-control-next {
    opacity: 1;
}
.details-header div.carousel .carousel-control-prev img,
.details-header div.carousel .carousel-control-next img{
    background: #CBE6E2;
    border-radius: 50%;
    padding: 11px 14px;
    transition: all .3s ease;
}
.details-header div.carousel .carousel-control-prev img:hover,
.details-header div.carousel .carousel-control-next img:hover{
    background : #00CFC2
}
.details-header p.category {
    margin-bottom: 30px;
    color: #000000;
    font-weight: 500;
    font-size: 16px;
}
.details-header p.category span:first-of-type{
    margin-left: 25px;
}
.details-header h1.title {
    color: #5C3BCE;
    width: 250px;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 16px;
}
.details-header p.author {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 32px;

}
.details-header p.author span{
    font-weight : 400 ;
    color : #5C3BCE ;    
}
.details-header p.price {
    margin-bottom: 50px;
}
.details-header p.price span {
    color: #5C3BCE;
    font-weight: 700;
    font-size: 32px;
    margin-left: 8px;
}
.details-header p.price del {
    color: #FF1E1E;
    font-weight: 400;
    font-size: 24px;
}
.details-headerformbutton {
    color: white;
    background: #00CFC2;
    border-radius: 20px;
    font-weight: 700;
    font-size: 20px;
    height: 48px;
    width : 70% ;
    margin-left: 32px;
}
.details-headerformbutton:hover {
    color: white
}
.details-headerformselect {
    width: 64px;
    height: 48px;
    border: 1px solid #00CFC2;
    border-radius: 8px;
}
.details-headerformselect:focus {
    border: 1px solid #00CFC2;
    outline: none;
}
@media (max-width : 992px) {
    .details-header {
        padding: 16px;
    }
    .details-header div.carousel {
        margin-bottom: 13px;
    }
    .details-headerformbutton {
        font-size: 14px;
        width : 60% ;
    }
    .details-header h1.title {
        width: auto;
        font-size: 18px;
    }
    .details-header p.author {
        font-size: 12px;
    }
    .details-header p.price {
        margin-bottom: 50px;
    }
    .details-header p.price span {
        font-size: 18px;
    }
    .details-header p.price del {
        font-size: 12px;
    }
}
/* end details-header */
/* start details */
.details {
    padding: 96px 128px 0 128px ;
}
.details h1.title {
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 24px;
    color: #5C3BCE;
}
.details .parent {
    padding: 32px 24px;
    background: #F4F2FD;
    border-radius: 8px;
    text-align: start;
}
.details .parent p.label {
    color: #5C3BCE;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 18px;
}
.details .parent p.description{
    color : #171F26 ;
    /* width : 215px ; */
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 16px;
}
.details .parent span.horizental-line{
    background : #B9ABED ;
    height: 1px;
    display: inline-block;
    margin-bottom: 10px;
    width : 50px
}
.details .parent p.content {
    font-weight: 400;
    font-size: 24px;
    color: #000000;
    width: 77%;
    margin-bottom: 32px;
}
.details .parent p.content:last-of-type {
    margin-bottom: 64px;
}
@media (max-width : 992px) {
    .details {
        padding: 32px 16px;
    }
    .details .parent {
        margin-bottom: 32px;
    }
    .details .parent p.content {
        width : auto
    }
}
/* end details */
/* start cart */
.cart {
    padding-top: 96px;
}
.cart h1.title {
    font-weight: 700;
    font-size: 32px;
    color: #5C3BCE;
    margin-bottom: 48px;
}
.cart .card {
    border: 0px;
    height: 148px;
    background: #F4F2FD;
    border-radius: 8px;
    padding: 4px;
    text-align: start;
    position: relative;
    width: 63%;
    margin: auto auto 24px auto;
}
.cart .card img {
    max-height: 140px;
    width: 140px;
    height: 140px;
}
.cart .card .content {
    position: absolute;
    top: 16px;
    right: 156px;
}
.cart .card .content h1 {
    color: #171F26;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    width: 230px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
}
.cart .card .content p.price{
    color : #5C3BCE ;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 16px;
}
.cart .card .content p.price del{
    color : #FF1E1E ;
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 16px;
}
.cart .card .content p.count input {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    width: 30px;
}
.cart .card .content p.count i {
    border-radius: 50%;
    padding: 3px;
    cursor: pointer;
}
.cart .card .content p.count i.fa-plus {
    color : #5C3BCE ;
    border: 1px solid #5C3BCE;
}
.cart .card .content p.count i.fa-minus {
    border: 1px solid #B0B7BF;
    color: #B0B7BF;
}
.cart .card a.remove-btn {
    position: absolute;
    top: 10px;
    left: 12px;
}
.cart .card a.remove-btn i {
    width: 16px;
    height: 20px;
    color: #5C6670;
    transition: all .3s ease;
}
.cart .card a.remove-btn i:hover {
    color: #FF1E1E;
}
.cart .bill {
    margin: 48px auto ;
    background: #F4F2FD;
    border-radius: 8px;
    width: 63%;
    text-align: start;
    padding: 12px 16px 4px 16px;
}
.cart .bill p {
    padding: 12px 0;
    border-bottom: 1px solid #DBD2F9;
    margin-bottom: 0;
    font-weight: 400;
    font-size: 16px;
    color: #171F26;
}
.cart .bill p:last-child {
    border-bottom: none;
}
.cart .bill p span {
    float: left;
    font-weight: 700;
    font-size: 16px;
}
.cart .bill p.total {
    color: #5C3BCE;
    font-weight: 700;
    font-size: 14px;
}
.cart .bill p.total span {
    font-size: 14px;
}
.cart .continue-btn {
    color: white;
    background: #00CFC2;
    border-radius: 20px;
    width: 63%;
    height: 48px;
    margin: auto;
    font-weight: 700;
    font-size: 20px;
    line-height: 48px;
    margin-bottom: 28px;
}
@media (max-width : 992px) {
    .cart .card,
    .cart .bill,
    .cart .continue-btn {
        width: 100%;
    }
    .cart .card .content h1 {
        width: 120px;
    }
}
/* end cart */
/* start invoice */
.invoice {
    padding-top: 96px;
}
.invoice h1.title {
    font-weight: 700;
    font-size: 32px;
    color: #5C3BCE;
    margin: 0 auto 24px auto;
    text-align: start;
    width: 63%;
}
.invoice .card {
    border: 0px;
    height: 148px;
    background: #F4F2FD;
    border-radius: 8px;
    padding: 4px;
    text-align: start;
    position: relative;
    width: 63%;
    margin: auto auto 24px auto;
}
.invoice .card img {
    max-height: 140px;
    width: 140px;
    height: 140px;
}
.invoice .card .content {
    position: absolute;
    top: 16px;
    right: 156px;
}
.invoice .card .content h1 {
    color: #171F26;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    /* width: 141px; */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
}
.invoice .card .content p.price{
    color : #5C3BCE ;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 16px;
}
.invoice .card .content p.price del{
    color : #FF1E1E ;
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 16px;
}
.invoice .card .content p.count {
    color: #5C6670;
    font-weight: 400;
    font-size: 18px;
}
.invoice .card .content p.count span{
    color: #171F26;
    font-weight: 700;
}
.invoice .confirm-btn {
    color: white;
    background: #00CFC2;
    border-radius: 20px;
    width: 63%;
    height: 48px;
    margin: auto;
    font-weight: 700;
    font-size: 20px;
    line-height: 48px;
    margin-bottom: 28px;
}
.invoice .address-card {
    background: #F4F2FD;
    border-radius: 8px;
    padding: 10px;
    border: 2px solid #5C3BCE;
    text-align: start;
    width: 63%;
    margin: 0 auto 96px auto;
}
.invoice .address-card p {
    margin-bottom: 10px;
    color: #171F26;
    font-weight: 400;
    font-size: 16px;
}
.invoice .address-card p span {
    font-weight: 600;
    font-size: 20px;
}
.invoice .address-card .address-footer p span {
    font-size: 16px;
}
.invoice .info-card {
    background: #F4F2FD;
    border-radius: 8px;
    padding: 32px 24px 24px 0;
    text-align: start;
    width: 63%;
    margin: 0 auto 96px auto;
}
.invoice .info-card p {
    margin-bottom: 32px;
    color: #171F26;
    font-weight: 400;
    font-size: 16px;
}
.invoice .info-card p span {
    font-weight: 600;
    font-size: 20px;
}
.invoice .bill {
    margin: 48px auto ;
    background: #F4F2FD;
    border-radius: 8px;
    width: 63%;
    text-align: start;
    padding: 12px 16px 4px 16px;
}
.invoice .bill p {
    padding: 12px 0;
    border-bottom: 1px solid #DBD2F9;
    margin-bottom: 0;
    font-weight: 400;
    font-size: 16px;
    color: #171F26;
}
.invoice .bill p:last-child {
    border-bottom: none;
}
.invoice .bill p span {
    float: left;
    font-weight: 700;
    font-size: 16px;
}
.invoice .bill p.total {
    color: #5C3BCE;
    font-weight: 700;
    font-size: 14px;
}
.invoice .bill p.total span {
    font-size: 14px;
}
@media (max-width : 992px) {
    .invoice .card,
    .invoice .bill ,
    .invoice .info-card ,
    .invoice .address-card,
    .invoice .continue-btn {
        width: 100%;
    }
    .invoice .card .content h1 {
        width: 120px;
    }
    .invoice h1.title {
        width: 100%;
    }
}
/* end invoce */
/* start confirmation */
.confirmation {
    padding: 128px 0 64px 0;
}
.confirmation img {
    height: 400px;
    width: 400px;
    margin-bottom: 96px;
}
.confirmation h1 {
    color: #00CFC2;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 48px;
}
.confirmation p:first-of-type {
    font-weight: 400;
    font-size: 24px;
    width: 410px;
    margin: 0 auto 48px auto;
    color: #171F26;
}
.confirmation p:last-of-type {
    font-weight: 400;
    font-size: 18px;
    color: #171F26;
    margin-bottom: 96px;
}
.confirmation p:last-of-type span {
    color: #3190FF;
    font-weight: 700;
}
.confirmation a.continue-btn {
    height: 48px;
    width: 400px;
    background: #00CFC2;
    border-radius: 20px;
    line-height: 44px ;
    color: white;
    font-weight: 700;
    font-size: 20px;
}
@media (max-width : 992px) {
    .confirmation img {
        height: 300px;
        width: 300px;
    }
    .confirmation p:first-of-type,
    .confirmation a.continue-btn {
        width: 100%;
    }
}
/* end confirmation */
/* start orders */
.orders {
    padding : 96px 0 50px 0 ;
}
.orders h1.title {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 32px;
    color: #5C3BCE;
}
.orders .tabs {
    margin-bottom: 48px;
}
.orders .tabs .tab {
    width: 100%;
    height: 48px;
    background: #F4F2FD;
    border-radius: 4px;
    color: #5C3BCE;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    line-height: 45px;
    transition: all .3s ease;
}
.orders .tabs .tab:hover {
    background: #5C3BCE;
    color: white;
}
.orders .tabs .tab.active {
    background: #5C3BCE;
    color: white;
}
.orders .content {
    display: none;
}
.orders .content_1 {
    display: flex;
}
.orders .content .order-card {
    background: #F4F2FD;
    border-radius: 8px;
    padding: 32px 24px 24px 0;
    text-align: start;
    width: 400px;
    margin: 0 auto 24px auto;
}
.orders .content .order-card p {
    margin-bottom: 32px;
    color: #171F26;
    font-weight: 400;
    font-size: 16px;
}
.orders .content .order-card p span {
    font-weight: 600;
    font-size: 20px;
}
.orders .content .order-card .address-footer p span {
    font-size: 16px;
}
@media (max-width : 992px) {
    .orders .content .order-card {
        width: 100%;
    }
}
/* end orders */
/* start order-details */
.order-details {
    padding-top: 96px;
}
.order-details h1.title {
    font-weight: 700;
    font-size: 32px;
    color: #5C3BCE;
    margin: 0 auto 24px auto;
    text-align: start;
    width: 63%;
}
.order-details .card {
    border: 0px;
    height: 148px;
    background: #F4F2FD;
    border-radius: 8px;
    padding: 4px;
    text-align: start;
    position: relative;
    width: 63%;
    margin: auto auto 24px auto;
}
.order-details .card img {
    max-height: 140px;
    width: 140px;
    height: 140px;
}
.order-details .card .content {
    position: absolute;
    top: 16px;
    right: 156px;
}
.order-details .card .content h1 {
    color: #171F26;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    width: 141px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
}
.order-details .card .content p.price{
    color : #5C3BCE ;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 16px;
}
.order-details .card .content p.price del{
    color : #FF1E1E ;
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 16px;
}
.order-details .card .content p.count {
    color: #5C6670;
    font-weight: 400;
    font-size: 18px;
}
.order-details .card .content p.count span{
    color: #171F26;
    font-weight: 700;
}
.order-details .delete-btn {
    color: #FF1E1E;
    background: #F4F2FD;
    border-radius: 20px;
    width: 63%;
    height: 48px;
    margin: auto;
    font-weight: 700;
    font-size: 20px;
    line-height: 48px;
    margin-bottom: 28px;
}
.order-details .address-card {
    background: #F4F2FD;
    border-radius: 8px;
    padding: 32px 24px 24px 0;
    border: 2px solid #5C3BCE;
    text-align: start;
    width: 63%;
    margin: 0 auto 96px auto;
}
.order-details .address-card p {
    margin-bottom: 32px;
    color: #171F26;
    font-weight: 400;
    font-size: 16px;
}
.order-details .address-card p span {
    font-weight: 600;
    font-size: 20px;
}
.order-details .address-card .address-footer p span {
    font-size: 16px;
}
.order-details .info-card {
    background: #F4F2FD;
    border-radius: 8px;
    padding: 32px 24px 24px 0;
    text-align: start;
    width: 63%;
    margin: 0 auto 96px auto;
}
.order-details .info-card p {
    margin-bottom: 32px;
    color: #171F26;
    font-weight: 400;
    font-size: 16px;
}
.order-details .info-card p span {
    font-weight: 600;
    font-size: 20px;
}
.order-details .bill {
    margin: 48px auto ;
    background: #F4F2FD;
    border-radius: 8px;
    width: 63%;
    text-align: start;
    padding: 12px 16px 4px 16px;
}
.order-details .bill p {
    padding: 12px 0;
    border-bottom: 1px solid #DBD2F9;
    margin-bottom: 0;
    font-weight: 400;
    font-size: 16px;
    color: #171F26;
}
.order-details .bill p:last-child {
    border-bottom: none;
}
.order-details .bill p span {
    float: left;
    font-weight: 700;
    font-size: 16px;
}
.order-details .bill p.total {
    color: #5C3BCE;
    font-weight: 700;
    font-size: 14px;
}
.order-details .bill p.total span {
    font-size: 14px;
}
section.order-details p.order-details {
    font-weight: 500;
    font-size: 24px;
    color: #5C3BCE;
    width: 63%;
    margin: 0 auto 96px auto;
    text-align: start;
}
section.order-details p.order-details span {
    float: left;
    font-size: 20px;
}
@media (max-width : 992px) {
    .order-details {
        padding-top: 32px;
    }
    section.order-details p.order-details {
        font-size: 20px;
    }
    section.order-details p.order-details span{
        font-size: 17px;
    }
    .order-details .card,
    .order-details .bill ,
    .order-details .info-card ,
    .order-details .address-card,
    section.order-details p.order-details ,
    .order-details .continue-btn {
        width: 100%;
    }
    .order-details .card .content h1 {
        width: 120px;
    }
    .order-details h1.title {
        width: 100%;
    }
}
/* end invoce */
/* start profile form */
.profile-form {
    padding-top: 40px;
}
.profile-form h1 {
    color: #5C3BCE;
    font-weight: 500;
    font-size: 24px;
    margin: 0 auto 30px auto;
    width: 70%;
    text-align: start;
}
.profile-form form {
    width: 70%;
    margin: auto;
}
.profile-form form .form-group {
    position: relative;
    margin-bottom: 20px;
}
.profile-form form .form-group label {
    position: absolute;
    color: #5C3BCE;
    font-size: 16px;
    font-weight: 700;
    right: 47px;
    top: -13px;
    background: white;
    padding: 0 9px;
    display: none;
}
.profile-form form .form-group input {
    height: 50px;
    border-radius: 25px;
    border: 1px solid #5C3BCE ;
    font-weight: 500;
    font-size: 16px;
    color: #171F26;
    padding-right: 40px;
}
.profile-form form .form-group input::placeholder {
    font-weight: 500;
    font-size: 16px;
    color: #171F26;
}
.profile-form form .form-group a.forget-btn {
    margin-top: 8px;
    float: right;
}
.profile-form form .form-group img {
    position: absolute;
}
.profile-form form button[type = "submit"] {
    background: #00CFC2;
    color: white;
    height: 48px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 20px;
    width: 100%;
    margin-bottom: 55px;
}
.profile-form h6 {
    font-size: 16px;
    font-weight: 400;
}
.profile-form form input[name = "change-password"] {
    color: #5C3BCE;
    font-weight: 700;
    background: none;
}
.profile-form h6 .login-btn {
    color:  #3190FF;
    font-weight: 700;
}
@media (max-width : 992px) {
    .profile-form {
        padding-top: 70px;
    }
    .profile-form h1 {
        font-size: 30px;
        margin-bottom: 50px;
    }
    .profile-form form,
    .profile-form h1 {
        width: 100%;
    }
}
/* end profile form */
/* start change password form */
.changePassword-form {
    padding-top: 40px;
}
.changePassword-form h1 {
    color: #5C3BCE;
    font-weight: 500;
    font-size: 24px;
    margin: 0 auto 30px auto;
    width: 70%;
    text-align: start;
}
.changePassword-form form {
    width: 70%;
    margin: auto;
}
.changePassword-form form .form-group {
    position: relative;
    margin-bottom: 20px;
}
.changePassword-form form .form-group label {
    position: absolute;
    color: #5C3BCE;
    font-size: 16px;
    font-weight: 700;
    right: 47px;
    top: -13px;
    background: white;
    padding: 0 9px;
    display: none;
}
.changePassword-form form .form-group input {
    height: 50px;
    border-radius: 25px;
    border: 1px solid #5C3BCE ;
    font-weight: 500;
    font-size: 16px;
    color: #171F26;
    padding-right: 40px;
}
.changePassword-form form .form-group input::placeholder {
    font-weight: 500;
    font-size: 16px;
    color: #171F26;
}
.changePassword-form form .form-group a.forget-btn {
    margin-top: 8px;
    float: right;
}
.changePassword-form form .form-group img {
    position: absolute;
}
.changePassword-form form button[type = "submit"] {
    background: #00CFC2;
    color: white;
    height: 48px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 20px;
    width: 100%;
    margin-bottom: 55px;
    margin-top: 28px;
}
.changePassword-form span.horizental-line {
    display: inline-block;
    width: 100%;
    background : #B0B7BF ;
    height: 1px;
    margin: 48px auto;
}
@media (max-width : 992px) {
    .changePassword-form {
        padding-top: 70px;
    }
    .changePassword-form h1 {
        font-size: 30px;
        margin-bottom: 50px;
    }
    .changePassword-form form,
    .changePassword-form h1 {
        width: 100%;
    }
}
/* end change password form */
/* start about */
.about {
    padding: 96px 0 32px 0;
}
.about img {
    height: 220px;
    width: 220px;
    border-radius: 50%;
    margin-bottom: 64px;
}
.about h1 {
    color: #5C3BCE;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 32px;
}
.about p {
    font-size: 24px;
    font-weight: 400;
    width: 500px;
    margin: auto;
}
@media (max-width : 992px) {
    .about p {
        width: 100%;
    }
}
/* end about */
/* start goals */
.goals {
    background: #F4F2FD;
    padding: 48px 0 8px 0;
    transform: translateY(64px);
}
.goals .parent {
    margin-bottom: 32px;
}
.goals .parent h1 {
    font-weight: 500;
    font-size: 24px;
    color: #5C3BCE;
    margin-bottom: 16px;
}
.goals .parent p {
    width: 190px;
    color: #171F26;
    font-weight: 400;
    font-size: 16px;
    margin: auto auto 16px auto;
}
.horizental-line {
    height: 1px;
    display: inline-block;
    width: 48px;
    margin: auto;
    background: #B9ABED;
}
/* end goals */
/* start contact us */
.contact-us {
    padding: 96px 0 64px 0;
}
.contact-us form {
    width: 400px;
    margin: auto;
}
.contact-us form input {
    border: 1px solid #5C3BCE;
    border-radius: 25px;
    color: #374049;
    font-size: 16px;
    font-weight: 400;
    height: 50px;
    margin-bottom: 32px;
    padding-right: 16px;
}
.contact-us form input::placeholder ,
.contact-us form textarea::placeholder{
    color: #374049;
}
.contact-us form textarea {
    border: 1px solid #5C3BCE;
    border-radius: 25px;
    color: #374049;
    font-size: 16px;
    font-weight: 400;
    height: 220px;
    margin-bottom: 48px;
    padding: 20px 16px 0 0;
    line-height: 16px;
    width: 100%;
}
.contact-us form button {
    background: #00CFC2;
    border-radius: 20px;
    color: white !important;
    font-weight: 700;
    font-size: 20px;
    height: 48px;
    width : 400px ;
    margin: auto;
} 
.contact-us form textarea {
    height: 220px;
    margin-bottom: 48px;
    padding: 20px 16px 0 0;
    line-height: 16px;
}
/* end contact us */
/* start privacy policy */
.privacy-policy {
    padding: 96px 0 16px 0;
}
.privacy-policy h1 {
    color: #5C3BCE;
    font-weight: 700;
    font-size: 40px;
    width: 500px;
    margin: auto auto 24px auto;
    text-align: start;
}
.privacy-policy p {
    color: #171F26;
    font-weight: 400;
    font-size: 24px;
    width: 500px;
    margin: auto auto 48px auto;
    text-align: start;
}
@media (max-width : 992px) {
    .privacy-policy h1,
    .privacy-policy p {
        width: 100%;
    }
}
/* end privacy policy */
/* start faqs */
.faqs {
    padding : 96px 0 64px 0;
}
.faqs .faq {
    background: #F4F2FD;
    width: 400px;
    margin: 0 auto 24px auto;
    text-align: start;
} 
.faqs .faq button {
    width: 100%;
    height: 48px;
    border-radius: 8px;
    padding: 0 14px;
    font-weight: 700;
    font-size: 18px;
    color: #5C3BCE;
    text-align: start;
}
.faqs .faq button i {
    float: left;
    color: #171F26;
    transform: translateY(5px);
    transition: all .5s ease;
}
.faqs .faq .collapse {
    font-weight: 400;
    font-size: 16px;
    color: #171F26;
    border: none;
    background: #F4F2FD;
    padding: 16px 16px 16px 51px;
}
/* end faqs */
/* ads */

.ads {
    margin-top : 50px ;
}
.ads a {
    margin-bottom: 30px;
}
.ads a img {
    max-width: 100%;
    width : 100%;
    height: 200px;
    object-fit: contain;
}


img.show-password {
    left: 16px; 
    top: 19px;
    cursor: pointer
}