:root {
    --primary-color: #51b950;
    --primary-dark-color: #6f9c05;
    --primary-light-color: #eeeba8;
    --primary-nav-color: #51b950;
    --primary-hover-color: #8fba1c;
    --primary-social-dark-color: #337744;
    --secondary-color: #f4c212;
    --secondary-dark-color: #d1a60f;
    --dark-color: #666;
    --dark-color2: #252525;
    --white-color: #ffffff;
    --light-color: #eae9f2;
    --light-color2: #f3f6ea;
    --light-color3: #c1e1ca;
    --light-color4: #cbe8e1;
    --light-color5: #d8eddb;
    --light-color6: #e8edde;
    --light-color7: #faf2df;
    --light-color8: #e3edf8;
    --light-color9: #f8f8f8;
    --light-color10: #eee;
    --light-color11: #f1f1f1;
    --light-color12: #c5c5c5;
    --hover-color: #ededed;
    --black-color: #000000;
    --star-color: #ffb527;
    --light-dark-color: #cccccc;
    --cart-tag-color: #f5f5f5;
    --cart-tag-text-color: #a4a4a4;
    --primary-font: 'Open Sans', sans-serif;
    --heading-font: 'Playfair Display', serif;
    --font-size12: 12px;
    --font-size14: 14px;
    --font-size16: 16px;
    --font-size18: 18px;
    --font-size20: 20px;
    --font-size22: 22px;
    --font-size25: 25px;
    --font-size26: 26px;
    --font-size30: 30px;
    --font-size40: 40px;
    --font-weight400: 400;
    --font-weight500: 500;
    --font-weight600: 600;
    --font-weight700: 700;
    --font-weightBold: bold;
}

/* Font Face */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display+SC:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/* Font Face */

html,
body {
    font-family: var(--primary-font);
    font-size: var(--font-size16);
    font-weight: var(--font-weight400);
    font-synthesis: normal;
}

body {
    color: var(--dark-color);
}

a:focus,
a:hover,
*:focus,
*:hover {
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
}

.text-green {
    color: var(--primary-color);
}

/* Header & Menu */
.logo {
    height: 123px;
}

.navbar-brand__logo {
    padding-top: 0;
}

.fast-header {
    height: 126px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.fast-header.fixed-navbar {
    background-color: var(--black-color);
}

.fast-header .navbar-nav .nav-item a {
    color: var(--white-color);
    padding: 0 26px;
    font-size: var(--font-size20);
    font-weight: var(--font-weight500);
}

.fast-header .navbar-nav .nav-item {
    line-height: 100px;
}

.fast-header .navbar-nav .nav-item a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    right: 10px;
    background-color: var(--primary-color);
    height: 6px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    transform: scale(0);
}

.fast-header .navbar-nav .nav-item a.active:before,
.fast-header .navbar-nav .nav-item a:hover:before {
    transform: scale(1);
}

.fast-header .navbar-nav .nav-item.dropdown {
    position: relative;
}

.fast-header .navbar-nav .nav-item .dropdown-menu {
    position: absolute;
    float: none;
    min-width: 227px;
    max-width: 227px;
    box-shadow: 0 52px 54px rgba(65, 62, 101, .3);
    border-radius: 0;
    padding: 0;
    top: 100%;
    z-index: -99;
    opacity: 0;
    -webkit-transition: opacity .4s, top .4s;
    transition: opacity .4s, top .4s;
    pointer-events: none;
    left: 0;
    right: auto;
    background-color: var(--white-color);
    display: block;
    border: 1px solid var(--light-color);
}

.fast-header .navbar-nav .nav-item {
    position: relative;
    z-index: 99;
    margin-bottom: 0;
}

.fast-header .navbar-nav .nav-item:hover .dropdown-menu {
    top: 90%;
    opacity: 1;
    pointer-events: visible;
}

.fast-header.fixed-navbar .navbar-nav .nav-item:hover .dropdown-menu {
    top: 100%;
}

.fast-header .navbar-nav .nav-item .dropdown-menu .drop-menu-item a {
    color: var(--dark-color2);
    text-decoration: none;
    display: block;
    padding: 10px;
    transition: all ease 0.3s;
}

.fast-header .navbar-nav .nav-item .dropdown-menu .drop-menu-item a:hover {
    color: var(--primary-color);
    border-radius: 5px;
    background-color: var(--light-color2);
}

.fast-header .navbar-nav .nav-item .dropdown-menu .drop-menu-item a::before {
    content: none;
}

.fast-header .navbar-nav .nav-item .dropdown-menu .drop-menu-item {
    line-height: 30px;
}

.fast-header .login-menu .nav-item {
    line-height: normal;
}

.fast-header .login-menu a {
    color: var(--white-color);
    padding: 0 15px;
    font-size: var(--font-size16);
    font-weight: var(--font-weight500);
    text-decoration: none;
}

.fast-header .login-menu .nav-item a::before {
    content: none;
}

.fast-header .login-menu a:last-child {
    padding-right: 0;
}

.fast-header .login-menu .fast-cart i {
    background: var(--primary-color);
    border-radius: 100%;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 30%);
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    position: relative;
    color: var(--white-color);
    text-align: center;
    transition: all ease 0.3s;
    overflow: visible;
}

.fast-header .login-menu .fast-cart {
    position: relative;
}

.fast-header .login-menu .nav-item .nav-link:hover {
    color: var(--primary-color);
}

.fast-header .login-menu .nav-item.login-divider a {
    position: relative;
}


