:root {
    --font-primary: 'DM Sans', sans-serif;
}

body {
    font: 18px/27px var(--font-primary);
    font-weight: 400;
    color: var(--body-color);
    background: var(--body-bg);
}

a,
button,
img,
.btn,
input,
.form-control {
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

b,
strong {
    font-weight: 700;
}

h3 {
    font-size: 36px;
    font-weight: 600;
}

.text-right {
    text-align: right;
}

.text-secondary {
    color: var(--main-secondary) !important;
}

.bg-main {
    background: var(--main) !important;
}

.terms h1,
#cookies-policy h1,
#privacy-page h1 {
    display: none
}

hr {
    border-top: var(--light) solid;
}

a {
    color: var(--main);
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--body-color);
}

.btn {
    font-size: 20px;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
}
@media(max-width: 990px) {
    .btn.btn-primary {
        color: #fff;
        background-color: var(--main)!important;
        border-color: transparent;
        border-radius: 30px;
    }
    .btn.btn-secondary {
        color: #fff;
        background-color: var(--main-secondary)!important;
        border-color: transparent;
        border-radius: 30px;
    }
    .btn.btn-primary.active-category {
        color: #fff!important;
    }

}
.btn.btn-primary,
.btn.btn-secondary {
    padding: 12px 25px;
    overflow: hidden;
    transform: translateZ(0);
    color: var(--body-color);
}

.btn.btn-primary,
.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-secondary,
.btn.btn-secondary:hover,
.btn.btn-secondary:focus {
    background: transparent;
    border-color: transparent;

}

.btn.btn-primary:focus,
.btn.btn-secondary:focus {
    color: var(--body-color);
}

.btn.btn-primary:hover,
.btn.btn-secondary:hover {
    color: #fff;
}

.btn.btn-primary:before,
.btn.btn-secondary:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.btn.btn-primary:before {
    background-color: var(--main);
}

.btn.btn-secondary:before {
    background-color: var(--main-secondary);
}

.btn.btn-primary:hover::before,
.btn.btn-primary:focus::before,
.btn.btn-secondary:hover::before,
.btn.btn-secondary:focus::before {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.hero-wrap .btn.btn-primary {
    padding: 14px 38px;
    background: #fff
}

.hero-wrap .btn.btn-primary:before {
    left: 15px;
}

.hero-wrap .btn.btn-primary:hover::before,
.hero-wrap .btn.btn-secondary:hover::before {
    left: 0;
}

.btn.btn-sm {
    padding: 10px 28px;
    font-weight: 500;
    font-size: 17px;
}

.hero-wrap {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 5.5rem 0 4rem;
}

.hero-wrap h1 {
    line-height: 1;
    font-weight: 400;
}

.hero-wrap h1 span,
.hero-wrap h1 b {
    font-weight: 700;
}

.hero-wrap h1 span {
    color: #fff;
    display: block;
}

@media(min-width: 768px) {
    .hero-wrap p {
        max-width: 90%;
    }
}

@media(min-width: 1150px) {
    .hero-wrap h1 {
        font-size: 70px;
    }
}

@media(min-width: 1300px) {
    .hero-wrap h1 {
        font-size: 88px;
    }
}

@media(min-width: 1401px) {
    .hero-wrap.intro h1 {
        font-size: 88px;
    }
}

@media(max-width: 1400px) {
    .hero-wrap.intro h1 {
        font-size: 60px;
    }
}

@media(max-width: 1149px) {
    .hero-wrap h1 {
        font-size: 60px;
    }
}

@media(max-width: 992px) {
    .hero-wrap.intro h1 {
        font-size: 50px;
    }
}

@media(max-width: 870px) {
    .hero-wrap {
        padding: 6rem 0 3rem;
    }
}

@media(max-width: 767px) {
    .hero-wrap h1 {
        font-size: 50px;
    }

    .hero-wrap {
        text-align: center;
    }
}

@media(max-width: 575px) {
    .hero-wrap {
        padding: 6rem 1rem 2rem;
    }

    .hero-wrap h1 {
        font-size: 48px;
    }
}

@media(max-width: 450px) {

    .hero-wrap h1,
    .hero-wrap.intro h1 {
        font-size: 38px;
    }
}

.bg_holder {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.bg_holder h1 {
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
}

.navbar-toggler {
    display: block !important;
    border: none !important;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}

.navbar-toggler.active,
.navbar-toggler:focus,
.navbar-toggler:hover {
    transform: rotate(180deg);
    box-shadow: none;
}

.navbar-collapse {
    min-width: 260px;
    position: absolute;
    top: 60px;
    right: 10px;
    padding: 35px 50px;
    transform: scale(0);
    transition: 0.4s all ease;
    background: #FFF;
    box-shadow: 0 20px 40px rgba(17, 56, 91, 0.1);
    border-radius: 0;
    opacity: 0;
    z-index: 1;
}

.navbar-collapse.show {
    transform: scale(1);
    opacity: 1;
}

@media(max-width: 450px) {
    .navbar-collapse {
        position: relative;
        top: 0;
        right: 0;
    }
}

.navbar-nav .nav-link {
    color: var(--body-color);
    font-size: 16px;
    padding: 0.4rem 0;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:hover {
    color: var(--main)
}

textarea {
    resize: none;
}

.form-control {
    border-radius: 0;
    background: transparent;
    color: var(--body-color);
    font-size: 18px;
    border: 0;
    border-bottom: 1px solid var(--body-color);
    padding: 1rem 0;
}

.form-check-input {
    border: 1px solid var(--body-color)
}

.form-control:focus {
    border-bottom: 1px solid var(--main)
}

.form-check-input:focus,
.form-control:focus {
    box-shadow: none;
    background: transparent;
}

.form-check-input:focus {
    border: 1px solid var(--main)
}

.form-control::-webkit-input-placeholder {
    color: var(--body-color);
    font-size: 14px;
    text-transform: uppercase;
}

.form-control::-moz-placeholder {
    color: var(--body-color);
    font-size: 14px;
    text-transform: uppercase;
}

.form-control:-ms-input-placeholder {
    color: var(--body-color);
    font-size: 14px;
    text-transform: uppercase;
}

.form-control::placeholder {
    color: var(--body-color);
    font-size: 14px;
    text-transform: uppercase;
}

.form-check-input:checked {
    background-color: var(--main);
    border-color: var(--main);
    color: #fff;
}

form.login-form .col-12.px-2 {
    padding: 0 !important;
}

form.login-form .text-start,
form.login-form .form-check,
#cart-form .form-check {
    line-height: 1.5;
}

#cart-form label {
    margin-bottom: 5px;
}

form.login-form input[type="checkbox"] {
    margin-right: 5px
}

.help-block.text-danger {
    font-size: 90%;
}

.alert {
    position: fixed;
    bottom: .6rem;
    max-width: 70%;
    margin: auto 1rem;
    border-radius: 0;
    z-index: 20;
    animation: appear 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.alert-danger {
    color: #000;
    border-color: var(--main);
}

.alert button.close {
    background: transparent;
    border: 0;
    margin-right: 0.5rem;
}

.card {
    border-radius: 0;
    border: 0;
}

.card.product a {
    color: var(--body-color)
}

.card.product .card-body {
    padding: 30px 35px;
}

.card.product .card-body .card-title {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 1.1rem;
    line-height: normal;
}

.card.product .img_holder {
    overflow: hidden;
    position: relative;
}

.card.product .mask:before {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease-in-out;
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: var(--main);
}

.card.product:hover .mask:before {
    opacity: 0.5;
    transform: scale(1);
}

.modal-content {
    border-radius: 0;
}

.modal button.close {
    padding: 0 1rem;
    background: transparent;
    border: 0;
    line-height: 1.2;
    font-size: 35px;
}

.modal button.close:hover,
.modal button.close:focus {
    opacity: 0.5;
}

#added-modal h5 {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
}

#added-modal .modal-footer {
    border: 0
}

