/*----------------------------------------*/

/* Template default CSS
/*----------------------------------------*/

html,
body {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 500;
}

h1 {
    font-size: 70px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    font-weight: 400;
    line-height: 24px;
    margin: 0 0 15px 0;
}

img {
    max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
    outline: none;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

/*Hidden line*/

.line-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*---------------------
  Helper CSS
-----------------------*/
.max-644 {
    max-width: 644px;
}

.section-title {
    margin-bottom: 45px;
}

.section-title h1 {
    font-size: 40px;
}

.section-title h4 {
    color: #111111;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.section-title h4:after {
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 2px;
    width: 70px;
    background: #ca1515;
    content: "";
}

.set-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.spad {
    padding-top: 100px;
    padding-bottom: 100px;
}

.text-white,
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
    color: #fff;
}

.text-light {
    color: #8C8C8C !important;
}

/* buttons */

.primary-btn {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 12px 30px 10px;
    color: #ffffff;
    background: #ca1515;
}

.site-btn {
    font-size: 14px;
    color: #ffffff;
    background: #414141;
    font-weight: 600;
    border: none;
    text-transform: uppercase;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
}

.site-btn:hover {
    color: #9a9a9a;
}

/* Preloder */

#preloder {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    background: #ffffff;
}

.loader {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    border-radius: 60px;
    animation: loader 0.8s linear infinite;
    -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
        border: 4px solid #673ab7;
        border-left-color: transparent;
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }

    50% {
        -webkit-transform: rotate(180deg);
        border: 4px solid #673ab7;
        border-left-color: transparent;
    }

    100% {
        -webkit-transform: rotate(360deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }
}

.spacial-controls {
    position: fixed;
    width: 111px;
    height: 91px;
    top: 0;
    right: 0;
    z-index: 999;
}

.spacial-controls .search-switch {
    display: block;
    height: 100%;
    padding-top: 30px;
    background: #323232;
    text-align: center;
    cursor: pointer;
}

.search-model {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #ffffff;
    z-index: 99999;
}

.search-model-form {
    padding: 0 15px;
}

.search-model-form input {
    width: 500px;
    font-size: 22px;
    border: none;
    border-bottom: 1px solid #dddddd;
    background: 0 0;
    color: #999;
}

.search-close-switch {
    font-weight: 100;
    position: absolute;
    width: 50px;
    height: 50px;
    background: #333;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    font-size: 26px;
    line-height: 26px;
    top: 30px;
    cursor: pointer;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* Widget Icon */

.widget-icon {
    position: fixed;
    right: 5px;
    bottom: 80px;
    z-index: 999;
}

.widget-icon .box {
    position: relative;
}

.widget-icon .box img {
    width: 44px;
    height: 44px;
}

.widget-icon .box .text {
    position: absolute;
    background: rgba(29, 36, 62, 0.7);
    color: #ffffff;
    width: 180px;
    right: 115%;
    border-radius: 5px;
    padding: 3px 7px;
    top: 50%;
    transform: translateY(-50%);
    visibility: hidden;
    font-size: 12px;
    font-weight: 300;
}

.widget-icon .box:hover .text {
    visibility: visible;
}

.widget-icon .box .text:before {
    content: "";
    right: -9px;
    transform: rotateZ(0);
    display: unset !important;
    border-color: transparent #414141 transparent transparent !important;
    position: absolute;
    top: 50%;
    margin-top: -5px;
    border-width: 7px;
    border-style: solid;
}

.widget-icon .telegram {
    margin-bottom: 10px;
}

/*---------------------
  Header
-----------------------*/

.header {
    background: #ffffff;
    -webkit-box-shadow: 0px 5px 10px rgba(91, 91, 91, 0.1);
    box-shadow: 0px 5px 10px rgba(91, 91, 91, 0.1);
}

.header__logo {
    padding: 18px 0;
}

.header__logo a {
    display: inline-block;
}

.header__menu ul li {
    list-style: none;
    display: inline-block;
    margin-right: 70px;
}

.header__menu ul li.active a:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.header__menu ul li:hover .dropdown {
    top: 85px;
    opacity: 1;
    visibility: visible;
    box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, .075) !important;
}

.header__menu ul li:last-child {
    margin-right: 0;
}

.header__menu ul li .dropdown {
    position: absolute;
    left: 0%;
    right: 0;
    top: 50px;
    width: 100%;
    background: rgb(255 255 255 / 80%);
    text-align: left;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    border-radius: 3px;
}

.header__menu ul li .dropdown li {
    display: block;
    margin-right: 0;
}

.header__menu ul li .dropdown li a {
    padding: 5px 0;
}

.header__menu ul li .dropdown li a:hover {
    color: #000000;
}

.header__menu ul li .dropdown li a:after {
    display: none;
}

.header__menu ul li .dropdown__sub {
    border-top: 1px solid #414141;
    padding-top: 12px;
}

.header__menu ul li .dropdown__sub li a {
    font-weight: 400;
    font-size: 15px;
}

.header__menu ul li a {
    color: #414141;
    display: block;
    padding: 30px 0 30px 0;
    position: relative;
}

.header__right {
    text-align: right;
    padding: 30px 0 27px;
}

.header__right__widget {
    display: inline-block;
}

.header__right__widget li {
    list-style: none;
    display: inline-block;
    font-size: 18px;
    color: #111111;
    margin-right: 20px;
    cursor: pointer;
}

.header__right__widget li:last-child {
    margin-right: 0;
}

.header__right__widget li a {
    font-size: 18px;
    color: #111111;
    position: relative;
}

.header__right__widget li a .tip {
    position: absolute;
    right: -10px;
    top: -8px;
    height: 18px;
    width: 18px;
    background: #414141;
    font-size: 10px;
    font-weight: 400;
    color: #ffffff;
    line-height: 19px;
    text-align: center;
    border-radius: 50%;
    letter-spacing: -0.5px;
}

.offcanvas-menu-wrapper {
    display: none;
}

.canvas__open {
    display: none;
}

/*---------------------
  Slider
-----------------------*/
.slider {
    position: relative;
    height: calc(100% - 85px);
}

.slider div:not(.owl-controls) {
    height: 100%;
}

.slider__box {
    width: 643px;
    height: auto !important;
    right: 126px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #f9f9f9;
    position: absolute;
    padding: 60px 40px 40px 40px;
    border-radius: 10px;
}

.slider__box div {
    height: auto !important;
}

.slider__box__name {
    font-weight: 600;
    letter-spacing: 3px;
}

.slider__box__title {
    font-size: 52px;
    font-weight: 700;
    line-height: 65px;
    color: #3A3A3A;
    margin-top: 4px;
}

.slider__box__intro {
    font-size: 18px;
    margin-top: 17px;
    color: #333333;
}

.slider__box__btn {
    background-color: #414141;
    font-weight: 700;
    color: #ffffff;
    margin-top: 45px;
    border-radius: 0;
    padding: 25px 70px;
}

.slider .owl-slide {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.slider .owl-dots {
    position: absolute;
    height: auto !important;
    width: 30px;
    top: 50%;
    right: 1%;
    transform: translateY(-50%);
}

.slider .owl-dot {
    display: block;
    width: 26px;
    height: 26px;
    position: relative;
    border-radius: 50%;
    border: 1px solid transparent !important;
    opacity: .7;
    margin-top: 3px;
    margin-bottom: 3px;
}

.slider .owl-dot:hover,
.slider .owl-dot.active {
    border-color: #ffffff !important;
    opacity: 1;
}

.slider .owl-dot span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
}

/*---------------------
  Gallery
-----------------------*/
.gallery {
    margin-top: 50px;
    margin-bottom: 80px;
}

.gallery__header h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: #616161;
}

.gallery__header__intro {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    color: #3a3a3a;
    margin-top: 8px;
}

.gallery__1,
.gallery__2 {
    margin-top: 30px;
}

.gallery__3,
.gallery__4 {
    margin-top: 21px;
}

/*---------------------
  Services
-----------------------*/

.services {
    padding-top: 60px;
    padding-bottom: 100px;
    background: #EDEDED;
}

.services__wrap {
    margin-top: 40px;
}

.services__item {
    padding-left: 65px;
    position: relative;
}

.services__item img {
    position: absolute;
    left: 0;
    width: 50px;
    height: auto;
    top: 50%;
    transform: translateY(-50%);
}

