:root {
    --primary-bg: #05026b;
    --primary-bg-gradint: #06026bf5;
    --primary-bg-gradint-product: #06026b88;
    --primary-bg-btn: #19157c;
    --primary-bg-btn-hover: #05026b;
    --swiper-theme-color: #05026b;
    --swiper-navigation-size: 70px;
    /*

    --swiper-navigation-color: var(--swiper-theme-color);

    */
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #06026b2f;
    border-radius: 4px;
}

body {
    font-family: IRANSansn;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.form-control:focus,
.form-select:focus,
.btn:focus {
    box-shadow: none;
    border-color: 1px solid #1a73e8;
}

.btn-primary,
.btn-primary:focus {
    background-color: var(--primary-bg-btn);
    border: 0;
}

.btn-primary:hover {
    background-color: var(--primary-bg-btn-hover);
}

.offcanvas-body::-webkit-scrollbar {
    width: 2px;
    height: 5px;
}

.offcanvas-body::-webkit-scrollbar-track {
    background: transparent;
}

.offcanvas-body::-webkit-scrollbar-thumb {
    background: #cecece70;
    border-radius: 4px;
}

#menu-side {
    background-color: #f5f8ff;
    max-width: 230px;
    padding: 5px;
}

#menu-side-btn {
    cursor: pointer;
}

.btn-search i {
    transform: translateX(0);
    transition: 0.3s all;
}

.btn-search:hover i {
    transform: translateX(-5px);
    transition: 0.3s all;
}

.mySwiper {
    width: 100%;
    font-family: IRANSansn;
    padding-bottom: 40px !important;
    margin-top: 20px;
}

header {
    position: relative;
    background-color: var(--primary-bg);
    height: 75vh;
    min-height: 25rem;
    width: 100%;
    overflow: hidden;
    border-radius: 0 0 85% 85% / 25%;
    box-shadow: 0 0px 80px -23px #5a5a5a;
}

header video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

header .header {
    position: relative;
    z-index: 2;
}

header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--primary-bg);
    opacity: 0.2;
    z-index: 1;
}

.scroll-downs {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 34px;
    height: 55px;
}

.mousey {
    width: 3px;
    padding: 10px 15px;
    height: 35px;
    border: 2px solid #fff;
    border-radius: 25px;
    opacity: 0.75;
    box-sizing: content-box;
}

.scroller {
    width: 3px;
    height: 10px;
    border-radius: 25%;
    background-color: #fff;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(.15, .41, .69, .94);
    animation-iteration-count: infinite;
}

@keyframes scroll {
    0% {
        opacity: 0;
    }
    10% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}


/* Media Query for devices withi coarse pointers and no hover functionality */


/* This will use a fallback image instead of a video for devices that commonly do not support the HTML5 video element */

@media (pointer: coarse) and (hover: none) {
    header {
        background: url('../images/wildwadi.jpg') var(--primary-bg) no-repeat center center scroll;
        background-size: cover;
    }
    header video {
        display: none;
    }
}

header .header nav a,
header.header-app nav a {
    color: #ffff;
}

header .header nav a.navbar-brand:hover,
header .header-app nav a.navbar-brand:hover {
    color: #ffff;
}

header .header nav a.nav-link.active,
header .header-app nav a.nav-link.active {
    color: #ffff;
}

header .header nav a.nav-link:hover,
header .header-app nav a.nav-link:hover {
    color: #ffff;
    padding-bottom: 5px;
    border-bottom: 1px #fff solid;
}

header .header .cart-btn {
    background-color: #ffffff1f;
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.3s all;
}

header .header .cart-btn:hover {
    background-color: #ffffff48;
    transition: 0.3s all;
}

.product-item label {
    display: block;
    position: relative;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    color: #272727;
    background-color: white;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
    transition: .5s all;
}

.product-item input {
    display: none;
}

.product-item label:hover,
.product-item input:focus+label {
    background-color: #f7f7f7;
    box-shadow: 0 0 20px rgba(0, 0, 0, .6);
}

.product-item input:checked+label {
    animation: product-item-background .4s;
    background: linear-gradient(120deg, rgb(25, 22, 107) 0%, rgba(46, 41, 185, 1) 47%);
    color: white;
    transition: .5s all;
}

@keyframes product-item-background {
    0% {
        opacity: 0.0;
    }
    10% {
        opacity: 0.1;
    }
    20% {
        opacity: 0.2;
    }
    30% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.5;
    }
    60% {
        opacity: 0.6;
    }
    70% {
        opacity: 0.7;
    }
    80% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.9;
    }
    100% {
        opacity: 1;
    }
}

.product-item input:checked+label::before {
    background-color: #fff;
}

.cross>span {
    position: relative;
    font-size: 14px;
    top: 5px;
    opacity: 0.5;
}

.cross>span:before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    right: 0;
    border-top: 1px solid;
    border-color: inherit;
    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    transform: rotate(-5deg);
}

.product-item label .icon {
    position: absolute;
    font-size: 300%;
    left: 22px;
    top: 6px;
    opacity: 0.060;
    transform: rotate(338deg);
}