.fast-header .login-menu .nav-item.dropdown {
    line-height: 100px;
}

.fast-header .navbar-nav .nav-item .dropdown-menu.login-menu-dropdown {
    padding: 0;
    min-width: 85px;
    max-width: 85px;
    left: auto;
    right: 20px;
    border: 0;
}

.fast-header .navbar-nav .nav-item .dropdown-menu.login-menu-dropdown .drop-menu-item.active a {
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 0;
}

.fast-header .login-menu .fast-cart .cart-count {
    position: absolute;
    top: auto;
    right: -8px;
    bottom: -8px;
    width: 21px;
    height: 21px;
    color: var(--white-color) !important;
    background: var(--secondary-color);
    font-size: var(--font-size12);
    font-weight: var(--font-weightBold);
    border-radius: 50%;
}

.fast-burger-menu {
    border: 0;
    border-radius: 0;
    padding: 0 !important;
    width: 50px;
    height: 50px;
}

.fast-burger-menu .burger-menu {
    height: 50px;
}

.fast-burger-menu:hover,
.fast-burger-menu:focus {
    box-shadow: none;
}

.fast-burger-menu span {
    display: block;
    height: 2px;
    background-color: var(--black-color);
    margin: 5px 0;
    width: 12px;
}

.fast-offcanvas .btn-close:hover,
.fast-offcanvas .btn-close:focus {
    box-shadow: none;
}

.fast-offcanvas .btn-close {
    opacity: 1;
}

.fast-offcanvas .fast-overlay-menu li {
    padding: 10px 0px;
}

.fast-offcanvas .fast-overlay-menu li .accordion .accordion-item {
    border: 0;
    padding: 10px 0px;
}

.fast-offcanvas .fast-overlay-menu li .accordion .accordion-item h2 {
    font-family: var(--primary-font);
}

.fast-offcanvas .fast-overlay-menu li .accordion .accordion-item .accordion-button {
    padding: 0;
    color: var(--dark-color2);
    font-size: var(--font-size18);
    position: relative;
    line-height: 18px;
    opacity: 0.7;
    transition: 0.3s;
    font-weight: var(--font-weight600);
}

.fast-offcanvas .fast-overlay-menu li .accordion .accordion-item .accordion-button:focus {
    outline: none;
    box-shadow: none;
    border-color: transparent;
    background-color: transparent;
    color: var(--dark-color2);
}

.fast-offcanvas .fast-overlay-menu li a {
    text-decoration: none;
    color: var(--dark-color2);
    font-size: var(--font-size18);
    position: relative;
    line-height: 18px;
    opacity: 0.7;
    transition: 0.3s;
    font-weight: var(--font-weight600);
}

/* Header & Menu */

/* Buttons */
.btn-primary-fast {
    font-size: var(--font-size16);
    color: var(--white-color);
    padding: 20px 50px;
    transition: all ease 0.3s;
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    border-radius: 35px;
}

.btn-fast-flex {
  margin: auto auto 0 auto;
  width: fit-content;
}

.btn-primary-fast:hover {
    box-shadow: none;
    outline: none;
    color: var(--white-color);
    border-color: var(--primary-dark-color);
    background-color: var(--primary-dark-color);
}

.btn-primary-fast:focus {
    box-shadow: none;
    outline: none;
}

.btn-secondary-fast {
    font-size: var(--font-size16);
    color: var(--white-color);
    padding: 20px 50px;
    transition: all ease 0.3s;
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
    border-radius: 35px;
}

.btn-secondary-fast:hover {
    box-shadow: none;
    outline: none;
    color: var(--white-color);
    border-color: var(--secondary-dark-color);
    background-color: var(--secondary-dark-color);
}

.btn-secondary-fast:focus {
    box-shadow: none;
    outline: none;
}

.btn-teritary-fast {
    font-size: var(--font-size16);
    color: var(--white-color);
    padding: 20px 50px;
    transition: all ease 0.3s;
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    border-radius: 35px;
}

.btn-teritary-fast:hover {
    box-shadow: none;
    outline: none;
    color: var(--white-color);
    border-color: var(--primary-dark-color);
    background-color: var(--primary-dark-color);
}

.btn-teritary-fast:focus {
    box-shadow: none;
    outline: none;
}

/* Buttons */

/* Banner */
.banner {
    background-image: url('../images/listia_kapli_rosa_129757_1920x1080.jpg');
    background-size: cover;
    background-position: 100% 0;
    background-repeat: no-repeat;
    padding-top: 290px;
}

.banner.about-us {
    background-position: 100% 100%;
    padding: 400px 0;
}

.banner .banner-title {
    font-size: 60px;
    font-weight: var(--font-weight700);
    color: var(--white-color);
}

.banner .banner-title span {
    color: var(--primary-color);
}

.banner p {
    color: var(--white-color);
    padding: 20px 0;
    margin-bottom: 0;
}

.banner-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    padding-top: 60px;
    margin-bottom: -53px;
}

.fast-breadcrumb li a,
.fast-breadcrumb li.active {
    text-decoration: none;
    color: var(--white-color);
    font-size: var(--font-size16);
}

.fast-breadcrumb li {
    padding-right: 20px;
}

.fast-breadcrumb li:last-child {
    padding-right: 0;
}

.fast-breadcrumb li.active::before {
    content: '';
    position: relative;
    top: 2px;
    left: -10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512' fill='%23ffffff'%3E%3Cpath d='M342.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L274.7 256 105.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z'/%3E%3C/svg%3E");
    background-size: 13px;
    width: 12px;
    height: 17px;
}