.services__item h6 {
    font-weight: 600;
    font-size: 25px;
    line-height: 37.5px;
}

.services__item p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 0;
}

/*---------------------
  Footer
-----------------------*/

.footer {
    padding-top: 48px;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.footer__about {
    margin-bottom: 45px;
}

.footer__about p {
    margin-bottom: 20px;
}

.footer__logo {
    margin-bottom: 15px;
}

.footer__payment a {
    margin-right: 6px;
    margin-bottom: 10px;
    display: inline-block;
}

.footer__payment a:last-child {
    margin-right: 0;
}

.footer__widget {
    margin-bottom: 45px;
}

.footer__widget h6 {
    margin-bottom: 55px;
}

.footer__widget ul li {
    list-style: none;
    margin-top: 45px;
}

.footer__widget ul li a {
    color: #414141;
}

.footer__newslatter {
    margin-bottom: 45px;
}

.footer__newslatter h6 {
    margin-bottom: 55px;
}

.footer__newslatter #formNewsletter {
    gap: 7px;
}

.footer__newslatter form input {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #414141;
    height: 22px;
    font-size: 14px;
    line-height: 21px;
}

.footer__newslatter form input::-webkit-input-placeholder,
.footer__newslatter form input::-moz-placeholder,
.footer__newslatter form input:-ms-input-placeholder,
.footer__newslatter form input::-ms-input-placeholder,
.footer__newslatter form input::placeholder {
    color: #8C8C8C;
}

.footer__newslatter form button {
    font-weight: 500;
    height: 22px;
    font-size: 14px;
    line-height: 21px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid #414141;
    border-radius: 0;
}

.footer__copyright__text {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    padding: 30px 0 30px;
}

.footer__copyright__text p {
    margin-bottom: 0;
}

.footer__copyright__text a {
    color: #5C5C5C;
}

.footer__copyright__text i {
    color: #ca1515;
}

.footer__copyright__text a:hover {
    color: #ca1515;
}

/*---------------------
  Breadcrumb
-----------------------*/

.breadcrumbs-bg {
    height: 316px;
    position: relative;
}

.breadcrumbs-bg .breadcrumb__links a,
.breadcrumbs-bg .breadcrumb__links span {
    color: #000000;
}

.breadcrumbs-bg .breadcrumb__links span {
    font-weight: 300;
}

.breadcrumbs-bg .breadcrumbs-wrap h1 {
    font-weight: 500;
    font-size: 48px;
    line-height: 72px;
}

.breadcrumbs-bg .breadcrumbs-wrap {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
}

.breadcrumbs-bg .breadcrumb__links a {
    font-weight: 500;
    color: #111111;
    margin-right: 22px;
    display: inline-block;
    position: relative;
}

.breadcrumbs-bg .breadcrumb__links a:after {
    position: absolute;
    right: -16px;
    top: 0;
    content: "\f105";
    font-family: "FontAwesome";
    font-weight: 500;
    font-size: 19px;
}

.breadcrumbs-box {
    background-color: #ededed;
    padding-top: 30px;
    padding-bottom: 30px;
}

.breadcrumbs-box .breadcrumb__links a {
    font-weight: 400;
    color: #9f9f9f;
    margin-right: 58px;
    display: inline-block;
    position: relative;
}

.breadcrumbs-box .breadcrumb__links a:after {
    color: #000000;
    position: absolute;
    right: -32px;
    top: 0;
    content: "\f105";
    font-family: "FontAwesome";
    font-weight: 600;
    font-size: 19px;
}

.breadcrumbs-box .breadcrumb__links span {
    border-left: 1px solid #9f9f9f;
    padding-left: 30px;
}

/*---------------------
  Categories
-----------------------*/

.categories {
    margin-top: 80px;
}

.categories__header h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    color: #333333;
}

.categories__header__intro {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #666666;
}

.categories__item {
    margin-top: 32px;
}

.categories__item .set-bg {
    padding-top: 126.315789%;
}

.categories__item h4 {
    margin-top: 24px;
    color: #333333;
    font-family: Poppins;
    font-weight: 600;
    line-height: 36px;
}

/*---------------------
  Product
-----------------------*/

.product {
    margin-top: 80px;
}

.product__header h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
}

.product__footer {
    margin-top: 40px;
}

.product__footer a {
    padding: 12px 60px;
    border-radius: 4px;
    border-color: #414141;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #414141;
}

.product__item {
    margin-top: 30px;
    background: #f4f5f7;
}

.product__item.sale .product__item__pic .label {
    background: #ca1515;
}

.product__item.sale .product__item__text .product__price {
    color: #ca1515;
}

.product__item__pic {
    padding-top: 75%;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.product__item__pic .label {
    font-size: 10px;
    color: #ffffff;
    font-weight: 500;
    display: inline-block;
    padding: 2px 7px;
    text-transform: uppercase;
    position: absolute;
    left: 10px;
    top: 10px;
    border-radius: 5px;
}

.product__item__pic .label.new {
    background: #36a300;
}

.product__item__pic .label.stockout {
    background: #111111;
}

.product__item__pic .label.stockblue {
    background: #0066bd !important;
}

.product__item__pic .label.sale {
    background: #ca1515;
}

.product__item .product__item__pic::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.5s ease 0.2s;
    -o-transition: all 0.5s ease 0.2s;
    transition: all 0.5s ease 0.2s;
    background-color: rgba(0, 0, 0, .8);
}

.product__item:hover .product__item__pic::after {
    opacity: 1;
}

.product__item__pic .btn-add-to-cart-now {
    font-size: 16px;
    color: #258635;
    font-weight: 600;
    background: #ffffff;
    -webkit-transition: all 0.6s ease 0.3s;
    -o-transition: all 0.6s ease 0.3s;
    transition: all 0.6s ease 0.3s;
    padding: 10px;
    position: absolute;
    width: 76%;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
    z-index: 1;
    opacity: 0;
}

.product__item:hover .product__item__pic .btn-add-to-cart-now {
    opacity: 1;
}

.product__item__text,
.product__item__price {
    padding: 12px;
}

.product__item__text h6 a {
    font-size: 24px;
    line-height: 28.8px;
    color: #3a3a3a;
    font-weight: 600;
}

.product__item__text .rating {
    line-height: 18px;
    margin-bottom: 5px;
}

.product__item__text .rating i {
    font-size: 10px;
    color: #e3c01c;
    margin-right: -4px;
}

.product__item__text .rating i:last-child {
    margin-right: 0;
}

.product__item__price .product__price {
    color: #258635;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    margin-top: 8px;
}

.product__item__price .product__price span {
    color: #b0b0b0;
    font-size: 16px;
    font-weight: 400;
    margin-left: 15px;
    text-decoration: line-through;
}

/*---------------------
  Shop
-----------------------*/

.shop {
    padding-top: 80px;
    padding-bottom: 75px;
}

.shop .title-category {
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
    margin-bottom: 32px;
}

.filter-range-wrap .range-slider .price-input span {
    font-size: 16px;
    color: #0d0d0d;
}

.filter-range-wrap .price-range {
    border-radius: 0;
    margin-bottom: 10px;
}

.filter-range-wrap .price-range.ui-widget-content {
    border: none;
    background: rgba(0, 0, 0, 0.1);
    height: 5px;
}

.filter-range-wrap .price-range.ui-widget-content .ui-slider-handle {
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background: #ca1515;
    border: none;
    outline: none;
    cursor: pointer;
}

.filter-range-wrap .price-range.ui-widget-content .ui-slider-handle {
    margin-left: 0 !important;
}

.filter-range-wrap .price-range .ui-slider-range {
    background: #ca1515;
    border-radius: 0;
}

.pagination__option {
    margin-top: 32px;
}

.pagination__option a {
    display: inline-block;
    height: 60px;
    width: 60px;
    border: 0;
    border-radius: 10px;
    font-size: 20px;
    color: #414141;
    font-weight: 400;
    line-height: 60px;
    text-align: center;
    -webkit-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
    margin-right: 38px;
    background-color: #EDEDED;
    ;
}

.pagination__option a:last-child {
    margin-right: 0;
}

.pagination__option a i {
    font-weight: 600;
}

.pagination__option a:hover,
.pagination__option a.active {
    background: #0d0d0d;
    border-color: #0d0d0d;
    color: #ffffff;
}

/*---------------------
  Product Details
-----------------------*/

