/*MAIN COLOR : #5293F4*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "vazirmatn", sans-serif;
    color: #1b263b;
    background-color: #f2f6fc;
    position: relative;
}

html {
    font-size: 10px;
    width: 100%;
    height: 100%;
}


.main-banner-cont {
    padding-top: 3rem;
}

.main-nav-container {
    background-color: white;
    height: 10rem;
    padding: 3rem 0;
    margin: 2rem 0;
    border-radius: 1rem;
    border-bottom: 5px solid #5293f4;
}

.main-nav ul li {
    list-style: none;
}

.main-nav li a {
    cursor: pointer;
    font-size: 1.5rem;
    padding: 7px;
    border-radius: 22px;
}

.main-nav li a:hover {
    background-color: #dce9fd;
    transition: all 0.5s ease;
}

.main-nav-item-logo img {
    height: 7rem;
}

.main-img img {
    border-radius: 1rem;
}

.mobile-nav-items {
    background-color: white;
    height: 8rem;
    width: 100%;
    position: fixed;
    bottom: 0;
    border-top-right-radius: 1.5rem;
    border-top-left-radius: 1.5rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    padding: 0px 0px ;

}
.mobile-nav-list-icon img {
    height: 2.5rem;
}

.main-mobile-nav li {
    list-style: none;
}
.main-mobile-nav a:link {
    text-decoration: none;
    color: #1b263b;
    font-size: 1.2rem;
}
.main-mobile-nav {
    justify-content: space-around;
}

/*************************/

.feature-img img {
    height: 5rem;
}

.fea-box {
    height: 7rem;
    width: 20rem;
    font-size: 1.5rem;
}

.delivery {
    background-color: white;
    padding: 7px 0;
    border-radius: 1rem;
    border-bottom: 5px solid #ff6b6b;
    box-shadow: 0 15px 20px rgba(255, 107, 107, 0.3);
    -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
    animation: heartbeat 1.5s ease-in-out infinite both;
}