@media (min-width: 992px) {
    #added-modal.modal-lg {
        --bs-modal-width: 600px;
    }
}

#added-modal .text-start p {
    line-height: normal;
    font-weight: 500;
}

@media (max-width: 767px) {
    #added-modal .text-start p br {
        display: none;
    }
}

.accordion-button:focus {
    box-shadow: none;
}

.faq-heading .accordion-button,
.faq-heading .accordion-button.collapsed {
    background: transparent;
    border-radius: 0;
    border-bottom: 1px solid var(--body-color);
    padding-left: 0;
    padding-right: 5px;
}

.faq-heading .accordion-button {
    color: var(--body-color);
    font-weight: 500;
    font-size: 18px;
}

.faq-heading .accordion-button[aria-expanded="true"]:after {
    transform: rotate(-180deg);
}

.faq-body {
    padding: 20px;
}

.services h5 {
    font-size: 24px;
    font-weight: 700;
}

.s_holder {
    padding: 40px;
    transition: all 0.3s ease-in-out;
}

.s_holder:hover {
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.1);
}

.s_holder a {
    color: var(--body-color);
}

.s_holder a:hover {
    transition: all 0.3s ease-in-out;
    color: var(--main)
}

.statistics h3 {
    color: var(--main);
    font-size: 60px;
    font-weight: 400;
}

.statistics p {
    font-size: 22px;
    font-weight: 500
}

@media(max-width: 767px) {

    .statistics h3,
    .statistics p {
        text-align: center
    }

    .statistics h3 {
        font-size: 45px;
        font-weight: 500;
    }

    .statistics p {
        font-size: 20px;
    }
}

footer {
    background: var(--main-secondary);
}

footer h5 {
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

footer .copy,
footer .nav-link {
    font-size: 14px;
}

footer .nav-link {
    padding: 5px 0;
}

footer .nav-link:hover,
footer .nav-link:focus {
    opacity: 0.7;
}


.max-lines-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* old */

.max-lines-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* UTILS */
.iti {
    width: 100% !important;
}

.w-fitcontent {
    width: fit-content;
}

.pointer {
    cursor: pointer;
}

.rtl {
    unicode-bidi: bidi-override;
    direction: rtl;
}