.product-details {
    padding-top: 60px;
    padding-bottom: 120px;
}

.product__details__pic {
    overflow: hidden;
    position: relative;
}

.product__details__pic__left {
    width: 76px;
    overflow-y: auto;
    position: absolute;
    top: 0;
    bottom: 0;
}

.product__details__pic__left::-webkit-scrollbar {
    width: 0;
}

.product__details__pic__left .pt {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.product__details__pic__left .pt::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.product__details__pic__left .pt.active::after {
    opacity: 0.5;
}

.product__details__pic__left .pt:last-child {
    margin-bottom: 0;
}

.product__details__pic__left .pt img {
    min-width: 100%;
}

.product__details__pic__left .pt img.img-play {
    border: 1px solid #dddddd;
    border-radius: 5px;
}

.product__details__slider__content {
    width: calc(100% - 106px);
    margin-left: auto;
    border-radius: 8px;
    overflow: hidden;
    /* height: 592px; */
    height: 100%;
}

.product__details__pic__slider.owl-carousel .owl-nav button {
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #111111;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    line-height: 28px;
    text-align: center;
}

.product__details__pic__slider.owl-carousel .owl-nav button.owl-next {
    left: auto;
    right: 7px;
}

.product__details__pic__slider video {
    width: auto;
    height: 100%;
    border-radius: 8px;
}

.product__details__pic__slider__item {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding-top: 75%;
    position: relative;
}

.product__details__pic__slider__item img,
.product__details__pic__slider__item video {
    position: absolute;
    top: 0;
}

.product__details__text {
    position: relative;
    height: 100%;
}

.product__details__text h3 {
    font-weight: 400;
    line-height: 30px;
    font-size: 20px;
}

.product__details__text h3 span {
    display: block;
    font-size: 14px;
    color: #414141;
    text-transform: none;
    font-weight: 400;
}

.product__details__text .rating i {
    font-size: 16px;
    color: #414141;
    margin-right: 0px;
}

.product__details__text .rating span {
    font-size: 13px;
    font-weight: 400;
    color: #9f9f9f;
    margin-left: 15px;
    padding-left: 20px;
    border-left: 1px solid #9f9f9f;
}

.product__details__text .intro {
    margin-top: 15px;
}

.product__details__text .intro__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
}

.product__details__text .intro__content {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.product__details__text .intro__content ul {
    padding: 0;
    margin: 0;
}

.product__details__text .intro__content ul li {
    list-style: none;
    padding-left: 20px;
    margin-left: 10px;
    position: relative;
}

.product__details__text .intro__content ul li::before {
    position: absolute;
    left: 0;
    content: "\f00c";
    font-family: "FontAwesome";
    color: #258635;
    font-size: 12px;
}

.product__details__price {
    font-size: 42px;
    font-weight: 600;
    line-height: 63px;
    color: #258635;
    margin-bottom: 8px;
}

.product__details__price span {
    font-size: 32px;
    color: #b0b0b0;
    line-height: 48px;
    font-weight: 400;
    text-decoration: line-through;
    margin-left: 15px;
    display: inline-block;
}

.quantity>span {
    font-size: 14px;
    color: #111111;
    font-weight: 600;
    float: left;
    margin-top: 14px;
    margin-right: 15px;
}

.pro-qty {
    height: 40px;
    width: 150px;
    border-radius: 50px;
    overflow: hidden;
    display: inline-block;
}

.pro-qty .qtybtn {
    font-size: 24px;
    color: #414141;
    cursor: pointer;
    float: left;
    line-height: 40px;
}

.pro-qty input {
    font-size: 24px;
    border: none;
    float: left;
    width: 70px;
    text-align: center;
    height: 40px;
}

/* .product__details__button {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
} */

.product__details__button .cart-btn {
    color: #ffffff;
    background: #414141;
    font-weight: 600;
    padding-top: 12px;
    padding-bottom: 12px;
    border-radius: 50px;
    width: 100%;
}

.product__details__widget {
    padding-top: 25px;
}

.product__details__widget ul li {
    list-style: none;
    margin-bottom: 10px;
}

.product__details__widget ul li:last-child {
    margin-bottom: 0;
}

.product__details__widget ul li .stock__checkbox {
    overflow: hidden;
}

.product__details__widget ul li .stock__checkbox label {
    display: block;
    padding-left: 20px;
    font-size: 14px;
    color: #666666;
    position: relative;
    cursor: pointer;
}

.product__details__widget ul li .stock__checkbox label input {
    position: absolute;
    visibility: hidden;
}

.product__details__widget ul li .stock__checkbox label input:checked~.checkmark {
    border-color: #ca1515;
}

.product__details__widget ul li .stock__checkbox label input:checked~.checkmark:after {
    border-color: #ca1515;
    opacity: 1;
}

.product__details__widget ul li .stock__checkbox label .checkmark {
    position: absolute;
    left: 0;
    top: 5px;
    height: 10px;
    width: 10px;
    border: 1px solid #444444;
    border-radius: 2px;
}

.product__details__widget ul li .stock__checkbox label .checkmark:after {
    position: absolute;
    left: 0px;
    top: -2px;
    width: 11px;
    height: 5px;
    border: solid #ffffff;
    border-width: 1.5px 1.5px 0px 0px;
    -webkit-transform: rotate(127deg);
    -ms-transform: rotate(127deg);
    transform: rotate(127deg);
    opacity: 0;
    content: "";
}

.product__details__widget ul li .color__label {
    font-size: 14px;
}

.product__details__widget ul li .color__checkbox label {
    display: inline-block;
    cursor: pointer;
    position: relative;
    margin-right: 10px;
    width: 70px;
    height: 40px;
    border-radius: 12px;
}

.product__details__widget ul li .color__checkbox label.active input~.checkmark:after {
    border-color: #ffffff;
    opacity: 1;
}

.product__details__widget ul li .color__checkbox label:last-child {
    margin-right: 0;
}

.product__details__widget ul li .color__checkbox label input {
    position: absolute;
    visibility: hidden;
}

.product__details__widget ul li .color__checkbox label input:checked~.checkmark:before {
    border: 4px solid #ffffff;
    opacity: 1;
    border-radius: 12px;
}

.product__details__widget ul li .color__checkbox label input:checked~.checkmark:after {
    border: 1px solid #000000;
    opacity: 1;
    border-radius: 12px;
}

.product__details__widget ul li .color__checkbox label .checkmark {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.product__details__widget ul li .color__checkbox label .out_stock {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(255 255 255 / 60%);

}

.product__details__widget ul li .color__checkbox label .out_stock span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.product__details__widget ul li .color__checkbox label .out_stock span::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 1px;
    background: rgb(0 0 0 / 50%);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.product__details__widget ul li .color__checkbox label .out_stock span::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 40px;
    background: rgb(0 0 0 / 50%);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.product__details__widget ul li .color__checkbox label .checkmark.black-bg {
    background: #111111;
}

.product__details__widget ul li .color__checkbox label .checkmark.grey-bg {
    background: #e4aa8b;
}

.product__details__widget ul li .color__checkbox label .checkmark:after,
.product__details__widget ul li .color__checkbox label .checkmark:before {
    content: "";
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: all .3s;
}

.product__details__widget ul li .size__label,
.product__details__widget ul li .qty__label {
    font-size: 14px;
}

.product__details__widget ul li .size__btn label {
    background: #ededed;
    text-transform: uppercase;
    cursor: pointer;
    margin-right: 10px;
    display: inline-block;
    width: 48px;
    height: 32px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.product__details__widget ul li .size__btn label:last-child {
    margin-right: 0;
}

.product__details__widget ul li .size__btn label input {
    position: absolute;
    visibility: hidden;
}

.product__details__widget ul li .size__btn label .text {
    width: 100%;
    text-align: center;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 600;
}

.product__details__widget ul li .size__btn label .checkmark {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.product__details__widget ul li .size__btn label input:checked~.checkmark {
    background-color: #414141;
}

.product__details__widget ul li .size__btn label input:checked~.text {
    color: #ffffff;
}

.product__details__widget ul li .size__btn label .out_stock {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(255 255 255 / 60%);

}

.product__details__widget ul li .size__btn label .out_stock span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.product__details__widget ul li .size__btn label .out_stock span::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 1px;
    background: rgb(0 0 0 / 70%);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.product__details__widget ul li .size__btn label .out_stock span::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 40px;
    background: rgb(0 0 0 / 50%);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


.product__details__widget ul li p {
    margin-bottom: 0;
    color: #666666;
}

.product__details__infomation {
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
    margin-top: 120px;
    padding-top: 48px;
    margin-bottom: 120px;
    padding-bottom: 48px;
}

.nav {
    border-bottom: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    margin-bottom: 30px;
}

.nav-item {
    margin-right: 46px;
}

.nav-item:last-child {
    margin-right: 0;
}

.nav-item .nav-link {
    font-size: 24px;
    line-height: 36px;
    color: #8C8C8C;
    font-weight: 500;
    border: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 0;
}

.nav-item .nav-link.active {
    color: #414141;
}

.tab-content .tab-pane h6 {
    color: #666666;
    font-weight: 600;
    margin-bottom: 24px;
}

.tab-content .tab-pane p:last-child {
    margin-bottom: 0;
}

#tabs-comment .comment__empty {
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    color: #999999 !important;
}

#tabs-comment .reviews__item .rating {
    display: flex;
    gap: 7px;
}

#tabs-comment .reviews__item .rating i {
    color: #414141;
    font-size: 18px;
}

#tabs-comment .reviews__item__content {
    font-weight: 400;
    text-align: justify;
    margin-top: 15px;
}