/* Banner */

/* Shipping */
.free-shipping {
    padding: 150px 0 50px 0;
}

.free-shipping-wrapper {
    background-color: var(--white-color);
    box-shadow: 0 0 0 0 var(--white-color);
    border-radius: 5px;
    padding: 25px 10px;
}

.free-shipping-wrapper .shipping-icon {
    display: block;
    margin-right: 20px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.free-shipping-wrapper.first .shipping-icon {
    background-color: var(--light-color3);
}

.free-shipping-wrapper.second .shipping-icon {
    background-color: var(--light-color4);
}

.free-shipping-wrapper.third .shipping-icon {
    background-color: var(--light-color3);
}

.free-shipping-wrapper.fourth .shipping-icon {
    background-color: var(--primary-light-color);
}

.free-shipping-wrapper .shipping-icon img {
    width: 33px;
    object-fit: cover;
}

.free-shipping-wrapper.first {
    background-color: var(--light-color5);
}

.free-shipping-wrapper.second {
    background-color: var(--light-color6);
}

.free-shipping-wrapper.third {
    background-color: var(--light-color7);
}

.free-shipping-wrapper.fourth {
    background-color: var(--light-color8);
}

.shipping-right-block .shipping-title {
    color: var(--dark-color2);
    font-size: var(--font-size20);
    line-height: 30px;
}

.shipping-right-block .shipping-text {
    font-size: var(--font-size14);
    line-height: 22px;
}

/* Shipping */

/* About us */
.about-us {
    padding: 90px 0;
}

.about-us-title-sm {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: var(--font-weight700);
    padding-bottom: 25px;
    padding-top: 50px;
}

.about-us-title {
    font-size: 49px;
    font-weight: var(--font-weight700);
    color: var(--dark-color2);
    padding-bottom: 15px;
}

.about-us-title__error {
    color: var(--white-color);
}

.about-us-title__benefits {
    color: var(--white-color);
}

.about-us__descr {
    color: var(--white-color);
}

.about-us-title span {
    color: var(--primary-color);
}

.about-us ul {
    list-style: none;
    margin: 0;
    padding: 10px 0 25px 0;
}

.about-us ul li {
    margin-bottom: 10px;
}

.about-us ul li i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* About us */

/* Features */
.fast-featuers {
    background-image: url('../images/features_bg.png');
    background-size: cover;
    padding: 100px 0 0;
}

.features-title {
    font-size: 50px;
    font-weight: var(--font-weight700);
    color: var(--white-color);
}

.features-title span {
    color: var(--primary-color);
}

.features-details-wrapper {
    padding-top: 80px;
}

.features-details-card {
    margin-bottom: 30px;
}

.features-details-card h3 {
    margin: 20px 0;
    color: var(--white-color);
    font-size: var(--font-size22);
    line-height: 22px;
    font-weight: var(--font-weight700);
}

.features-details-card p {
    font-size: var(--font-size16);
    font-weight: var(--font-weight400);
    color: var(--white-color);
}

.features-text {
    font-size: var(--font-size16);
    font-weight: var(--font-weight400);
    color: var(--white-color);
}

.features-video-wrapper {
    position: relative;
    top: 50px;
    margin-top: 100px;
    z-index: 1;
}

.features-video-wrapper img {
    height: 562px;
    object-fit: cover;
    border-radius: 5px;
}

.features-video-wrapper a {
    position: absolute;
    top: 40%;
    left: 43%;
    width: 72px;
    height: 72px;
    background-color: var(--white-color);
    border-radius: 50%;
}

.features-video-wrapper i {
    font-size: var(--font-size26);
    color: var(--primary-color);
    position: absolute;
    top: 33%;
    left: 38%;
}

.features-modal .modal-content {
    background-color: transparent;
    border: 0;
}

.features-modal .modal-header {
    border: 0;
}

.features-modal .modal-body {
    padding: 0;
}

.features-modal iframe {
    width: 100%;
}

.features-modal .btn-close {
    background: none;
    opacity: 1;
}

.features-modal .btn-close i {
    color: var(--white-color);
    font-size: var(--font-size20);
}

.features-modal .btn-close:hover,
.features-modal .btn-close:focus {
    outline: none;
    box-shadow: none;
    border: 0;
}

/* Features */

/* Working steps */
.fast-working {
    background-image: url('../images/working_step_bg.png');
    background-size: cover;
    padding: 150px 0;
    position: relative;
    margin-top: -54px;
    z-index: 0;
}

.fast-working .working-step-img {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.fast-working .about-us-title {
    padding-top: 100px;
}

.fast-working p {
    padding-top: 30px;
}

.fast-working .fast-steps-content {
    position: relative;
    z-index: 1;
    padding-top: 50px;
}

.fast-working .fast-working-circle {
    width: 100px;
    height: 100px;
    background-color: var(--white-color);
    border-radius: 50%;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 30%);
}

.fast-working .fast-working-number {
    color: var(--primary-color);
    font-size: var(--font-size30);
    font-weight: var(--font-weightBold);
}

.fast-working .fast-working-text {
    color: var(--dark-color2);
    font-size: var(--font-size26);
    padding-top: 15px;
}

/* Working steps */

/* Essential benefits */
.fast-benefits {
    padding: 50px 0;
}

.fast-benefits .fast-benefits-features-wrapper {
    padding-top: 80px;
}

.fast-benefits .fast-benefits-features-wrapper .fast-benefits-card {
    background-color: var(--light-color9);
    box-shadow: 0 0 0 0 var(--white-color);
    border-radius: 5px;
    padding: 40px 30px 40px 30px;
    margin-bottom: 20px;
}

.fast-benefits .fast-benefits-features-wrapper .fast-benefits-card-green {
    color: var(--primary-color);
    font-size: var(--font-size30);
    font-weight: var(--font-weightBold);
    margin-right: 15px;
}

.fast-benefits .fast-benefits-features-wrapper .fast-benefits-card-text {
    color: var(--dark-color2);
    font-size: var(--font-size26);
}

/* Essential benefits */

/* Fast start banner */
.fast-start {
    background-image: url('../images/bacground2jpg.jpg');
    background-size: cover;
    padding: 200px 0;
}

/* Fast start banner */

/* Fast cart section */
.fast-cart-area {
    padding: 60px 0;
}

.fast-cart-area .price-wrapper {
    padding-bottom: 20px;
}

.fast-cart-area .price-strike {
    margin-right: 10px;
    color: var(--dark-color);
    text-decoration: line-through;
    font-size: var(--font-size16);
}

.fast-cart-area .price-cart {
    font-size: var(--font-size30);
    color: var(--primary-color);
    font-weight: var(--font-weightBold);
}

.fast-cart-area .cart-details-wrapper {
    padding: 20px 0;
    border-top: 1px solid var(--light-color10);
    border-bottom: 1px solid var(--light-color10);
}

.cart-details-wrapper .cart-details {
    padding-bottom: 10px;
}

.cart-details-wrapper .cart-details span {
    font-size: var(--font-size14);
}

.cart-details-wrapper .cart-details .cart-bold {
    color: var(--dark-color2);
    font-weight: var(--font-weightBold);
    font-size: var(--font-size14);
}

.cart-option-wrapper {
    padding: 20px 0;
}

.cart-option-wrapper .text-option-bold {
    color: var(--dark-color2);
    font-weight: var(--font-weightBold);
    font-size: var(--font-size14);
    margin-right: 20px;
}

.cart-option-wrapper ul {
    margin-bottom: 0;
}

.cart-option-wrapper ul li {
    margin-right: 10px;
}

.cart-option-wrapper ul li.active a {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.cart-option-wrapper ul li a {
    font-size: var(--font-size14);
    border: 1px solid var(--hover-color);
    text-decoration: none;
    padding: 9px 18px;
    line-height: 1;
    color: var(--dark-color);
}

.cart-option-wrapper ul li a:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.cart-btn-wrapper {
    padding-top: 20px;
}

.cart-btn-wrapper .form-control {
    line-height: 3.2;
    border-radius: 100px;
    width: 90px !important;
    height: 64px;
}

/* Fast cart section */

/* Customers carousel */
.customers-carousel {
    padding-top: 30px;
}

.customers-carousel .item {
    border: 1px solid var(--light-color10);
    border-radius: 5px;
    padding: 40px;
    margin-bottom: 35px;
    transition: 0.3s ease-in-out;
}

.customers-carousel .item:hover {
    box-shadow: 0 18px 16px 0 rgb(211 214 220 / 63%);
}

.customers-carousel .item .review-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.customers-carousel .item .review-name {
    font-family: var(--heading-font);
    font-size: var(--font-size20);
    font-weight: var(--font-weight700);
}

.customers-carousel .item .review-position {
    color: var(--primary-color);
}

.customers-carousel .item .fa-quote-left {
    font-size: var(--font-size30);
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 10px;
}

.customers-carousel .item .star-line {
    border-top: 1px solid var(--light-color10);
    padding-top: 15px !important;
}

.customers-carousel .item .fa-star {
    color: var(--star-color);
}

.customers-carousel .owl-dots {
    text-align: center;
}

.customers-carousel .owl-dots .owl-dot {
    background-color: var(--light-dark-color);
    border-radius: 50%;
    width: 10px;
    height: 10px;
    margin-right: 5px;
}

.customers-carousel .owl-dots .owl-dot.active {
    background-color: var(--primary-color);
    width: 20px;
    border-radius: 10px;
}

/* Customers carousel */

/* About */
.fast-about-tile-block {
    padding: 150px 0;
}

.fast-tile-block-img-wrapper img {
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
}

/* About */

/* Partners slider */
.fast-partners .fast-partners-img-wrapper img {
    height: 60px;
    object-fit: contain;
}

.partners-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.partners-carousel .owl-dots .owl-dot {
    background-color: var(--light-dark-color);
    border-radius: 50%;
    width: 10px;
    height: 10px;
    margin-right: 5px;
}

.partners-carousel .owl-dots .owl-dot.active {
    background-color: var(--primary-color);
    width: 20px;
    border-radius: 10px;
}

/* Partners slider */

/* About us block */
.fast-about-us-block {
    background-image: url('../images/working_step_bg_black.png');
    background-size: cover;
    padding: 100px 0 30px;
}

/* About us block */

/* Essential features */
.fast-essential {
    padding: 100px 0;
}

.fast-essential-card {
    margin-bottom: 30px;
}

.fast-essential-card h3 {
    margin: 20px 0;
    font-size: var(--font-size22);
    line-height: 22px;
    font-weight: var(--font-weight700);
}

.fast-essential-card p {
    font-size: var(--font-size16);
    font-weight: var(--font-weight400);
}

/* Essential features */

/* Blog */
.fast-blog-list {
    padding-top: 70px;
}

.fast-blog-card {
    padding-bottom: 100px;
}

.fast-blog-card .fast-blog-img-wrapper {
    display: block;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.fast-blog-card .fast-blog-img-wrapper img {
    object-fit: cover;
    width: 100%;
    height: 500px;
    transform: scale(1);
    transition: all .4s ease-in-out;
}

.fast-blog-card .fast-blog-img-wrapper:hover img {
    transform: scale(1.05);
}

.fast-blog-card .fast-blog-img-wrapper a {
    position: absolute;
    top: 43%;
    left: 48%;
    width: 61px;
    height: 43px;
}

.fast-blog-content-wrapper {
    padding-left: 50px;
    padding-top: 60px;
}

.fast-blog-content-wrapper ul li {
    text-transform: uppercase;
    font-size: var(--font-size14);
    color: var(--dark-color);
}

.fast-blog-content-wrapper ul li i {
    color: var(--primary-color);
    margin-right: 5px;
}

.fast-blog-title {
    color: var(--black-color);
    font-size: var(--font-size30);
    line-height: 30px;
    font-weight: var(--font-weight600);
    padding-bottom: 20px;
}

.fast-blog-content-wrapper p {
    padding-bottom: 10px;
}

.fast-blog-divider-line {
    border-top: solid 4px var(--primary-color);
}

.fast-right-side {
    padding: 0 20px;
}

.fast-block-title {
    font-size: var(--font-size25);
    padding: 10px 0;
    color: var(--black-color);
}

.fast-blog-input-search {
    height: 56px;
}

.fast-blog-input-search input {
    background-color: var(--light-color11);
    border: 0;
}

.fast-blog-input-search input::placeholder {
    color: var(--black-color);
}

.fast-blog-input-search input:focus {
    background-color: var(--light-color11);
}

.fast-blog-input-search button {
    background-color: var(--primary-color);
    border: 0;
    width: 60px;
}

.fast-blog-input-search button i {
    color: var(--white-color);
}

.fast-blog-input-search button:hover {
    background-color: var(--primary-dark-color);
}

.fast-blog-input-search input,
.fast-blog-input-search button {
    border-radius: 4px;
}

.fast-blog-input-search input:focus,
.fast-blog-input-search button:focus,
.fast-blog-input-search button:active:focus {
    box-shadow: none;
}

.fast-recent-post-list li {
    padding-bottom: 30px;
}

.fast-recent-post-list li img {
    width: 82px;
    height: 82px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 20px;
}

.fast-recent-post-list li .post-date {
    font-size: var(--font-size12);
    color: var(--light-color12);
}

.fast-category-list li {
    color: var(--light-color12);
    padding-bottom: 20px;
}

.fast-category-list li:last-child {
    padding-bottom: 0;
}

.fast-social-list li a {
    background-color: var(--primary-social-dark-color);
    width: 40px;
    height: 40px;
    display: block;
    border-radius: 3px;
    transition: all ease 0.3s;
    text-decoration: none;
}

.fast-social-list li a:hover {
    background-color: var(--primary-color);
}

.fast-social-list li a i {
    color: var(--white-color);
}

.fast-tag-list .fast-tags {
    background-color: var(--cart-tag-color);
    padding: 10px;
    color: var(--cart-tag-text-color);
    text-transform: uppercase;
    font-size: var(--font-size12);
    margin-right: 10px;
    margin-bottom: 15px;
}

.blog-carousel {
    position: relative;
}

.blog-carousel .owl-nav {
    position: absolute;
    top: 41%;
    left: 5%;
    width: 90%;
}

.owl-prev span,
.owl-next span {
    display: none;
}

.owl-prev {
    background-color: var(--white-color) !important;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
}

.owl-next {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--white-color) !important;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
}

.owl-prev::before {
    content: '';
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%237fb401' d='M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.2 288 416 288c17.7 0 32-14.3 32-32s-14.3-32-32-32l-306.7 0L214.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z'/%3E%3C/svg%3E");
    background-size: 25px;
    width: 25px;
    height: 25px;
    display: inline-block;
    vertical-align: middle;
    left: 12px;
}

.owl-next::before {
    content: '';
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%237fb401' d='M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.8 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l306.7 0L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z'/%3E%3C/svg%3E");
    background-size: 25px;
    width: 25px;
    height: 25px;
    display: inline-block;
    vertical-align: middle;
    right: 12px;
}

/* Blog */

/* Contact */
.contact-partner-title {
    font-weight: var(--font-weight700);
    color: var(--dark-color2);
    padding-bottom: 15px;
}

.fast-contact-wrapper-section {
    padding-top: 100px;
}

.fast-contact-form {
    padding-top: 100px;
}

.fast-contact-form ul li {
    margin-bottom: 50px;
}

.contact-card {
    margin-right: 30px;
}

.contact-icon-card {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--light-color11);
}

.contact-card-content h3 {
    color: var(--black-color);
    font-weight: var(--font-weight600);
}

.fast-contact-form-input:hover,
.fast-contact-form-input:focus {
    box-shadow: none;
    background-color: var(--light-color11);
}

.fast-contact-form-input {
    border: 0;
    background-color: var(--light-color11);
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 30px;
}

.fast-contact-map {
    padding: 100px 0;
}

.fast-contact-map iframe {
    width: 100%;
    height: 600px;
}

/* Contact */

/* My account */
.my-account-wrapper {
    padding: 100px 0 0;
}

.my-account-card-wrapper {
    box-shadow: 0 2px 22px rgb(0 0 0 / 16%);
    border-radius: 10px;
    padding: 50px;
}

.my-account-sidebar h2,
.my-account-cart h2 {
    font-size: var(--font-size30);
    font-weight: var(--font-weight700);
    color: var(--dark-color2);
    padding-bottom: 15px;
}

.my-account-list li {
    padding-bottom: 10px;
}

.my-account-list li a {
    text-decoration: none;
    color: var(--dark-color);
}

.my-account-list li.active a {
    color: var(--primary-color);
}

.my-account-table-wrapper table {
    width: 100%;
    border: 1px solid var(--hover-color);
}

.my-account-table-wrapper table tr th,
.my-account-table-wrapper table tr td {
    padding: 15px;
    border-bottom: 1px solid var(--hover-color);
}

/* My account */

/* Checkout */
.checkout-wrapper {
    padding: 100px 0 0;
}

.checkout-form-title {
    font-size: var(--font-size30);
    font-weight: var(--font-weight700);
    color: var(--dark-color2);
}

.checkout-form-text a {
    text-decoration: underline;
    color: var(--dark-color);
    margin-left: 10px;
}

.checkout-form-text a:hover {
    color: var(--primary-color);
}

.checkout-form-input {
    padding: 10px 15px;
}

.checkout-form-input:hover,
.checkout-form-input:focus {
    box-shadow: none;
    border-color: var(--dark-color);
}

.checkout-form-check input:hover,
.checkout-form-check input:focus {
    box-shadow: none;
}

.order-summary-wrapper {
    box-shadow: 0 2px 22px rgb(0 0 0 / 16%);
    border-radius: 10px;
    padding: 30px;
}

.order-card-details .order-card-line {
    border-bottom: solid 1px var(--hover-color);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.order-card-details .order-card img {
    width: 70px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}

.order-card-content {
    margin-left: 15px;
}

.order-card-content .order-card-title {
    font-weight: var(--font-weight700);
    font-size: var(--font-size16);
    color: var(--dark-color2);
}

.order-card-content .order-card-text {
    font-size: var(--font-size14);
}

.order-split-line {
    border-bottom: solid 1px var(--hover-color);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.checkout-btn-list .btn-teritary-fast {
    padding: 10px 20px;
}

/* Checkout */

/* Cart */
.cart-wrapper {
    padding: 100px 0 0;
}

.shopping-table-wrapper table {
    width: 100%;
}

.shopping-table-wrapper table tr th,
.shopping-table-wrapper table tr td {
    padding: 15px;
    border-bottom: 1px solid var(--hover-color);
}

.fast-cart-group button:hover,
.fast-cart-group button:focus,
.fast-cart-group button:active:focus {
    box-shadow: none;
}

.fast-cart-group {
    width: 120px;
}

.shopping-cart-link {
    padding-top: 20px;
}

.shopping-cart-link a {
    text-decoration: none;
    color: var(--dark-color2);
}

.shopping-cart-link a:hover {
    color: var(--primary-color);
}

/* Cart */

/* Login */
.login-wrapper {
    padding: 100px 0 0;
}

/* Login */

/* 404 */
.fast-error .btn {
    width: 250px;
}

.fast-error .btn-primary-fast {
    margin-right: 30px;
}

/* 404 */

/* Product list */
.product-result .product-result-text {
    margin-right: 15px;
}

.product-result .product-result-text.sortby {
    margin-right: 5px;
}

.product-result .checkout-form-input {
    width: 80px;
    padding: 5px 10px;
}

.product-result .checkout-form-input.sortby {
    border: 0;
    width: 130px;
}

.product-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
    width: 100%;
    text-align: center;
    padding: 30px 0;
    transition: all ease 0.5s;
}

.product-card-wrapper:hover {
    cursor: pointer;
    box-shadow: 0px 45px 35px 0px rgb(0 0 0 / 15%);
    border-radius: 5px;
}

.product-card-wrapper:hover .product-card-img-wrapper img {
    transform: scale(1);
}

.product-card-wrapper h3 {
    color: var(--dark-color2);
    font-weight: var(--font-weight700);
    transition: all ease 0.5s;
}

.product-card-wrapper:hover h3 {
    color: var(--primary-color);
}

.product-card-wrapper .product-card-label {
    width: fit-content;
    position: relative;
    color: var(--white-color);
    display: inline-block;
    font-size: var(--font-size14);
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    padding: 7px 10px;
    font-weight: 600;
    min-width: 45px;
    background: var(--primary-color);
    margin: 10px 0 0 10px;
}

.product-card-wrapper .product-card-label::before {
    content: '';
    position: absolute;
    border-style: solid solid solid none;
    border-color: var(--primary-color) transparent transparent;
    border-width: 9px 9px 9px 0;
    bottom: -15px;
    left: 0;
    width: 9px;
}

.product-card-wrapper .product-card-img-wrapper img {
    height: 400px;
    width: 100%;
    object-fit: contain;
    transform: scale(1);
    transition: all .5s ease-in-out;
}

.product-card-wrapper .star-line {
    margin: 20px 0;
}

.product-card-wrapper .star-line .fa-star {
    color: var(--light-color12);
}

.product-card-wrapper .star-line .fa-star.active {
    color: var(--star-color);
}

.product-card-wrapper .product-card-price {
    font-size: var(--font-size16);
    font-weight: var(--font-weight700);
    margin-bottom: 20px;
}

.product-card-wrapper .product-card-price .strike {
    color: var(--dark-color);
    text-decoration: line-through;
}

.product-card-wrapper .product-card-price span {
    color: var(--primary-color);
}

/* Product list */

/* Product detail */
.product-detail-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.product-card-inner-img {
    display: block;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.product-card-inner-img img {
    object-fit: cover;
    width: 100%;
    height: 250px;
    transform: scale(1);
    transition: all .4s ease-in-out;
}

.product-card-inner-img:hover img {
    transform: scale(1.05);
}

.product-card-inner h3 {
    margin-top: 15px;
    font-weight: var(--font-weight700);
    color: var(--dark-color2);
}

/* Product detail */

/* Blog detail */
.fast-blog-list-detail {
    padding-top: 120px;
}

.blog-detail-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
}

.related-blog .btn {
    padding: 10px 25px;
}

/* Blog detail */

/* Icons */
.icon {
    display: inline-block;
    vertical-align: middle;
    color: var(--white-color);
    font-size: 22px;
}

.icon:hover {
    color: var(--primary-color);
}

.icon:active {
    color: var();
}

.logo-link {
    height: 30px;
    width: 30x;
}

/* Icons */

/* Footer */
.fast-footer {
    background-color: var(--black-color);
}

.fast-footer .signup-wrapper {
    margin: -110px 0px 0px 0px;
    background-image: url('../images/signup_bg.png');
    background-color: var(--primary-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: inherit;
    background-position: 50% 100%;
    box-shadow: 0 0 0 0 var(--white-color);
    border-radius: 20px;
    padding: 30px 40px 30px 40px;
    position: relative;
    overflow: hidden;
    height: 200px;
}

.fast-footer .signup-wrapper .signup-title {
    color: var(--white-color);
    font-size: var(--font-size40);
    font-weight: var(--font-weight700);
    margin-bottom: 20px;
}

.fast-footer .signup-wrapper .signup-text {
    font-size: var(--font-size14);
    color: var(--white-color);
}

.fast-footer .signup-wrapper .signup-subscribe input {
    background-color: transparent;
    border-radius: 0;
    border: 0;
    border-bottom: solid 1px var(--white-color);
    color: var(--white-color);
    padding: 0;
}

.fast-footer .signup-wrapper .signup-subscribe input:focus,
.fast-footer .signup-wrapper .signup-subscribe input:hover {
    box-shadow: none;
    outline: none;
}

.fast-footer .signup-wrapper .signup-subscribe input::placeholder {
    color: var(--white-color);
}

.fast-footer .signup-wrapper .signup-subscribe button {
    border: 0;
    border-bottom: solid 1px var(--white-color);
    border-radius: 0;
}

.fast-footer .signup-wrapper .signup-subscribe button i {
    color: var(--white-color);
}

.fast-footer .signup-wrapper .signup-subscribe button:hover,
.fast-footer .signup-wrapper .signup-subscribe button:focus {
    border-color: var(--white-color);
}

.fast-footer .footer-second {
    padding: 30px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
}

.footer-second .footer-logo {
    height: 140px;
    margin-bottom: 10px;
}

.fast-support-icon,
.fast-contact-icon {
    display: block;
}

.footer-second .fast-support-wrapper {
    margin-left: 20px;
}

.footer-second .fast-support-wrapper .fast-support-title {
    margin-bottom: 10px;
    color: var(--dark-color2);
    font-size: var(--font-size20);
    line-height: 22px;
    font-weight: var(--font-weight700);
}

.footer-second .fast-support-wrapper .fast-support-phone a {
    margin-bottom: 10px;
    color: var(--dark-color2);
    font-size: var(--font-size16);
    line-height: 18px;
    font-weight: var(--font-weight700);
    text-decoration: none;
    transition: all ease 0.3s;
}

.footer-second .fast-support-wrapper .fast-support-phone a:hover {
    color: var(--primary-hover-color);
}

.fast-contact-wrapper {
    margin-top: 35px;
}

.fast-contact-wrapper .fast-contact-title {
    margin-bottom: 20px;
    color: var(--dark-color2);
    font-size: var(--font-size20);
    line-height: 22px;
    font-weight: var(--font-weight700);
}

.fast-contact-wrapper .fast-contact-address {
    font-size: var(--font-size16);
    margin-left: 20px;
    font-weight: var(--font-weight500);
}

.footer-second .fast-social-icon-wrapper {
    margin-bottom: 0;
}

.footer-second .fast-social-icon-wrapper li {
    margin-right: 20px;
}

.footer-second .fast-social-icon-wrapper a i {
    transition: all ease 0.3s;
}

.footer-second .fast-footer-title {
    font-size: var(--font-size25);
    font-weight: var(--font-weight700);
    color: var(--dark-color2);
    text-transform: uppercase;
}

.footer-second .fast-footer-menu {
    margin-top: 35px;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.footer-second .fast-footer-menu li {
    padding-bottom: 15px;
}

.footer-second .fast-footer-menu li a {
    text-decoration: none;
    font-size: var(--font-size16);
    color: var(--dark-color);
    transition: all ease 0.3s;
}

.footer-second .fast-footer-menu li a:hover {
    color: var(--primary-hover-color);
}

.fast-recent-post-wrapper {
    margin-top: 35px;
}

.fast-recent-post-wrapper img {
    width: 110px;
    height: 80px;
    object-fit: cover;
    border-radius: 3px;
    margin-right: 15px;
}

.fast-recent-right-block .recent-post-title {
    text-decoration: none;
    color: var(--dark-color2);
    font-size: var(--font-size14);
    font-weight: var(--font-weight700);
    transition: all ease 0.3s;
    margin-bottom: 10px;
    display: block;
}

.fast-recent-right-block .recent-post-title:hover {
    color: var(--primary-hover-color);
}

.fast-recent-right-block .recent-post-date {
    color: var(--dark-color);
    font-size: var(--font-size12);
    white-space: nowrap;
}

/* Footer */

/* Media queries Max 992 */
@media all and (max-width: 992px) {
    .order-summary-wrapper {
        margin-top: 50px;
    }

    .product-card-wrapper .product-card-img-wrapper img {
      height: 270px;
      width: 100%;
      object-fit: contain;
      transform: scale(1);
      transition: all .5s ease-in-out;
   }

    .related-blog {
        margin-bottom: 20px;
    }

    .icon {
      color: var(--black-color);
    }
    
    .icon-footer {
     color: var(--white-color);
     font-size: 22px;
    }
}

/* Media queries Max 992 */ 


/* Media queries Max 767 */
@media all and (max-width: 767px) {
    .free-shipping-wrapper {
        margin-bottom: 30px;
    }

    .fast-footer .signup-wrapper {
        height: auto;
    }

    .fast-blog-list {
        padding-top: 100px;
        margin-bottom: 60px;
    }

    .fast-blog-content-wrapper {
        padding-left: 0;
    }

    .fast-blog-card {
        padding-bottom: 50px;
    }

    .fast-blog-card .fast-blog-img-wrapper img {
        height: 250px;
    }

    .fast-blog-card .fast-blog-img-wrapper a {
        top: 41%;
        left: 42%;
    }

    .fast-contact-wrapper-section {
        padding-top: 50px;
    }

    .cart-option-wrapper ul li {
        margin-bottom: 20px;
    }

    .cart-btn-wrapper .btn {
        padding: 20px 10px;
    }

    .fast-contact-form {
        padding-top: 50px;
    }

    .my-account-table-wrapper {
        overflow-x: auto;
    }

    .my-account-card-wrapper {
        padding: 20px;
    }

    .checkout-btn-wrapper li {
        width: 100%;
        margin-bottom: 20px;
    }

    .checkout-btn-wrapper li:last-child {
        margin-bottom: 0;
    }

    .checkout-btn-wrapper li a {
        width: 100%;
    }

    .shopping-table-wrapper {
        overflow-x: auto;
    }

    .fast-error .btn {
        width: 100%;
    }

    .fast-error .btn-primary-fast {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .product-detail-img img {
        height: 250px;
    }

    .blog-detail-img img {
        height: 250px;
    }

    .fast-essential-card {
      text-align: center;
    }
  
}

/* Media queries Max 480 */
@media all and (max-width: 480px) {

  .about-us {
    padding: 100px 0 50px 0;
  }

  .banner .banner-title {
    font-size: 35px;
  }

  .about-us-title {
    text-align: center ;
    font-size: 33px;
  }

  .fast-breadcrumb {
    padding: 0 45px;
  }
  
  .cart-btn-wrapper .btn {
    text-align: center;
    padding: 17px 39px;
  }

  .banner.about-us {
  background-position: 100% 100%;
  padding: 190px 0;
  }

  .features-title {
    font-size: 35px;
  }

  .fast-essential-card {
    text-align: center;
  }

}
/* Media queries Max 480 */

#accordionFlushpink {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: rgb(255, 123, 145);
}
#accordionFlushblue {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: rgb(99, 158, 241);
}
#accordionFlushgreen{
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: rgb(73, 207, 87);
}
#accordionFlushyellow{
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: rgb(228, 185, 45);
}
#accordionFlushypurple{
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: rgb(122, 70, 255);
}