.product-item label .icon.fsize-l {
    font-size: 450%;
}

.product-item input:checked+label .icon {
    color: white;
    opacity: 0.2;
}

.glass {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px) saturate(160%) contrast(45%) brightness(140%);
    -webkit-backdrop-filter: blur(20px) saturate(160%) contrast(45%) brightness(140%);
}

.glass a {
    font-size: 3vh;
    margin-right: 5px;
}

.section-title {
    position: relative;
}

.section-title h2 {
    color: #1d2025;
    position: relative;
    margin: 0;
    font-size: 24px;
}

@media (min-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }
}

@media (min-width: 992px) {
    .section-title h2 {
        font-size: 34px;
    }
}

.section-title.title-ex1 h2 {
    padding-bottom: 20px;
}

@media (min-width: 768px) {
    .section-title.title-ex1 h2 {
        padding-bottom: 30px;
    }
}

@media (min-width: 992px) {
    .section-title.title-ex1 h2 {
        padding-bottom: 40px;
    }
}

.section-title.title-ex1 h2:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 12px;
    width: 110px;
    height: 1px;
    background-color: #d6dbe2;
}

@media (min-width: 768px) {
    .section-title.title-ex1 h2:before {
        bottom: 17px;
    }
}

@media (min-width: 992px) {
    .section-title.title-ex1 h2:before {
        bottom: 25px;
    }
}

.section-title.title-ex1 h2:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 12px;
    width: 40px;
    height: 1px;
    background-color: var(--primary-bg);
}

@media (min-width: 768px) {
    .section-title.title-ex1 h2:after {
        bottom: 17px;
    }
}

@media (min-width: 992px) {
    .section-title.title-ex1 h2:after {
        bottom: 25px;
    }
}

.section-title.title-ex1.text-center h2:before {
    left: 50%;
    transform: translateX(-50%);
}

.section-title.title-ex1.text-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title.title-ex1.text-right h2:before {
    left: auto;
    right: 0;
}

.section-title.title-ex1.text-right h2:after {
    left: auto;
    right: 0;
}

.section-title.title-ex1 p {
    color: #8b8e93;
    font-size: 14px;
    font-weight: 300;
}

.price-card {
    background: #f7f7f7;
    padding: 40px 35px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.price-card:before {
    position: absolute;
    content: "";
    top: 0;
    right: -35px;
    width: 88px;
    height: 88px;
    background: var(--primary-bg);
    opacity: 0.1;
    border-radius: 8px;
    transform: rotate(45deg);
}

.price-card:after {
    position: absolute;
    content: "";
    top: 30px;
    right: -35px;
    width: 88px;
    height: 88px;
    background: var(--primary-bg);
    opacity: 0.1;
    border-radius: 8px;
    transform: rotate(45deg);
}

.price-card h2 {
    font-size: 26px;
    font-weight: 600;
}

.price-card .btn {
    font-size: 11px;
    border-radius: 100px;
    padding: 0 25px;
    border: 0;
    color: #fff;
    float: right;
}

.price-card .btn.btn-primary {
    border: 0 !important;
}

.price-card.featured {
    background: #fff;
    border: 1px solid #ebebeb;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.price-card:hover .btn {
    background: var(--primary-bg-btn-hover);
    border-color: var(--primary-bg);
}

p.price {
    margin-top: 0;
}

p.price span {
    display: inline-block;
    padding-right: 0;
    font-size: 50px;
    font-weight: 600;
    color: var(--primary-bg);
    position: relative;
}

p.price span:before {
    position: absolute;
    content: "";
    font-size: 16px;
    top: 25px;
    font-weight: 300;
    left: 0;
}

.pricing-offers {
    padding: 0 0 10px;
}

.pricing-offers li {
    padding: 0 0 16px;
    line-height: 18px;
}

ul li {
    list-style-type: none;
}

.btn.btn-mid {
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
}

footer {
    background: #f7f7f7;
    padding: 30px 0;
}

footer .logo {
    width: 100px;
}

footer .social h2 {
    font-size: 16px;
    font-weight: bold;
}

footer .social img {
    height: 25px;
    display: inline-block;
    padding-left: 20px;
}

footer .social img:first-child {
    padding-left: 0;
}

.accordion-collapse {
    border: 0;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: none;
    color: #ff9800;
    box-shadow: none;
    border-bottom: none;
}

.accordion-button::after {
    width: auto;
    height: auto;
    content: "+";
    font-size: 40px;
    background-image: none;
    font-weight: 100;
    color: #1b6ce5;
    transform: translateY(-4px);
}

.accordion-button:not(.collapsed)::after {
    width: auto;
    height: auto;
    background-image: none;
    content: "-";
    font-size: 48px;
    transform: translate(-5px, -4px);
    transform: rotate(0deg);
}

button:hover {
    background: #ffffff00 !important;
}

.accordion-button {
    font-weight: 700;
}

.accordion-button:not(.collapsed) {
    color: var(--bs-code-color);
}