#tabs-comment .reviews__item__info {
    margin-top: 15px;
    gap: 10px;
}

#tabs-comment .reviews__item__avatar {
    border-radius: 50%;
    overflow: auto;
    width: 40px;
    height: 40px;
}

#tabs-comment .reviews__item__name {
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
}

#tabs-comment .reviews__item__time {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #9f9f9f;
    padding-left: 10px;
    border-left: 1px solid;
}

.product__related {
    margin-top: 120px;
}

.product__related__title {
    font-size: 36px;
    color: #3a3a3a;
    font-weight: 500;
}

/*---------------------
  Shop Cart
-----------------------*/

.shop-cart {
    margin-top: 60px;
    margin-bottom: 120px;
}

.shop__cart__table {
    margin-bottom: 120px;
}

.shop__cart__table table {
    width: 100%;
}

.shop__cart__table thead {
    background: #f9f9f9;
}

.shop__cart__table thead th {
    font-size: 16px;
    color: #000000;
    text-align: center;
    padding-top: 12px;
    padding-bottom: 12px;
    font-weight: 500;
    border-bottom: 55px solid #ffffff;
}

.shop__cart__table tbody tr td {
    padding: 10px 10px;
}

.shop__cart__table tbody tr .cart__product__item {
    overflow: hidden;
    width: 400px;
    padding-left: 0;
}

.shop__cart__table tbody tr .cart__product__item img {
    float: left;
    margin-right: 8px;
    width: 90px;
    height: 90px;
    border-radius: 10px;
}

.shop__cart__table tbody tr .cart__product__item .cart__product__item__title {
    overflow: hidden;
}

.shop__cart__table tbody tr .cart__product__item .cart__product__item__title h6 a {
    color: #9f9f9f;
    font-weight: 400;
    font-size: 16px;
}

.shop__cart__table .cart__product__item__attr {
    font-size: 13px;
    font-weight: 400;
    color: #9f9f9f;
    margin-top: 5px;
}

.shop__cart__table .cart__product__item__action {
    gap: 12px;
    margin-top: 15px;
}

.shop__cart__table .cart__product__item__action a {
    font-size: 18px;
    color: #9a9a9a;
}

.shop__cart__table tbody tr .cart__price {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    color: #9f9f9f;
}

.shop__cart__table tbody tr .cart__quantity {
    width: 110px;
    text-align: center;
}

.shop__cart__table tbody tr .cart__quantity .pro-qty {
    padding: 0;
    width: 100px;
    border-radius: 0;
    height: 32px;
    display: flex;
    gap: 5px;
}

.shop__cart__table tbody tr .cart__quantity .pro-qty input {
    color: #000000;
    font-size: 16px;
    height: 32px;
    width: 32px;
    border: 1px solid;
    border-radius: 4px;
}

.shop__cart__table tbody tr .cart__quantity .pro-qty .qtybtn {
    font-size: 16px;
    color: #444444;
    width: 32px;
    line-height: 32px;
}

.shop__cart__table tbody tr .cart__total {
    font-size: 16px;
    font-weight: 400;
    /* width: 110px; */
    text-align: center;
}

.shop__cart__table tbody tr .cart__delete span {
    cursor: pointer;
    color: #8C8C8C;
}

.cart__btn {
    margin-bottom: 50px;
}

.cart__btn.update__btn {
    text-align: right;
}

.cart__btn a {
    font-size: 14px;
    color: #111111;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    padding: 14px 30px 12px;
    background: #f5f5f5;
}

.cart__btn a span {
    color: #ca1515;
    font-size: 14px;
    margin-right: 5px;
}

.discount__content h6 {
    color: #111111;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-right: 30px;
}

.discount__content form {
    position: relative;
    width: 370px;
    display: inline-block;
}

.discount__content form input {
    height: 52px;
    width: 100%;
    border: 1px solid #444444;
    border-radius: 50px;
    padding-left: 30px;
    padding-right: 115px;
    font-size: 14px;
    color: #444444;
}

.discount__content form input::-webkit-input-placeholder {
    color: #444444;
}

.discount__content form input::-moz-placeholder {
    color: #444444;
}

.discount__content form input:-ms-input-placeholder {
    color: #444444;
}

.discount__content form input::-ms-input-placeholder {
    color: #444444;
}

.discount__content form input::placeholder {
    color: #444444;
}

.discount__content form button {
    position: absolute;
    right: 4px;
    top: 4px;
}

.cart__total__procced {
    background: #F9F9F9;
    padding: 15px 50px 60px 50px;
    margin-bottom: 120px;
}

.cart__total__procced h6 {
    font-size: 32px;
    font-weight: 600;
    line-height: 48px;
    color: #000000;
    margin-bottom: 60px;
}

.cart__total__procced .btn-checkOut {
    border-radius: 4px;
    background-color: #258635;
    text-align: center;
    padding-top: 14px;
    padding-bottom: 14px;
    margin-top: 40px;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #ffffff;
}

.cart__total__procced .cart-amount-title {
    font-size: 16px;
}

.cart__total__procced .cart-amount-total {
    font-size: 28px;
    line-height: 42px;
}

/*---------------------
  Checkout
-----------------------*/

.checkout {
    padding-top: 80px;
    padding-bottom: 70px;
}

.checkout__infomation {
    padding: 20px 75px;
    background-color: #f9f9f9;
}

.checkout__infomation h5 {
    font-weight: 600;
    font-size: 36px;
    line-height: 54px;
    margin-bottom: 35px;
}

.checkout__infomation__item label {
    font-size: 16px;
    font-weight: 500;
}

.checkout__infomation__item .input-data {
    height: 50px;
    width: 100%;
    padding-left: 20px;
    font-size: 14px;
    border: 1px solid #e1e1e1;
    border-radius: 9px;
    margin-bottom: 30px;
    font-weight: 400;
}

.checkout__infomation__item .input-data::-webkit-input-placeholder {
    color: #8c8c8c;
    font-weight: 400;
}

.checkout__infomation__item .input-data::-moz-placeholder {
    color: #8c8c8c;
    font-weight: 400;
}

.checkout__infomation__item .input-data:-ms-input-placeholder {
    color: #8c8c8c;
    font-weight: 400;
}

.checkout__infomation__item .input-data::-ms-input-placeholder {
    color: #8c8c8c;
    font-weight: 400;
}

.checkout__infomation__item .input-data::placeholder {
    color: #8c8c8c;
    font-weight: 400;
}

.checkout__infomation__item:last-child .input-data {
    margin-bottom: 15px;
}

.checkout__payment__method {
    margin-bottom: 120px;
}

.checkout__form .payment__item .payment__item__box {
    margin-bottom: 20px;
    font-size: 16px;
    position: relative;
}

.checkout__form .payment__item .payment__item__box [type="radio"],
.checkout__form .payment__item .payment__item__box [type="radio"] {
    display: none;
}

.checkout__form .payment__item .payment__item__box label {
    display: flex;
    align-items: center;
    padding-left: 25px;
    margin-bottom: 0;
    position: relative;
    cursor: pointer;
}