@-webkit-keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    10% {
        -webkit-transform: scale(.91);
        transform: scale(.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    17% {
        -webkit-transform: scale(.98);
        transform: scale(.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    33% {
        -webkit-transform: scale(.87);
        transform: scale(.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

@keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    10% {
        -webkit-transform: scale(.91);
        transform: scale(.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    17% {
        -webkit-transform: scale(.98);
        transform: scale(.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    33% {
        -webkit-transform: scale(.87);
        transform: scale(.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

.org {
    background-color: white;
    padding: 7px 0;
    border-radius: 1rem;
    border-bottom: 5px solid #fd7e14;
    box-shadow: 0 15px 20px rgba(253, 126, 20, 0.3);
}

.support {
    background-color: white;
    padding: 7px 0;
    border-radius: 1rem;
    border-bottom: 5px solid #748ffc;
    box-shadow: 0 15px 20px rgba(116, 143, 252, 0.3);
}

.feature {
    padding: 7rem 0rem;
}


/**********************
******PRODUCT BRAND*****
**********************/

.product-brand-name H3 {
    font-size: 2rem;
}

.product-brand-name {
    border-right: 4px solid #f03e3e;
    padding: 0 1rem;
}

.products-list-col {
    grid-template-columns: repeat(6, 1fr);
}

.products-list-container {
    padding: 5rem 0;
}

.product-brand-btn button {
    width: 12rem;
    height: 4rem;
    background-color: #12b886;
    border: none;
    border-radius: 5px;
    font-family: vazirmatn;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 15px 20px rgba(18, 184, 134, 0.3);
    cursor: pointer;
}

.products-brand-wrapper {
    margin: 5rem 0;
}


.product-box {
    background-color: white;
    border-radius: 1rem;
    width: 23.4rem;

}


.product-box-img img {
    height: 200px;
}

.p-b-add-to-cart-btn {
    background-color: #5293f4;
    height: 4rem;
    width: 100%;
    border: none;
    font-family: vazirmatn;
    border-radius: 5px;
    font-weight: bold;
    color: white;
}

.p-b-add-to-cart-btn:hover {
    border: 1px solid #5293f4;
    background-color: white;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.p-b-add-to-cart-btn:hover a:link {
    text-decoration: none;
    color: #1b263b;
}


.p-b-add-to-cart-btn a:link {
    text-decoration: none;
    color: white;
}

.w-6 {
    height: 1.5rem;
    color: white;
}

.product-box-title {
    font-size: 1.3rem;
}

.product-box-price p {
    font-size: 1.7rem;
    text-align: left;
}

.brand-product-list-container::-webkit-scrollbar {
    height: 8px;
}

/* Track */
.brand-product-list-container::-webkit-scrollbar-track {
    border-radius: 10px;
    border: 1px solid white;
}

/* Handle */
.brand-product-list-container::-webkit-scrollbar-thumb {
    background: white;
    border-radius: 10px;
}

.brand-products-wrapper {
    margin-top: 5rem;
}


/***************************
****************************/


.contact-f-buy-product-items {
    display: flex;
    align-items: center;
    height: 10rem;
    background: linear-gradient(#fd7e14, #ff922b);
    box-shadow: 0px 17px 15px rgba(253, 126, 20, 0.2);
    border-radius: 1rem;
    justify-content: space-between;
}

.contact-f-buy-product-container {
    padding: 2rem 0rem 15rem 0;
}

.buy-product-icon-txt {
    display: flex;
    align-items: center;
}

.buy-product-icon {
    display: flex;
}

.buy-product-txt {
    display: flex;
    padding-right: 3rem;
}

.buy-product-txt p {
    font-size: 1.7rem;
    font-weight: bold;
    color: white;
}

.buy-product-phone-icon {
    height: 30rem;
}

.buy-product-btn button {
    height: 5rem;
    width: 18rem;
    font-family: vazirmatn;
    background-color: white;
    border: none;
    border-radius: 1rem;
    font-weight: bold;
    cursor: pointer;
}

.buy-product-btn {
    padding-left: 4rem;
}

/*******HIDDEN********/
.hidden {
    visibility: hidden;
    opacity: 0;
}

.footer {
    width:100%;
    max-width : 90rem;
    
}
.footer-main-container {
    height : 23rem;
    background-color : white;
    border-top :5px solid #14213d;
    border-top-right-radius:3rem;
    border-top-left-radius:3rem;
}
.footer-btns button {
    height:4rem;
    width:15rem;
    border-radius :3px;
    border:none;
    font-family:vazirmatn;
    background-color: #5293f4;
    font-size:1.5rem;
    color:white;
    padding:1.5px;
    cursor:pointer;
    box-shadow: 0 15px 20px rgba(82, 147, 244, 0.3);
}
.footer-btns {
    margin:2rem 0;
}
.footer {
    display:none;
}
/**************************/
/**********MEDIA**********/
/*************************/

@media (max-width: 1380px) {

    .products-brand-main-container {
        max-width: 130rem;
    }

    .products-list-container  {
        overflow-x: scroll;
    }

    .contact-f-buy-product-items, .products-brand-main-container, .main-img {
        max-width: 130rem;
    }
}

@media (max-width: 1200px) {
    .products-brand-main-container, .contact-f-buy-product-items, .main-img {
        max-width: 110rem;
    }

}

@media (max-width: 944px) {
    .products-brand-main-container, .contact-f-buy-product-items, .main-img {
        max-width: 90rem;
    }
    .buy-product-txt {
        padding-right: 0;
    }
}

@media (max-width: 704px) {
    .products-brand-main-container, .contact-f-buy-product-items, .main-img, .main-nav-container {
        max-width: 65rem;
    }
    .feature-items {
        max-width: 65rem;
        gap:1.5rem;
    }
    .contact-f-buy-product-items img {
        height: 20rem;
    }
    .contact-f-buy-product-items {
        height: 8rem;

    }
    .contact-f-buy-product-items p {
        font-size: 1.5rem;
    }
    .buy-product-btn {
        padding-left: 2rem;
    }
}

@media (max-width: 544px) {
    .mobile-navbar-container {
        visibility: visible;
        opacity: 1;
    }
    .main-nav-item {
        display: none;
    }
    .main-nav-item-logo img {
        height: 6.5rem;
    }
    .main-nav-container {
        max-width: 60rem;
    }
    .products-brand-main-container, .contact-f-buy-product-items, .main-img, .main-nav-container {
        max-width: 50rem;
    }
    .feature-items {
        max-width: 50rem;
        gap:1rem;
    }
    .fea-box {
        flex-direction: column;
        height: 15rem;
        width: 20rem;
        text-align: center;
        padding: 0 5px;
    }
    .feature-img img {
        height: 4rem;
    }
    .fea-box-txt {
        font-size: 1.5rem;
    }
    .feature {
        padding: 3rem 0rem;
    }
    .buy-product-txt {
        padding:  0 0 0 2rem;
    }

    .contact-f-buy-product-items img {
        height: 17rem;
    }
    .contact-f-buy-product-items {
        height: 8rem;
    }
    .contact-f-buy-product-items p {
        font-size: 1.2rem;
    }
    .buy-product-btn {
        padding-left: 1rem;
    }
    .buy-product-btn button {
        height: 5rem;
        width: 13rem;
        font-size: 1.3rem;
    }
}





@media (max-width: 430px) {
    .main-nav-container {
        max-width: 36.5rem;
        height: 8rem;
    }
    .products-brand-main-container, .contact-f-buy-product-items, .main-img    {
        max-width: 36.5rem;
    }
    .feature-items {
        max-width: 36.5rem;
        gap:1rem;
    }
    .main-img img {
        height: 20rem;
    }
    .main-banner-cont {
        padding-top: 0rem;
    }
    .fea-box {
        flex-direction: column;
        height: 15rem;
        width: 20rem;
        text-align: center;
        padding: 0 5px;
    }
    .feature-img img {
        height: 4rem;
    }
    .fea-box-txt {
        font-size: 1.2rem;
    }
    .feature {
        padding: 3rem 0rem;
    }
    .products-brand-header h3, a {
        font-size: 1.6rem;
    }
    .product-brand-btn button {
        width: 12rem;
        height: 3.5rem;
    }
    .contact-f-buy-product-items {
        flex-direction: column;
        height: 20rem;
    }
    .buy-product-icon-txt {
        flex-direction: column;
    }
    .buy-product-icon-txt img {
        margin-top: -7rem;
    }
    .buy-product-txt p {
        font-size: 1.3rem;
        text-align: center;
    }
    .buy-product-btn  {
   padding: 2rem 0 ;
    }
    .buy-product-btn button {

    }

}


@media (max-width: 360px) {
    .products-brand-main-container, .contact-f-buy-product-items, .main-img, .main-nav-container {
        max-width: 33rem;
    }
    .feature-items {
        max-width: 33rem;
        gap:1rem;
    }

}

