/* -----------------------------------------
  Variable CSS
----------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Marcellus&display=swap");

:root {
    --bs-primary: #F14835;
    --bs-primary-rgb: 241, 72, 53;
    --bs-body-bg: #FFFFFF;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-body-color: #686868;
    --bs-body-color-rgb: 104, 104, 104;
    --bs-heading-color: #000000;
    --bs-heading-color-rgb: 0, 0, 0;
    --bs-border-color: #EAEAEA;
    --bs-secondary: #EFF6FF;
    --bs-secondary-rgb: 239, 246, 255;
    --bs-dark: #000;
    --bs-dark-rgb: 0, 0, 0;
    --bs-body-font-family: "Inter", sans-serif;
    --bs-body-font-weight: 500;
    --bs-heading-font-family: "Marcellus", serif;
    --font-awesome: "Font Awesome 6 Pro";
    --bs-radius-sm: 6px;
    --bs-radius-md: 8px;
    --bs-radius-lg: 12px;
    --bg-1: #F8F8F8;
    --bg-2: #F8F8F8;
    --bg-3: #ebebeb;
    --bs-success: green;
    --bs-red: #EB4C4C;
    --bs-red-rgb: 235, 76, 76;
    --bs-light: #F5F5F5;
    --color-medium: #757575;
    --bs-blue: #0061DF;
    --bs-blue-rgb: 0, 97, 223;
    --font-lg: 18px;
    --font-sm: 14px;
    --font-xsm: 12px;
    --font-medium: 500;
    --bs-green: #00B67A;
    --bs-green-rgb: 0, 182, 122;
    --bs-yellow: #FFC107;
    --bs-yellow-rgb: 255, 193, 7;
    --shadow-md: 0px 4px 80px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 30px -5px rgba(8, 0, 42, .1);
    --shadow-sm: 0px 10px 40px rgb(0, 0, 0, .06);
    --swiper-theme-color: var(--bs-primary);
}

:root {
    --font-size-base: 1rem;
    --h1-font-size: 4.625rem;
    --h2-font-size: 3rem;
    --h3-font-size: 2rem;
    --h4-font-size: 1.5rem;
    --h5-font-size: 1.125rem;
    --h6-font-size: 1rem;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--bs-heading-font-family);
}

h1,
.h1 {
    font-size: calc(2.2rem + 1.8vw);
}

h2,
.h2 {
    font-size: calc(1.4rem + 1.8vw);
}

h3,
.h3 {
    font-size: calc(1.325rem + 0.9vw);
}

h4,
.h4 {
    font-size: calc(1.275rem + 0.3vw);
}

h5,
.h5 {
    font-size: 1.125rem;
}

@media (min-width: 1200px) {

    h1,
    .h1 {
        font-size: var(--h1-font-size);
    }

    h2,
    .h2 {
        font-size: var(--h2-font-size);
    }

    h3,
    .h3 {
        font-size: var(--h3-font-size);
    }

    h4,
    .h4 {
        font-size: var(--h4-font-size);
    }
}

h1,
.h1 {
    line-height: 1.3;
    font-weight: 400;
}

h2,
.h2 {
    line-height: 1.228;
    font-weight: 400;
}

h3,
.h3 {
    line-height: 1.228;
    font-weight: 400;
}

h4 {
    line-height: 1.5;
    font-weight: 400;
}

h5 {
    line-height: 1.4;
    font-weight: 400;
}

h6 {
    line-height: 1.4;
    font-weight: 400;
}

body {
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    scroll-behavior: smooth;
    box-sizing: border-box;
    overflow-x: hidden;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1440px;
    }
}

.title {
    position: relative;
    display: inline-block;
}

.title span:first-child {
    position: relative;
    display: inline-block;
    background: url("../../images/title-line-lg.png") no-repeat center bottom;
    background-size: contain;
}

.title span:nth-child(2) {
    position: relative;
    display: inline-block;
    background: url("../../images/title-line-sm.png") no-repeat center bottom;
    background-size: contain;
}


/*====================== */
/*====== preloader ======*/
/*====================== */
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--bs-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/*-----------------------------------
  Button
-----------------------------------*/
.thm-btn {
    --bs-btn-color: #fff;
    --bs-btn-bg: rgba(var(--bs-primary-rgb), 0.8);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-color: var(--bs-primary);
    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-border-color: var(--bs-primary);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: var(--bs-primary);
    --bs-btn-active-bg: transparent;
    --bs-btn-active-border-color: var(--bs-primary);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--bs-primary);
    --bs-btn-disabled-border-color: var(--bs-primary);
    --bs-btn-padding-x: 25px;
    border-radius: 0;
    border: 2px dotted var(--bs-primary);
}