.checkout__form .payment__item .payment__item__box .text {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: #8c8c8c;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
    height: 0;
}

.checkout__form .payment__item .payment__item__box .payment__item__code {
    background: #414141;
    color: #ffffff;
    padding: 5px 10px;
    font-size: 14px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.checkout__form .payment__item .payment__item__box .payment__item__code strong {
    overflow: hidden;
    text-wrap: nowrap;
}

.checkout__form .payment__item .payment__item__box .payment__item__code .copy-order {
    position: absolute;
    width: 40px;
    right: 0;
    background: #414141;
    text-align: center;
    top: 0;
    bottom: 0;
    line-height: 35px;
    cursor: pointer;
}

.checkout__form .payment__item .payment__item__box .payment__item__code .copy-order:hover {
    background: #616161;
}

.checkout__form .payment__item .payment__item__box .payment__item__code #copyMessage {
    position: absolute;
    top: 50%;
    right: 40px;
    background: rgb(255 255 255 / 90%);
    color: #000000;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 4px;
    line-height: 16px;
    transform: translateY(-50%);
    font-weight: 500;
}

.checkout__form .payment__item .payment__item__box .payment__item__note * {
    font-weight: 300;
}

.checkout__form .payment__item .payment__item__box input[type="radio"]:checked~.text {
    opacity: 1;
    visibility: visible;
    height: auto;
    margin-top: 10px;
}

.checkout__form .payment__item .payment__item__box [type="radio"]:checked+label:before,
.checkout__form .payment__item .payment__item__box [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border: 1px solid #414141;
    border-radius: 100%;
    background: #ededed;
}

.checkout__form .payment__item .payment__item__box [type="radio"]:checked+label:after,
.checkout__form .payment__item .payment__item__box [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 13px;
    height: 13px;
    background: #414141;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) !important;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.checkout__form .payment__item .payment__item__box [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.checkout__order {
    background: #f9f9f9;
    padding: 20px 35px 40px 35px;
}

.checkout__order .btn-checkout-success {
    background-color: #414141;
    color: #ffffff;
    padding: 15px 100px;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
}

.checkout__order__product {
    padding-bottom: 30px;
}

.checkout__order__product ul li {
    list-style: none;
    margin-bottom: 7px;
}

.checkout__order__product ul li:first-child {
    margin-bottom: 5px;
}

.checkout__order__product ul li:last-child {
    margin-bottom: 0;
}

.checkout__order__product ul li div,
.checkout__order__product ul li div a {
    font-size: 16px;
    color: #8c8c8c;
    font-weight: 400;
}

.checkout__order__product ul li .top__text,
.checkout__order__product ul li .top__text__right {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    color: #414141;
}

.checkout__order__product ul li .text__right {
    width: 90px;
    text-align: right;
    min-width: 90px;
}

.checkout__order__product .cart_attribute {
    line-height: 16px;
}

.checkout__order__product .cart_attribute span {
    font-weight: 400;
    font-size: 12px;
    color: #8c8c8c;
}

.checkout__order__total {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #8c8c8c;
}

.checkout__order__total ul li {
    list-style: none;
    font-size: 16px;
    color: #414141;
    font-weight: 500;
    overflow: hidden;
}

.checkout__order__total ul li span {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
}

/*---------------------
    Blog
-----------------------*/

.blog {
    padding-top: 70px;
    padding-bottom: 80px;
}

.blog__item {
    margin-bottom: 60px;
    margin-right: 70px;
}

.blog__item__pic {
    padding-top: 66.66%;
    border-radius: 10px;
}

.blog__item__text {
    background: #ffffff;
    margin-top: 15px
}

.blog__item__text h6 {
    margin-top: 15px;
}

.blog__item__text h6 a {
    font-size: 30px;
    font-weight: 500;
    line-height: 45px;
    color: #414141;
}

.blog__item__text ul {
    display: flex;
    gap: 30px
}

.blog__item__text ul li {
    font-size: 16px;
    color: #8c8c8c;
    font-weight: 400;
    list-style: none;
    position: relative;
}

.blog__item__text ul li:last-child {
    margin-right: 0;
}

.blog__item__text ul li span {
    margin-left: 8px;
}

.blog__item__intro {
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
    color: #8c8c8c;
}

.blog__item__detail {
    margin-top: 20px;
}

.blog__item__detail a {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #414141;
    text-decoration: underline;
    text-underline-offset: 7px;
}

.primary-btn.load-btn {
    color: #111111;
    background: #f2f2f2;
    padding: 12px 85px 10px;
    border-radius: 50px;
}

/*---------------------
  Blog Sidebar
-----------------------*/

.blog__sidebar__search {
    background-color: #f9f9f9;
    border: 1px solid;
    margin-bottom: 30px;
}

.blog__sidebar__search input {
    border: unset;
    font-size: 14px;
}

.blog__sidebar__search .input-group-append {
    margin-left: unset;
}

.blog__sidebar__search .input-group-append button {
    border-radius: unset;
    border: unset;
    background-color: #ffffff;
    color: #414141;
}

.blog__sidebar__categories {
    margin-bottom: 70px;
    background-color: #f9f9f9;
    padding: 20px 30px;
    border-radius: 3px;
}

.blog__sidebar__categories h4,
.blog__sidebar__item h4 {
    margin-bottom: 20px;
}

.blog__sidebar__item:last-child {
    margin-bottom: 0;
}

.blog__sidebar__item ul li {
    list-style: none;
    margin-bottom: 35px;
}

.blog__sidebar__item ul li:last-child {
    margin-bottom: 0;
}

.blog__sidebar__item ul li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #8c8c8c;
    -webkit-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
    display: flex;
}

.blog__sidebar__item ul li a:hover {
    color: #414141;
}

.blog__feature__item {
    margin-bottom: 30px;
    gap: 5px;
    align-items: center;
    color: #414141;
}

.blog__feature__item:last-child {
    margin-bottom: 0;
}

.blog__feature__item__pic {
    width: 80px;
    height: 80px;
    border-radius: 10px;
}

.blog__feature__item__text {
    flex: 1;
}

.blog__feature__item__text h6 {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}

.blog__feature__item__text span {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #8c8c8c;
    margin-top: 3px;
}

/*---------------------
  Blog Details
-----------------------*/

.blog-details {
    padding-top: 80px;
    padding-bottom: 80px;
}

.blog__details__item {
    background: #ffffff;
    margin-bottom: 24px;
}

.blog__details__item__title {
    background: #ffffff;
    padding-top: 30px;
    padding-right: 30px;
    margin-top: -100px;
    position: relative;
    margin-right: 50px;
}

.blog__details__item__title .tip {
    font-size: 12px;
    color: #ffffff;
    background: #414141;
    font-weight: 400;
    display: inline-block;
    padding: 1px 10px;
    border-radius: 4px;
}

.blog__details__item__title h1 {
    color: #414141;
    font-weight: 600;
    line-height: 32px;
    margin-top: 10px;
    font-size: 24px;
}

.blog__details__item__title ul li {
    font-size: 12px;
    color: #888888;
    display: inline-block;
    list-style: none;
    margin-right: 25px;
    position: relative;
    font-weight: 300;
}

.blog__details__item__title ul li span {
    color: #111111;
}

.blog__details__item__title ul li:after {
    position: absolute;
    right: -17px;
    top: 0px;
    content: "|";
}

.blog__details__item__title ul li:last-child {
    margin-right: 0;
}

.blog__details__item__title ul li:last-child:after {
    display: none;
}

.blog__details__desc {
    margin-bottom: 40px;
}

.blog__details__desc p:last-child {
    margin-bottom: 0;
}

.blog__details__desc img {
    max-width: 100%;
    width: 100% !important;
    height: auto !important;
}

.blog__details__quote {
    border-top: 2px solid #ca1515;
    position: relative;
    padding-top: 22px;
    margin-bottom: 20px;
}

.blog__details__quote .icon {
    height: 30px;
    width: 30px;
    font-size: 18px;
    color: #ca1515;
    background: #ffffff;
    position: absolute;
    left: 0;
    top: -11px;
}

.blog__details__quote p {
    font-size: 16px;
    color: #111111;
    font-weight: 600;
    font-style: italic;
    line-height: 30px;
    margin-bottom: 0;
}

.blog__details__tags {
    margin-bottom: 50px;
}