.about-us-title__accordion {
    text-align: center;
}

.btn-pink {
    background-color: rgb(255, 123, 145);
    color: white;
    border: rgb(255, 123, 145);
}

.btn-pink:hover {
    box-shadow: none;
    outline: none;
    color: var(--white-color);
    border-color: rgb(249, 66, 96);
    background-color: rgb(249, 66, 96);
}

.btn-green {
    background-color: rgb(73, 207, 87);
    color: white;
    border: rgb(73, 207, 87);
}

.btn-green:hover {
    box-shadow: none;
    outline: none;
    color: var(--white-color);
    border-color: rgb(42, 201, 58);
    background-color: rgb(42, 201, 58);
}

.btn-yellow {
    background-color: rgb(228, 185, 45);
    color: white;
    border: rgb(228, 185, 45);
}

.btn-yellow:hover {
    box-shadow: none;
    outline: none;
    color: var(--white-color);
    border-color: rgb(214, 174, 43);
    background-color: rgb(214, 174, 43);
}

.btn-blue {
    background-color: rgb(99, 158, 241);
    color: white;
    border: rgb(99, 158, 241);
}

.btn-blue:hover {
    box-shadow: none;
    outline: none;
    color: var(--white-color);
    border-color: rgb(39, 133, 200);
    background-color: rgb(39, 133, 200);
}
.btn-purple {
    background-color: rgb(122, 70, 255);
    color: white;
    border: rgb(122, 70, 255);
}

.btn-purple:hover {
    box-shadow: none;
    outline: none;
    color: var(--white-color);
    border-color: rgb(96, 37, 246);
    background-color: rgb(96, 37, 246);
}



/* Media queries Max 767 */