.thm-btn-dark {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bs-dark);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: rgba(var(--bs-primary-rgb), 0.8);
    --bs-btn-hover-border-color: var(--bs-primary);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: var(--bs-white);
    --bs-btn-active-bg: rgba(var(--bs-primary-rgb), 0.8);
    --bs-btn-active-border-color: var(--bs-primary);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--bs-primary);
    --bs-btn-disabled-border-color: var(--bs-primary);
    --bs-btn-padding-x: 25px;
    border-radius: 0;
    border: 2px dotted var(--bs-primary);
    font-weight: 700;
}

.thm-btn-light {
    --bs-btn-color: var(--bs-primary);
    --bs-btn-bg: var(--bs-white);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-color: var(--bs-primary);
    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-border-color: var(--bs-primary);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: var(--bs-primary);
    --bs-btn-active-bg: transparent;
    --bs-btn-active-border-color: var(--bs-primary);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--bs-primary);
    --bs-btn-disabled-border-color: var(--bs-primary);
    --bs-btn-padding-x: 25px;
    border-radius: 0;
    border: 2px dotted var(--bs-primary);
    font-weight: 700;
}

.thm-btn-outline {
    --bs-btn-color: var(--bs-body-color);
    --bs-btn-bg: var(--bs-white);
    --bs-btn-border-color: var(--bs-border-color);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-white);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: var(--bs-primary);
    --bs-btn-active-bg: var(--bs-body-bg);
    --bs-btn-active-border-color: var(--bs-primary);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--bs-primary);
    --bs-btn-disabled-border-color: var(--bs-primary);
    --bs-btn-padding-x: 25px;
    border-radius: 0;
    border: 2px dotted var(--bs-border-color);
    font-weight: 700;
}

/* -----------------------------------------
Back to Top CSS
----------------------------------------- */
.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 90px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    box-shadow: rgba(var(--bs-primary-rgb), 0.4) 2px 3px 30px 0px;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: var(--font-awesome);
    content: "\f062";
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: var(--bs-primary);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--bs-primary);
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

/*-----------------------------------
  Hero css
-----------------------------------*/
.hero-area {
    position: relative;
    z-index: 1;
    padding-top: 200px;
    padding-bottom: 460px;
    
}

.hero-area .content {
    max-width: 800px;
    margin-inline: auto;
    text-align: center;
}

.hero-area .title {
    color: #fff;
}

.hero-area .vactor .shape-1 {
    position: absolute;
    bottom: -65px;
    left: -20px;
    max-width: 50%;
}
.hero-area .vactor .shape-2 img,
.hero-area .vactor .shape-1 img{
    width: 100%;
}
.hero-area .vactor .shape-2 {
    position: absolute;
    bottom: -65px;
    right: -20px;
    max-width: 50%;
}

@media (max-width: 1199.98px) {
    .hero-area {
        padding-top: 150px;
        padding-bottom: 200px;
    }
}

@media (max-width: 575.98px) {
    .hero-area {
        padding-top: 150px;
        padding-bottom: 120px;
    }
}

@media (max-width: 480.98px) {
    .hero-area {
        padding-bottom: 60px;
    }
}