.blog__details__tags a {
    display: inline-block;
    font-size: 13px;
    color: #666666;
    border: 1px solid #f2f2f2;
    padding: 8px 14px 7px;
    margin-right: 6px;
    margin-bottom: 10px;
    -webkit-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
}

.blog__details__tags a:hover {
    color: #111111;
}

.blog__details__tags a:last-child {
    margin-right: 0;
}

.blog__details__btns {
    background: #f5f5f5;
    padding: 14px 30px;
    margin-bottom: 55px;
}

.blog__details__btn__item a {
    font-size: 15px;
    font-weight: 500;
    color: #414141;
    gap: 7px;
}

.blog__details__comment {
    position: relative;
}

.blog__details__comment h5 {
    color: #111111;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.blog__details__comment .leave-btn {
    font-size: 14px;
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    position: absolute;
    right: 0;
    top: 0;
}

.blog__details__comment .leave-btn:after {
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 1px;
    width: 100%;
    background: #ca1515;
    content: "";
}

.blog__comment__item {
    margin-bottom: 35px;
}

.blog__comment__item:last-child {
    margin-bottom: 0;
}

.blog__comment__item.blog__comment__item--reply {
    padding-left: 115px;
}

.blog__comment__item__pic {
    float: left;
    margin-right: 25px;
}

.blog__comment__item__pic img {
    border-radius: 50%;
}

.blog__comment__item__text {
    overflow: hidden;
}

.blog__comment__item__text h6 {
    color: #111111;
    font-weight: 600;
    margin-bottom: 14px;
}

.blog__comment__item__text p {
    font-size: 15px;
    color: #444444;
    line-height: 26px;
}

.blog__comment__item__text ul li {
    list-style: none;
    font-size: 12px;
    color: #888888;
    display: inline-block;
    margin-right: 25px;
}

.blog__comment__item__text ul li:last-child {
    margin-right: 0;
}

.blog__comment__item__text ul li i {
    font-size: 14px;
    color: #ca1515;
    margin-right: 5px;
}

/*---------------------
  Pages
-----------------------*/
.pages {
    margin-top: 60px;
    margin-bottom: 120px;
}

.pages h1 {
    font-size: 60px;
}

/*---------------------
  About
-----------------------*/

.about {
    margin-top: 60px;
    margin-bottom: 120px;
}

.about__1__content {
    margin-left: 70px;
}

.about__1__content h1 {
    font-size: 111px;
    font-weight: 500;
    line-height: 120px;
    position: relative;
    text-align: right;
}

.about__1__content h1::after {
    content: '';
    position: absolute;
    height: 4px;
    background: #414141;
    width: 80%;
    bottom: 0;
    right: 0;
}

.about__1__content__text {
    background-color: #f9f9f9;
    padding: 30px;
    margin-top: 40px;
}

.about__1__content__text .p:last-child {
    margin-bottom: 0;
}

.about__1__content__text * {
    line-height: 42px;
}

.about__1__img {
    margin-top: 60px;
}

.about__2 {
    margin-top: 175px;
}

.about__2__content {
    max-width: 1087px;
    background-color: #414141;
    padding: 60px 35px;
    text-align: center;
    position: relative;
    margin-bottom: -190px;
    margin-left: auto;
    margin-right: auto;
}

.about__2__content p:last-child {
    margin-bottom: 0;
}

.about__2__content * {
    font-size: 32px;
    font-weight: 400;
    line-height: 48px;
    color: #ffffff;
}

.about__3 {
    margin-top: 175px;
}

.about__3__content {
    padding: 25px 35px;
    background-color: #f9f9f9;
}

.about__3__content * {
    font-size: 24px;
    font-weight: 400;
    line-height: 42px;
    text-align: center;
}

.about__3__content p:last-child {
    margin-bottom: 0px;
}

.about__4 {
    margin-top: 160px;
}

.about__4__content {
    background-color: #f9f9f9;
    padding: 25px 30px;
}

.about__4__content * {
    font-size: 24px;
    font-weight: 400;
    line-height: 40px;
    text-align: center;
}

.about__4__content p:last-child {
    margin-bottom: 0px;
}

.about__5 {
    position: relative;
    margin-top: 175px;
}