/*-----------------------------------
  About us
-----------------------------------*/
.about-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-section .info-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.about-section .info-list li .icon {
    --size: 84px;
    max-width: var(--size);
    min-width: var(--size);
    height: var(--size);
    width: 100%;
    text-align: center;
    line-height: var(--size);
    background: #ECEDFA;
    background: var(--bg-color);
    border-radius: 10px;
}

.about-section .shape {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.about-section .about-image {
    position: absolute;
    right: 0;
    top: 70px;
    width: 45%;
}

.about-section .about-image img {
    width: 100%;
}

@media (max-width: 1199.98px) {
    .about-section .about-image {
        position: inherit;
        width: 100%;
    }
}

/*-----------------------------------
    featured css
-----------------------------------*/
.featured-section {
    position: relative;
    overflow: hidden;
}

.featured-section .swiper-pagination-bullet {
    --size: 16px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--bs-primary);
    position: relative;
    opacity: 1;
}

.featured-section .swiper-pagination-bullet::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bs-primary);
    --size: 7px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    visibility: hidden;
    opacity: 1;
}

.featured-section .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    visibility: visible;
    opacity: 1;
}

.featured-section .shape-area .shape-1 {
    position: absolute;
    top: 0;
    left: 0;
}

.featured-section .shape-area .shape-2 {
    position: absolute;
    top: 0;
    right: 0;
}

@media (max-width: 1199.98px) {
    .featured-section .shape-area {
        display: none;
    }
}

/*-----------------------------------
    Banner css
-----------------------------------*/
.banner-section .banner-md-card {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: var(--bs-radius-lg);
    padding: 35px 24px;
}

.banner-section .banner-md-card::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 53.03%);
    border-radius: var(--bs-radius-lg);
    z-index: 1;
}

.banner-section .banner-md-card .card-text {
    max-width: 367px;
    position: relative;
    z-index: 2;
}

.banner-section .banner-md-card .card-text .subtitle {
    margin-bottom: 5px;
    color: #B8B8B8;
}

.banner-section .banner-md-card .card-text .title {
    margin-bottom: 30px;
    color: #fff;
}

.banner-section .banner-md-card .card-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    z-index: -1;
}

.banner-section .banner-md-card:hover .card-img {
    transform: scale(1.1);
}

/*-----------------------------------
    Product css
-----------------------------------*/
.product-card {
    text-align: center;
    transition: all 0.3s ease;
}

.product-card .card-image {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.product-card .card-image img {
    transition: all 0.3s ease;
    width: 100%;
}

.product-card .card-image .add-to-cart {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 2;
    background: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    width: max-content;
    visibility: hidden;
    opacity: 0;
}

.product-card .card-image .add-to-cart i {
    margin-inline-end: 5px;
    font-size: 18px;
}

.product-card .content {
    text-align: center;
}

.product-card .price .new-price {
    font-weight: 600;
    color: var(--bs-primary);
    font-size: 18px;
}

.product-card .price .old-price {
    text-decoration: line-through;
    font-size: 14px;
    font-weight: 500;
    margin-inline-start: 8px;
}

.product-card:hover .card-image .add-to-cart {
    top: 50%;
    visibility: visible;
    opacity: 1;
}

.product-tab-section {
    position: relative;
}

.product-tab-section .tabs-navigation-v2.tabs-navigation .nav-tabs .nav-link {
    background: rgba(var(--bs-primary-rgb), 0.05);
    color: var(--bs-body-color);
    border-radius: 30px !important;
    border-color: rgba(var(--bs-primary-rgb), 0.05);
}

.product-tab-section .tabs-navigation-v2.tabs-navigation .nav-tabs .nav-link.active {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-radius: 30px !important;
}

.product-tab-section .tabs-navigation-v2.tabs-navigation .target {
    border-radius: 30px !important;
}

.product-tab-section .shape-area .shape-1 {
    position: absolute;
    top: 0;
    left: 0;
}

.product-tab-section .shape-area .shape-2 {
    position: absolute;
    top: 0;
    right: 0;
}

@media (max-width: 1199.98px) {
    .product-tab-section .shape-area {
        display: none;
    }
}

/*-----------------------------------
  Pricing  Css
-----------------------------------*/
.pricing-section {
    position: relative;
    overflow: hidden;
}

.pricing-section .pricing-card {
    background: #F5F3FB;
    background: var(--bg-color);
    border-radius: 10px;
    text-align: center;
    padding: 40px 30px 34px 30px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-section .pricing-card .pricing-border {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: calc(100% - 30px);
    width: calc(100% - 30px);
    border: 1px solid #fff;
    border-radius: 10px;
}

.pricing-section .pricing-card .price .new-price {
    font-weight: 400;
    color: var(--bs-primary);
    font-size: 24px;
}

.pricing-section .pricing-card .price .old-price {
    text-decoration: line-through;
    font-size: 16px;
    font-weight: 400;
    margin-inline-start: 8px;
}

.pricing-section .pricing-card .add-to-cart {
    background: #fff;
    color: var(--bs-primary);
    border: 1px solid #EAEAEA;
    box-shadow: 0 8px 16px 0 rgba(87, 87, 87, 0.18);
    padding: 10px 20px;
    border-radius: 30px;
    width: max-content;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 35px;
}

.pricing-section .pricing-card .add-to-cart i {
    margin-inline-end: 5px;
    font-size: 18px;
}

.pricing-section .pricing-card:hover {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.pricing-section .shape-area .shape-1 {
    position: absolute;
    top: 0;
    left: 0;
}

.pricing-section .shape-area .shape-2 {
    position: absolute;
    top: 0;
    right: 0;
}

@media (max-width: 1199.98px) {
    .pricing-section .shape-area {
        display: none;
    }
}

/*---- Pricing css end-----*/
/* -----------------------------------------
  Testimonial  CSS
----------------------------------------- */
.testimonial-area {
    position: relative;
    z-index: 1;
    padding-top: 70px;
}

.testimonial-area .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: -1;
}

.testimonial-area .testimonial-slider-area {
    background: #EEEEEE;
    max-width: 700px;
    margin-inline: auto;
    border-radius: 10px;
    position: relative;
    bottom: -130px;
}

.testimonial-area .testimonial-slider-area .second-round {
    max-width: calc(100% - 56px);
    margin-inline: auto;
    transform: translateY(-28px);
    background: #F6F6F6;
    border-radius: 16px;
}

.testimonial-area .testimonial-slider-area .third-round {
    max-width: calc(100% - 56px);
    margin-inline: auto;
    transform: translateY(-28px);
    background: #fff;
    border-radius: 16px;
}

.testimonial-area .testimonial-slider-area .testimonial-slider-wrap {
    max-width: calc(100% - 56px);
    margin-inline: auto;
    transform: translateY(-28px);
    background: #F6F6F6;
    border-radius: 16px;
    overflow: hidden;
}

.testimonial-area .testimonial-item {
    background: #FBF6F3;
    border-radius: 18px;
}

.testimonial-area .testimonial-item .testimonial-item-top {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed var(--bs-primary);
    padding-bottom: 14px;
    padding: 20px;
}

.testimonial-area .testimonial-item .testimonial-item-top .customer-info {
    display: flex;
    gap: 14px;
}

.testimonial-area .testimonial-item .testimonial-item-top .customer-info img {
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-area .testimonial-item .testimonial-item-top .rateing-wrap {
    text-align: center;
}

.testimonial-area .testimonial-item .testimonial-item-top .rateing-wrap .rate {
    margin-left: auto;
    margin-right: auto;
}

.testimonial-area .testimonial-item .testimonial-body {
    padding: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-area .testimonial-item .testimonial-body span.quote {
    position: absolute;
    top: 22px;
    z-index: -1;
}

.testimonial-area .testimonial-item .testimonial-body p {
    font-size: 20px;
    margin-bottom: 0;
}

.testimonial-area .shape-area .shape-1 {
    position: absolute;
    bottom: -130px;
    left: 0;
}

.testimonial-area .shape-area .shape-2 {
    position: absolute;
    bottom: -130px;
    right: 0;
}

.testimonial-area .testimonial-slider-pagination {
    position: absolute;
    bottom: -55px;
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
}

.testimonial-area .swiper-pagination-bullet {
    --size: 16px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--bs-primary);
    position: relative;
    opacity: 1;
}

.testimonial-area .swiper-pagination-bullet::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bs-primary);
    --size: 7px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    visibility: hidden;
    opacity: 1;
}

.testimonial-area .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    visibility: visible;
    opacity: 1;
}