.about__5__content {
    background-color: #f9f9f9;
    padding: 30px;
    position: absolute;
    width: 1088px;
    max-width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about__5__content * {
    font-size: 54px;
    font-weight: 400;
    line-height: 80px;
    text-align: center;
}

.about__5__content b,
.about__5__content strong {
    font-weight: 600 !important;
}

.about__5__content p:last-child {
    margin-bottom: 0px;
}

.about__6 {
    margin-top: 175px;
}

.about__6__img__1 {
    margin-right: 40px;
}

.about__6__img__3 {
    margin-top: 50px;
}

/*---------------------
  Contact
-----------------------*/

.contact {
    padding-top: 60px;
    padding-bottom: 120px;
}

.contact__content {
    margin-bottom: 70px;
}

.contact__address {
    padding: 15px 60px 15px 60px;
    background-color: #f9f9f9;
}

.contact__address ul li {
    list-style: none;
    position: relative;
    margin-bottom: 20px;
    gap: 10px;
}

.contact__address ul li i {
    width: 22px;
    font-size: 22px;
}

.contact__address ul li:last-child {
    margin-bottom: 0;
}

.contact__address__item h6 {
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
}

.contact__address__item div {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 5px;
}

.contact__form {
    padding: 30px 60px 30px 60px;
    background-color: #f9f9f9;
    margin-bottom: 120px;
}

.contact__form h5 {
    color: #111111;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.contact__form form input {
    height: 50px;
    width: 100%;
    padding-left: 20px;
    font-size: 14px;
    color: #444444;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact__form form input::-webkit-input-placeholder {
    color: #444444;
}

.contact__form form input::-moz-placeholder {
    color: #444444;
}

.contact__form form input:-ms-input-placeholder {
    color: #444444;
}

.contact__form form input::-ms-input-placeholder {
    color: #444444;
}

.contact__form form input::placeholder {
    color: #444444;
}

.contact__form form textarea {
    height: 130px;
    width: 100%;
    padding-left: 20px;
    padding-top: 12px;
    font-size: 14px;
    color: #444444;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    margin-bottom: 14px;
    resize: none;
}

.contact__form form textarea::-webkit-input-placeholder {
    color: #444444;
}

.contact__form form textarea::-moz-placeholder {
    color: #444444;
}

.contact__form form textarea:-ms-input-placeholder {
    color: #444444;
}

.contact__form form textarea::-ms-input-placeholder {
    color: #444444;
}

.contact__form form textarea::placeholder {
    color: #444444;
}

.contact__form .btn-send-contact {
    background-color: #414141;
    padding: 15px 100px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}

.error-alert span {
    position: absolute;
    top: -10px;
    right: 0;
    color: var(--red);
    font-size: 12px;
    background: #ffdcdc;
    padding: 0 9px;
    border-radius: 5px;
    border: 1px solid var(--red);
    line-height: 20px;
}

.error-input {
    border-color: var(--red) !important;
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/
@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

@media only screen and (min-width: 1400px) {
    .container {
        max-width: 1236px;
    }
}

@media only screen and (max-width: 1399.98px) {
    .about__1__content {
        margin-left: 40px;
    }

    .about__6__img__3 {
        margin-top: 45px;
    }
}

@media only screen and (max-width: 1199.98px) {
    .about__1__content {
        margin-left: 0px;
    }

    .about__1__content h1 {
        font-size: 90px;
        line-height: 100px;
    }

    .about__5__content {
        width: 1020px;
    }

    .about__6__img__1 {
        margin-right: 30px;
    }

    .about__6__img__3 {
        margin-top: 38px;
    }

    .blog__item {
        margin-right: 30px;
    }

    .slider__box {
        width: 500px;
        right: 60px;
        bottom: 50px;
        padding: 30px 20px 20px 20px;
    }

    .slider__box__title {
        font-size: 44px;
        line-height: 52px;
    }

    .slider__box__intro {
        font-size: 16px;
    }

    .slider__box__btn {
        margin-top: 35px;
        padding: 15px 50px;
    }

    .product__details__slider__content {
        width: calc(100% - 70px);
        height: auto;
    }

    .product__details__pic__left {
        width: 60px;
    }

    .product__details__pic__left .pt {
        margin-bottom: 5px;
    }
}

@media only screen and (max-width: 991.98px) {
    .about__1__content h1::after {
        width: 50%;
    }

    .about__1__content {
        margin-top: 40px;
    }

    .about__2 {
        margin-top: 60px;
    }

    .about__2__content {
        max-width: 600px;
        padding: 40px 20px;
    }

    .about__2__content * {
        font-size: 26px;
        line-height: 42px;
    }

    .about__3,
    .about__4,
    .about__5,
    .about__6 {
        margin-top: 60px;
    }

    .about__5__content {
        width: 600px;
        padding: 20px;
    }

    .about__5__content * {
        font-size: 32px;
        line-height: 50px;
    }

    .about__6__img__1 {
        margin-right: 0px;
    }

    .about__6__img__3 {
        margin-top: 53px;
    }

    .blog__sidebar {
        margin-top: 60px;
    }

    .blog__item {
        margin-right: 0;
    }

    .header .container {
        width: 100%;
        max-width: 100%;
    }

    .slicknav_menu .arrow_carrot-down {
        display: none;
    }

    .slicknav_menu .dropdown,
    .slicknav_menu .dropdown__sub {
        margin-left: 5px;
    }

    .slider__box {
        width: 320px;
        right: 48px;
        bottom: 30px;
        padding: 30px 20px 20px 20px;
    }

    .slider__box__name {
        font-size: 14px;
    }

    .slider__box__title {
        font-size: 28px;
        line-height: 38px;
    }

    .slider__box__intro {
        font-size: 14px;
        margin-top: 15px;
    }

    .slider__box__btn {
        margin-top: 25px;
        padding: 10px 30px;
        font-size: 15px;
    }

    .product__item .product__item__pic::after {
        content: unset;
    }

    .product__item__pic .btn-add-to-cart-now {
        opacity: 1;
        font-size: 13px;
        width: auto;
        left: unset;
        bottom: 3px;
        right: 3px;
        transform: unset;
        padding: 4px 6px;
        border-radius: 5px;
        line-height: 20px;
    }

    .canvas__open {
        display: block;
        font-size: 22px;
        color: #414141;
        height: 35px;
        width: 35px;
        line-height: 35px;
        text-align: center;
        border: 1px solid #414141;
        border-radius: 2px;
        cursor: pointer;
        position: absolute;
        right: 15px;
        top: 24px;
    }

    .offcanvas-menu-overlay {
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.7);
        content: "";
        z-index: 98;
        -webkit-transition: all, 0.5s;
        -o-transition: all, 0.5s;
        transition: all, 0.5s;
        visibility: hidden;
    }

    .offcanvas-menu-overlay.active {
        visibility: visible;
    }

    .offcanvas-menu-wrapper {
        position: fixed;
        left: -300px;
        width: 300px;
        height: 100%;
        background: #ffffff;
        padding: 70px 15px 15px 20px;
        display: block;
        z-index: 99;
        overflow-y: auto;
        -webkit-transition: all, 0.5s;
        -o-transition: all, 0.5s;
        transition: all, 0.5s;
        opacity: 0;
    }

    .offcanvas-menu-wrapper.active {
        opacity: 1;
        left: 0;
    }

    .offcanvas__close {
        position: absolute;
        width: 40px;
        height: 40px;
        right: 15px;
        top: 15px;
        border: 1px solid #ddd;
        border-radius: 50%;
        font-size: 22px;
        text-align: center;
        line-height: 38px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        cursor: pointer;
        font-weight: 400;
    }

    .offcanvas__menu {
        display: none;
    }

    .slicknav_btn {
        display: none;
    }

    .slicknav_menu {
        background: transparent;
        padding: 0;
        margin-bottom: 20px;
    }

    .slicknav_nav ul {
        margin: 0;
    }

    .slicknav_nav .slicknav_row,
    .slicknav_nav a {
        padding: 7px 0;
        margin: 0;
        color: #414141;
    }

    .slicknav_nav .slicknav_row:hover {
        border-radius: 0;
        background: transparent;
        color: #111111;
    }

    .slicknav_nav a:hover {
        border-radius: 0;
        background: transparent;
        color: #111111;
    }

    .slicknav_nav {
        display: block !important;
    }

    .offcanvas__logo {
        margin-bottom: 20px;
    }

    .offcanvas__widget {
        margin-bottom: 20px;
    }

    .offcanvas__widget li {
        list-style: none;
        display: inline-block;
        font-size: 18px;
        color: #111111;
        margin-right: 20px;
        cursor: pointer;
    }

    .offcanvas__widget li:last-child {
        margin-right: 0;
    }

    .offcanvas__widget li a {
        font-size: 18px;
        color: #111111;
        position: relative;
    }

    .offcanvas__widget li a .tip {
        position: absolute;
        right: -10px;
        top: -8px;
        height: 18px;
        width: 18px;
        background: #414141;
        font-size: 10px;
        font-weight: 400;
        color: #ffffff;
        line-height: 19px;
        text-align: center;
        border-radius: 50%;
    }

    .offcanvas__auth a {
        font-size: 15px;
        color: #111111;
        position: relative;
        margin-right: 8px;
        font-weight: 500;
    }

    .offcanvas__auth a:last-child {
        margin-right: 0;
    }

    .offcanvas__auth a:last-child:after {
        display: none;
    }

    .offcanvas__auth a:after {
        position: absolute;
        right: -8px;
        top: -2px;
        content: "/";
        font-size: 13px;
    }

    .header__menu {
        display: none;
    }

    .header__right {
        display: none;
    }

    .product__details__text {
        margin-top: 30px;
    }

    .product__details__button {
        position: unset;
        margin-top: 30px;
    }

    .pagination__option a {
        height: 40px;
        width: 40px;
        border-radius: 7px;
        font-size: 18px;
        line-height: 44px;
        margin-right: 10px;
    }
}

@media only screen and (max-width: 767.98px) {
    .container {
        padding-right: 5px;
        padding-left: 5px;
    }

    .row {
        margin-right: -5px;
        margin-left: -5px;
    }

    .row>[class*=" col-"],
    .row>[class^=col-] {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gallery__3,
    .gallery__4 {
        margin-top: 7px;
    }

    .header__menu {
        display: none;
    }

    .header__right {
        display: none;
    }

    .product__details__pic__left {
        height: auto;
    }

    .quantity {
        float: none;
        margin-right: 0;
    }

    .cart__btn {
        text-align: center;
        margin-bottom: 25px;
    }

    .cart__btn.update__btn {
        text-align: center;
    }

    .discount__content h6 {
        display: block;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .discount__content {
        margin-bottom: 35px;
    }

    .breadcrumbs-box .breadcrumb__links>a:last-of-type::after {
        content: unset;
    }

    .breadcrumbs-box .breadcrumb__links span {
        display: none;
    }

    .services__item {
        padding-left: 55px;
    }

    .services__item img {
        width: 40px;
        top: 50%;
        transform: translateY(-50%);
    }

    .services__item h6 {
        font-size: 22px;
        line-height: 34px;
    }

    .services__item p {
        font-size: 16px;
        line-height: 26px;
    }

    .shop__cart__table {
        margin-bottom: 30px;
    }

    .cart__total__procced {
        margin-bottom: 60px;
    }

    .shop__cart__table .cart__product__item__attr {
        font-size: 12px;
    }

    .shop__cart__table thead {
        display: none;
    }

    .shop__cart__table tbody tr {
        display: grid;
        background: #f9f9f9;
        border-bottom: 4px solid #fff;
    }

    .shop__cart__table tbody tr td {
        width: 100% !important;
    }

    .shop__cart__table tbody tr .cart__product__item {
        padding-left: 10px;
    }

    .shop__cart__table tbody tr .cart__price::before {
        content: "Price: ";
    }

    .shop__cart__table tbody tr .cart__quantity::before {
        content: "Quantity: ";
        font-weight: 400;
        text-align: center;
        color: #9f9f9f;
    }

    .shop__cart__table tbody tr .cart__total::before {
        content: "Subtotal: ";
    }

    .shop__cart__table tbody tr .cart__price,
    .shop__cart__table tbody tr .cart__quantity,
    .shop__cart__table tbody tr .cart__total {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 7px 10px;
        font-size: 15px;
    }

    .shop__cart__table tbody tr .cart__delete {
        text-align: right;
    }

    .shop__cart__table tbody tr .cart__quantity .pro-qty {
        height: 28px;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .shop__cart__table tbody tr .cart__quantity .pro-qty .qtybtn,
    .shop__cart__table tbody tr .cart__quantity .pro-qty input {
        width: 28px;
        height: 28px;
    }

    .blog__item__text {
        margin-top: 7px;
    }

    .blog__item__text h6 {
        margin-top: 10px;
    }

    .blog__item__text h6 a {
        font-size: 24px;
        line-height: 34px;
    }

    .blog__item__text ul li {
        font-size: 14px;
    }

    .blog__item__detail {
        margin-top: 15px;
    }

    .blog__item__detail a {
        font-size: 14px;
    }

    .about__2__content {
        max-width: 450px;
        padding: 20px 10px;
    }

    .about__2__content * {
        font-size: 18px;
        line-height: 32px;
    }

    .about__5__content {
        width: 450px;
        padding: 15px;
    }

    .about__5__content * {
        font-size: 18px;
        line-height: 34px;
    }

    .about__6__img__2,
    .about__6__img__3 {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 575.98px) {
    body {
        font-size: 14px;
    }

    .footer__widget h6,
    .footer__newslatter h6 {
        margin-bottom: 35px
    }

    .footer__widget ul li {
        margin-top: 20px;
    }

    .slider__box {
        display: none;
    }

    .categories__header h2 {
        font-size: 30px;
        line-height: 42px;
    }

    .categories__header__intro {
        font-size: 18px;
        line-height: 38px;
    }

    .categories__item h4 {
        margin-top: 10px;
        font-size: 20px;
    }

    .product__header h2 {
        font-size: 34px;
        line-height: 42px;
    }

    .product__item__text,
    .product__item__price {
        padding: 10px;
        font-size: 22px;
        line-height: 32px;
    }

    .product__item__text h6 a {
        font-size: 18px;
        line-height: 24px;
    }

    .product__item__price .product__price {
        font-size: 18px;
    }

    .product__item__price .product__price span {
        font-size: 14px;
        margin-left: 5px;
    }

    .product__footer a {
        padding: 10px 40px;
        font-size: 14px;
    }

    .gallery__header h2 {
        font-size: 18px;
        line-height: 28px;
        font-weight: 500;
    }

    .gallery__header__intro {
        font-size: 34px;
        margin-top: 5px;
        line-height: 42px;
    }

    .breadcrumbs-bg {
        height: 230px;
    }

    .breadcrumbs-bg .breadcrumbs-wrap h1 {
        font-size: 40px;
        line-height: 62px;
    }

    .shop .title-category {
        font-size: 36px;
        line-height: 42px;
    }

    .product__details__button .cart-btn {
        float: none;
        margin-right: 0;
    }

    .nav-item {
        margin-right: 20px;
    }

    .blog__details__item__title {
        margin-right: 20px;
        padding-top: 20px;
        padding-right: 20px;
    }

    .blog__comment__item.blog__comment__item--reply {
        padding-left: 0;
    }

    .blog__comment__item__text ul li {
        margin-right: 5px;
    }

    .primary-btn.load-btn {
        padding: 12px 50px 10px;
    }

    .blog__comment__item__pic {
        float: none;
        margin-bottom: 20px;
    }

    .discount__content form {
        width: 100%;
    }

    .search-model-form input {
        width: 100%;
        font-size: 20px;
    }

    .product__details__text {
        margin-top: 20px;
    }

    .product__details__price {
        font-size: 36px;
        line-height: 53px;
    }

    .product__details__price span {
        font-size: 24px;
        line-height: 34px;
    }

    .product__details__text h3 {
        line-height: 28px;
        font-size: 18px;
    }

    .product__details__text .rating i {
        font-size: 15px;
    }

    .product__details__text .rating span {
        font-size: 12px;
        margin-left: 10px;
        padding-left: 10px;
    }

    .product__details__widget ul li .size__label,
    .product__details__widget ul li .qty__label {
        font-size: 13px;
    }

    .product__details__widget ul li .size__btn label {
        width: 44px;
        height: 28px;
        margin-right: 5px;
        margin-bottom: 5px;
    }

    .product__details__widget ul li .size__btn label .text {
        font-size: 20px;
    }

    .pro-qty input {
        font-size: 20px;
        width: 66px;
        height: 36px;
    }

    .pro-qty .qtybtn {
        font-size: 22px;
        line-height: 36px;
    }

    .product__details__text .intro__title {
        font-size: 20px;
        line-height: 32px;
    }

    .product__details__text .intro__content ul li {
        font-size: 15px;
    }

    .product__details__infomation {
        margin-top: 60px;
        padding-top: 40px;
        margin-bottom: 60px;
        padding-bottom: 40px;
    }

    .nav-item .nav-link {
        font-size: 22px;
        line-height: 34px;
    }

    #tabs-comment .reviews__item__content {
        margin-top: 10px;
        line-height: 22px;
    }

    #tabs-comment .reviews__item__name {
        font-size: 15px;
    }

    #tabs-comment .reviews__item__info {
        margin-top: 10px;
        gap: 7px;
    }

    .services {
        padding-top: 30px;
        padding-bottom: 70px;
    }

    .product__related {
        margin-top: 80px;
    }

    .product__related__title {
        font-size: 32px;
    }

    .product-details {
        padding-top: 40px;
        padding-bottom: 80px;
    }

    .services__item h6 {
        font-size: 20px;
    }

    .services__item p {
        font-size: 15px;
    }

    .cart__total__procced {
        padding: 15px 25px 25px 25px;
    }

    .checkout__infomation {
        padding-left: 20px;
        padding-right: 20px;
    }

    .checkout__infomation h5 {
        font-size: 32px;
        line-height: 48px;
        margin-bottom: 30px;
    }

    .checkout__infomation__item label {
        font-size: 15px;
    }

    .checkout__infomation__item .input-data {
        height: 46px;
        padding-left: 15px;
        margin-bottom: 20px;
    }

    .checkout__infomation__item label {
        margin-bottom: 5px;
    }

    .checkout__order {
        padding: 15px 10px 30px 10px;
    }

    .checkout__order__total {
        margin-bottom: 25px;
        padding-bottom: 10px;
    }

    .checkout__order__product ul li .top__text,
    .checkout__order__product ul li .top__text__right {
        font-size: 20px;
        line-height: 30px;
    }

    .checkout__order__product ul li div,
    .checkout__order__product ul li div a {
        font-size: 14px;
    }

    .checkout__form .payment__item .payment__item__box .text {
        font-size: 14px;
    }

    .checkout__payment__method {
        margin-bottom: 60px;
    }

    .checkout__order .btn-checkout-success {
        padding: 10px 50px;
        font-size: 18px;
    }

    .contact__address,
    .contact__form {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact__address__item h6 {
        font-size: 20px;
        line-height: 22px;
    }

    .contact__address__item div {
        font-size: 14px;
        line-height: 20px;
    }

    .contact__form .btn-send-contact {
        display: block;
        width: 100%;
        padding-top: 8px;
        padding-bottom: 8px;
        font-size: 18px;
    }

    .blog__details__item__title h1 {
        line-height: 30px;
        font-size: 20px;
    }

    .blog__sidebar {
        margin-top: 30px;
    }

    .blog__sidebar__categories {
        padding: 15px 20px;
    }

    .about__1__content h1 {
        font-size: 60px;
        line-height: 80px;
    }

    .about__1__content h1::after {
        width: 40%;
    }

    .about__1__content__text {
        padding: 20px;
    }

    .about__1__content__text * {
        line-height: 38px;
    }

    .about__2__content {
        max-width: 300px;
        padding: 15px 10px;
    }

    .about__2__content * {
        font-size: 16px;
        line-height: 30px;
    }

    .about__3__content {
        padding: 20px;
    }

    .about__3__content * {
        font-size: 18px;
        line-height: 36px;
    }

    .about__4__content {
        padding: 20px;
    }

    .about__4__content * {
        font-size: 18px;
        line-height: 36px;
    }

    .about__5__content {
        width: 300px;
        padding: 10px;
    }

    .about__5__content * {
        font-size: 16px;
        line-height: 30px;
    }

    .about {
        margin-bottom: 60px;
    }

    .pages {
        margin-bottom: 60px;
    }

    .pages h1 {
        font-size: 50px;
        line-height: 85px;
    }
}