.testimonial-extra-space {
    padding-bottom: 130px;
}

.testimonial-area .testimonial-slider-area .testimonial-slider-wrap{
    height: inherit;
}
.testimonial-slider{
    height: inherit;
}
.testimonial-area .testimonial-slider-area .testimonial-slider-wrap .swiper-wrapper{
    height: 270px !important;
}
 .testimonial-slider {
  transition: height 0.4s ease;
}

@media (max-width: 1199.98px) {
    .testimonial-area .shape-area {
        display: none;
    }
    .testimonial-area .testimonial-slider-area .testimonial-slider-wrap .swiper-wrapper{
        height: auto !important;
    }
}

@media (max-width: 575.98px) {

    .testimonial-area .testimonial-slider-area .second-round,
    .testimonial-area .testimonial-slider-area .third-round,
    .testimonial-area .testimonial-slider-area .testimonial-slider-wrap {
        max-width: 100%;
        transform: translateY(-20px);
    }
}

/* --- Testimonial CSS End --- */
/*-------------------------
  Blog css
---------------------------*/
.section-blog {
    position: relative;
    overflow: hidden;
}

.section-blog .blog-card {
    background: #FBF6F3;
    transition: all 0.3s ease-in-out;
    padding: 14px;
    border-radius: 14px;
}

.section-blog .blog-card .blog-image {
    overflow: hidden;
    border-radius: 10px;
    height: 222px;
}

.section-blog .blog-card .blog-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 400ms ease-out 0s;
}

.section-blog .blog-card .title {
    overflow: hidden;
    background: linear-gradient(to right, var(--bs-primary), var(--bs-primary) 50%, var(--bs-heading-color) 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    background-position: 100%;
    transition: background-position 700ms ease;
}

.section-blog .blog-card .blog-content {
    padding: 15px 0;
}

.section-blog .blog-card .read-more-btn {
    color: var(--bs-primary);
    font-family: var(--bs-heading-font-family);
    font-size: 24px;
}

.section-blog .blog-card .read-more-btn i {
    display: inline-block;
    margin-inline-start: 4px;
    transition: all 0.3s ease;
}

.section-blog .blog-card .read-more-btn:hover i {
    transform: rotate(-45deg);
}

.section-blog .blog-card:hover .blog-image img {
    transform: scale(1.2);
}

.section-blog .blog-card:hover .title {
    background-position: 0 100%;
}

.section-blog .swiper-pagination-bullet {
    --size: 16px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--bs-primary);
    position: relative;
    opacity: 1;
}

.section-blog .swiper-pagination-bullet::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bs-primary);
    --size: 7px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    visibility: hidden;
    opacity: 1;
}

.section-blog .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    visibility: visible;
    opacity: 1;
}

.rateing-wrap .rate {
    position: relative;
    width: 90px;
    height: 13px;
    background: url("../../../../front/images/rating-star.png") repeat-x 0 -13px;
}

.rateing-wrap .rating-icon {
    position: absolute;
    top: 0;
    left: 0;
    height: 13px;
    background: url("../../../../front/images/rating-star.png") repeat-x 0 0;
}

/*# sourceMappingURL=home-page-10.css.map */
