@font-face {
    font-family: "Domine-Bold";
    src: url(../fonts/Domine-Bold.woff2) format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "Domine-Regular";
    src: url(../fonts/Domine-Regular.woff2) format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "Poppins-Medium";
    src: url(../fonts/Poppins-Medium.woff2) format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "Poppins-Regular";
    src: url(../fonts/Poppins-Regular.woff2) format("woff2");
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #348788;
    --primary-light-color: #e6fffb;
    --secondary-color: #fc8530;
    --secondary-light-color: #fdbc46;
    --white-color: #fff;
    --black-color: #000;
    --para-text-color: #383838;
    --transition: 0.3s ease-in;
    --popins-regular: "Poppins-Regular";
    --popins-medium: "Poppins-Medium";
    --domine-bold: "Domine-Bold";
    --domine-regular: "Domine-Regular";
}

html {
    scroll-behavior: smooth;
}

body {
    transition: var(--transition);
    color: var(--para-text-color);
    font-family: var(--popins-regular);
}

img {
    max-width: 100%;
    height: auto;
    transition: var(--transition);
}

svg {
    width: 30px;
    transition: var(--transition);
}

a,
button {
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    color: var(--primary-color);
}

i {
    transition: var(--transition);
}

p {
    color: var(--para-text-color);
    transition: var(--transition);
    line-height: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    transition: var(--transition);
}

h1 {
    font-size: 2.5rem;
    text-transform: capitalize;
}

h2 {
    font-size: 2rem;
    text-transform: capitalize;
}

h3 {
    font-size: 1.75rem;
    text-transform: capitalize;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

ul {
    list-style: none;
    margin: 1em 0;
    padding-left: 0;
}

li {
    margin-bottom: 0.5rem;
}

::selection {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.sticky .logo-wrapper img {
    max-width: 70px;
}

.sticky .wrapper {
    padding: 4px 0;
}

.modal-content .btn-close {
    right: -7px;
    position: absolute;
    background-color: #0069ff;
    opacity: 1;
    filter: invert(1);
    border-radius: 50%;
    padding: 2px;
    z-index: 8;
    border: 5px solid #0069ff;
    top: -5px;
}

.fs-10 {
    font-size: 0.9rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: unset;
}

.form-control {
    padding: 10px 20px;
    border-radius: 50px;
}

.input-wrapper {
    margin-bottom: 20px;
}

.container {
    max-width: 1280px;
}

.swiper-container {
    overflow: hidden;
}

.button-style1 {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 8px 22px;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    text-transform: capitalize;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.button-style1:hover {
    background-color: var(--black-color);
    color: var(--white-color);
    border: 1px solid var(--black-color);
    transform: scale(1.03) translateY(-1px);
}

.button-style3 {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 8px 22px;
    border: 1px solid var(--secondary-color);
    border-radius: 30px;
    text-transform: capitalize;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.button-style3:hover {
    background-color: var(--black-color);
    color: var(--white-color);
    border: 1px solid var(--black-color);
    transform: scale(1.03) translateY(-1px);
}

ul.dropdown-menu {
    padding: 0;
    border-radius: 0;
    border: 0;
    display: none;
    background-color: var(--primary-color);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.section-padding {
    padding: 5rem 0;
}

.section-heading .title {
    font-size: 2.6rem;
    color: var(--black-color);
    font-family: var(--domine-bold);
    text-transform: capitalize;
}

.section-heading .subtitle {
    text-transform: uppercase;
    color: var(--primary-color);
    position: relative;
}

.primary-text {
    color: var(--primary-color);
}

.header.sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    animation: slidetop 0.5s linear;
    box-shadow: 1px 2px 3px #0000001c;
    background-color: var(--white-color);
}

@keyframes slidetop {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0%);
    }
}

.toggle-menu {
    display: none;
}

nav.breadcrum-area {
    padding: 70px;
    position: relative;
}

nav.breadcrum-area:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: linear-gradient(45deg, #e6fffb, #e6fffb);
    height: 100%;
    z-index: 0;
}

nav.breadcrum-area h2 {
    position: relative;
    font-family: var(--domine-bold);
    color: var(--black-color);
    z-index: 2;
}

nav.breadcrum-area ul.breadcrumb {
    position: relative;
    z-index: 2;
}

.blog-page .blog-wrapper article.blog {
    margin-top: 20px;
}

nav.breadcrum-area ol {
    position: relative;
    z-index: 1;
    background-color: rgb(242 242 242 / 62%);
    padding: 7px 26px;
    width: max-content;
    border: 1px solid #e8e8e80a;
    backdrop-filter: blur(10px);
    z-index: 2;
}

nav.breadcrum-area ol li {
    margin-bottom: 0;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-wrapper .form-control {
    border-radius: 30px;
    padding: 10px 20px;
}

.search-wrapper .search-btn {
    position: absolute;
    right: 0;
    border: 0;
    color: var(--white-color);
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 10px;
    width: 44px;
}

#goToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 20px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
    cursor: pointer;
    padding: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 16px;
}

#goToTopBtn:hover {
    background-color: var(--secondary-color);
}

.header {
    background-color: #348788;
}

.header .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.header .wrapper .navigation ul {
    display: flex;
    align-items: center;
    gap: 0 20px;
    margin: 0;
}

nav.navigation li a {
    font-family: var(--popins-medium);
    font-size: 0.95rem;
    color: #000;
    text-transform: uppercase;
}

nav.navigation li a:hover,
nav.navigation li a.active {
    color: #000;
}

.header-actions>a span {
    position: absolute;
    right: -4px;
    top: -4px;
    background-color: #eb0000;
    color: var(--white-color);
    padding: 0 7px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
}

.header-actions>a {
    padding: 7px;
    border-radius: 50%;
    background-color: #05bbbd;
    width: 45px;
    height: 45px;
    text-align: center;
    align-content: center;
    margin-left: 10px;
    position: relative;
}

.header-actions a i {
    color: var(--white-color);
    line-height: 30px;
}

.header .wrapper .navigation ul li {
    margin-bottom: 0;
}

.logo-wrapper img {
    max-width: 100px;
}

.hero-section .wrapper {
    display: flex;
    align-items: end;
    gap: 20px;
    justify-content: space-between;
}

.hero-section .wrapper .content-area .subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-family: var(--domine-regular);
    margin-bottom: 14px;
}

.hero-section .wrapper .content-area .title {
    font-size: 3rem;
    color: var(--black-color);
    font-family: var(--domine-bold);
    margin-bottom: 16px;
}

.hero-section .wrapper .content-area p {
    color: var(--para-text-color);
}

.hero-section .wrapper .content-area {
    width: 65%;
    padding-right: 30px;
}

.hero-section .wrapper .image-area {
    position: relative;
    width: 35%;
    text-align: center;
	margin-top: 35px;
}

.hero-section .wrapper .image-area .main-image {
    border-radius: 40% 40px 40% 0;
    position: relative;
    width: 350px;
    height: 400px;
    object-fit: cover;
}

.hero-section .wrapper .image-area .flower-image {
    position: absolute;
    left: -146px;
    top: 40px;
    z-index: 0;
    animation: moveUpDown 3s ease-in-out infinite;
}

@keyframes moveUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-section .wrapper .image-area .main-image {
    transition: transform 0.5s ease, filter 0.5s ease;
}

.hero-section .wrapper .image-area:hover .main-image {
    transform: scale(1.1) rotateY(180deg);
    filter: brightness(1.2);
}

.side-image-wrapper {
    position: relative;
    text-align: center;
}

.hero-section .wrapper .content-area .button-style1 {
    margin-bottom: 20px;
}

.side-image-wrapper .flower-image {
    position: absolute;
    left: -63px;
    top: 40px;
    z-index: 0;
    animation: moveUpDown 3s ease-in-out infinite;
    width: 300px;
}

.hero-section {
    background-color: var(--primary-light-color);
    border-radius: 0 0 50% 50%;
    padding-bottom: 12rem;
}

.side-image-wrapper img.main-image {
    position: relative;
    border-radius: 40% 40px 40% 0;
    max-height: 350px;
    width: 300px;
}

.about-section {
    position: relative;
    overflow-x: hidden;
    padding-bottom: 10rem;
    background-color: var(--primary-light-color);
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-section::after {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 0 0 50% 50%;
    background-color: var(--white-color);
    clip-path: circle(100% at 45% 0);
    z-index: 0;
}

.about-section img.about-book-image {
    position: absolute;
    right: -76px;
    top: -12px;
    width: 200px;
    opacity: 100%;
}

.intresting-section {
    background-color: var(--primary-light-color);
/*     background-image: url(../images/book-hand-bg.png); */
    background-repeat: no-repeat;
    background-position: right;
    background-size: 300px;
    background-blend-mode: hard-light;
}

.intresting-section .product-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
}

.intresting-section .product-wrapper article {
    width: 24%;
    border-radius: 40px 40% 20px 30px;
    max-height: 350px;
    height: 350px;
    text-align: center;
    position: relative;
    background-size: cover;
    min-height: 300px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
    overflow: hidden;
    transition: transform 0.5s ease, filter 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    background-position: 25% 25%;
}

.intresting-section .product-wrapper article::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #289986, #0ad5b2);
    z-index: 0;
    transition: var(--transition);
    opacity: 0%;
}

.intresting-section .product-wrapper article:hover::after {
    width: 100%;
    height: 100%;
    opacity: 74%;
}

.side-image-wrapper:hover img.main-image {
    transform: scale(1.1) rotateY(180deg);
    filter: brightness(1.2);
}

.intresting-section .wrapper ul.nav li button {
    font-size: 1.1rem;
    border: 0;
    text-transform: uppercase;
    font-family: var(--domine-regular);
    margin: 8px;
    transition: var(--transition);
    background-color: unset;
    color: var(--black-color);
}

.intresting-section .wrapper ul.nav li button::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.intresting-section .wrapper ul.nav li button.active::after,
.intresting-section .wrapper ul.nav li button:hover::after {
    width: 100%;
}

.intresting-section .product-wrapper article .product-search {
    background-color: var(--white-color);
    border-radius: 50%;
    padding: 10px;
    display: inline-block;
    width: 40px;
    height: 40px;
}

.product-label {
    position: absolute;
    left: 20px;
    top: 20px;
    padding: 3px 10px 0 10px;
    font-size: 0.85rem;
    z-index: 2;
}

.new-item {
    background-color: var(--black-color);
    color: var(--white-color);
}

.popular-item {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.trending-item {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.intresting-section .product-wrapper article .product-add-to-cart {
    color: var(--white-color);
}

.intresting-section .product-wrapper article .product-name {
    font-size: 1.3rem;
    color: var(--white-color);
    margin-bottom: 12px;
}

.intresting-section .product-wrapper article .product-price {
    color: var(--white-color);
    margin-top: 10px;
    font-size: 1.1rem;
}

.original-price {
    transition: var(--transition);
}

.intresting-section .product-wrapper article .product-search,
.intresting-section .product-wrapper article .product-name,
.intresting-section .product-wrapper article .product-price,
.intresting-section .product-wrapper article .product-add-to-cart {
    opacity: 0;
    transform: translateX(-20px);
}

.intresting-section .product-wrapper article:hover .product-search,
.intresting-section .product-wrapper article:hover .product-name,
.intresting-section .product-wrapper article:hover .product-price,
.intresting-section .product-wrapper article:hover .product-add-to-cart {
    position: relative;
    z-index: 2;
    transform: translateX(0px);
    opacity: 1;
}

.experties .content-area {
    padding-right: 60px;
}

.experties-wrapper {
    margin-top: 30px;
}

.experties-wrapper .progress {
    margin: 13px 0;
    border-radius: 0;
}

.experties-wrapper .progress .progress-bar {
    background: linear-gradient(to right, #5ff7dd, #169b85);
    text-align: right;
    padding-right: 5px;
}

.tesitmonial-section {
    background-image: url(../images/testimonial-bg.jpg);
    background-size: cover;
    background-color: #000000c7;
    background-blend-mode: hue;
}

.testimonial-slider .swiper-slide {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 30px 20px 20% 0;
    text-align: right;
}

.testimonial-slider .swiper-slide i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: absolute;
    right: 30px;
    top: 20px;
}

.testimonial-slider .swiper-slide:hover .info img {
    transform: scale(1.05);
}

.testimonial-slider .swiper-slide>p {
    text-align: left;
    margin-top: 40px;
}

.testimonial-slider .swiper-slide p {
    text-align: left;
}

.testimonial-slider .swiper-slide .info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-slider .swiper-slide .info img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
}

.testimonial-slider .swiper-slide .info p {
    margin-bottom: 0;
}

.testimonial-slider .swiper-slide .info h5 {
    margin-bottom: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.gallery-wrapper {
    margin-top: 30px;
}

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

.gallery-section {
    position: relative;
}

.gallery-section .container {
    position: relative;
    z-index: 2;
}

.gallery-section::after {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 0 0 50% 50%;
    background-color: var(--primary-light-color);
    clip-path: circle(100% at 45% 0);
    z-index: 0;
}

.gallery-section::before {
    content: "";
    left: 0;
    bottom: -23px;
    width: 100%;
    height: 50%;
    position: absolute;
    border-radius: 0 0 50% 50%;
    background-color: var(--primary-light-color);
    clip-path: circle(100% at 45% 0);
    z-index: 0;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-grid a {
    width: 32%;
}

.gallery-grid a img {
    width: 100%;
    height: 410px;
    object-fit: cover;
}

.blog-section {
    position: relative;
}

.blog-section::before {
    content: "";
    left: 0;
    bottom: -216px;
    width: 100%;
    height: 32%;
    position: absolute;
    border-radius: 0 0 50% 50%;
    background-color: var(--white-color);
    clip-path: circle(100% at 45% 0);
    z-index: 0;
}

.blog-wrapper article.blog img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.blog-wrapper article.blog:hover img {
    transform: scale(1.1) rotate(3deg);
}

.blog-wrapper article.blog>a {
    display: inline-block;
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100%;
    margin-bottom: 20px;
}

.blog-wrapper article.blog>a::after {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 10px;
    background-color: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
}

.blog-wrapper article.blog:hover>a::after {
    opacity: 0.7;
}

span.blog-date {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.blog-wrapper article.blog h4 a {
    font-size: 1.3rem;
    color: var(--black-color);
    font-family: var(--domine-bold);
    line-height: 2rem;
}

.blog-wrapper article.blog:hover h4 a {
    color: var(--primary-color);
}

.blog-section .blog-wrapper {
    margin-top: 30px;
}

.blog-wrapper article.blog p {
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.newsletter {
    background-image: url(../images/newsletter-bg.jpg);
    background-size: cover;
    background-color: #000000c7;
    background-blend-mode: hue;
    background-position: bottom;
    padding: 3rem;
    border-radius: 30px 30px 50px 0;
    position: relative;
    margin-bottom: 50px;
}

.newsletter .row {
    position: relative;
    z-index: 2;
}

.newsletter::after {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 30px 30px 50px 0;
    background-color: var(--primary-color);
    opacity: 0.8;
    z-index: 0;
}

.button-style2 {
    display: inline-block;
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 8px 22px;
    border: 1px solid var(--black-color);
    border-radius: 30px;
    text-transform: capitalize;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.button-style2:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.newsletter .button-style2 {
    padding: 14px 28px;
}

ul.social-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

ul.social-links li {
    transition: var(--transition);
}

ul.social-links li a {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 7px;
    border-radius: 50%;
    width: 38px;
    text-align: center;
}

ul.social-links li:hover {
    transform: translateY(-3px);
}

ul.social-links li:hover a {
    background-color: var(--white-color);
}

ul.social-links li:hover a i {
    color: var(--primary-color);
}

.footer-logo-area img {
    margin-bottom: 25px;
    width: 65%;
}

.footer-logo-area img:hover {
    transform: translateX(3px);
}

.footer-contact ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--para-text-color);
}

.footer-contact ul li:hover a {
    color: var(--primary-color);
}

.footer-contact ul li {
    margin-bottom: 20px;
}

.footer-contact ul li a i {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 10px;
    border-radius: 50%;
    min-width: 35px;
    text-align: center;
}

.footer-contact ul li:hover a i {
    transform: translateY(-3px);
}

.copyright-area p {
    color: #626262;
}

.copyright-area {
    border-top: 1px solid #cccccc;
    padding-top: 18px;
    margin-top: 18px;
}

.copyright-area .app-area a {
    margin-left: 10px;
}

.copyright-area .app-area a:hover {
    transform: translateY(-3px);
}

.footer-links {
    padding-left: 30px;
}

.footer h4 {
    font-family: var(--domine-bold);
    margin-bottom: 20px;
    color: var(--black-color);
}

.footer-links ul li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.footer-links ul li::after {
    position: absolute;
    content: "";
    top: 9px;
    left: 0px;
    width: 11px;
    height: 9px;
    background-color: var(--primary-color);
    clip-path: polygon(12% 46%, 0 0, 100% 42%, 0 100%);
    transition: var(--transition);
}

.footer-links ul li:hover::after {
    transform: translateX(5px);
}

.footer-links ul li a {
    color: var(--para-text-color);
    text-transform: uppercase;
}

.footer-links ul li:hover a {
    color: var(--primary-color);
}

.blog-page.blog-section::before {
    bottom: -125px;
    height: 15%;
}

.active>.page-link,
.page-link.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.page-link {
    color: var(--primary-color);
}

section.breadcrum-area {
    position: relative;
}

.breadcrum-area img.flower-image {
    position: absolute;
    right: 4%;
    top: 0;
    width: 150px;
    animation: moveUpDown 3s ease-in-out infinite;
}

a.user-login-btn>div {
    margin-top: 8px;
    font-size: 0.9rem;
}

.header-actions {
    display: flex;
    align-items: center;
}

.user-login-btn {
    padding: 7px;
    border-radius: 50%;
    background-color: #05bbbd;
    width: 45px;
    height: 45px;
    cursor: pointer;
    text-align: center;
    align-content: center;
    margin-left: 10px;
    position: relative;
}

.user-login-btn i {
    color: var(--white-color);
}

.user-name-toggle {
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 55px;
    z-index: 99;
    text-align: left;
    transform: translate(-50%, 0%);
}

.user-name-toggle a {
    display: inline-block;
    width: 100%;
    padding: 5px 20px;
    border-bottom: 1px solid #eee;
}

.blog-details-section .main-image {
    text-align: center;
    margin-bottom: 20px;
}

.blog-details-section .main-image .image-container {
    position: relative;
    display: inline-block;
    border-radius: 5px;
    overflow: hidden;
}

.blog-details-section .main-image .image-container img {
    display: block;
    width: 100%;
    border-radius: 5px;
}

.blog-details-section .main-image .image-container::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    transition: height 600ms linear, background-color 600ms linear;
}

.blog-details-section .main-image .image-container:hover::after {
    height: 250%;
    background-color: transparent;
}

.blog-details-section .main-image .info ul {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.blog-details-section .main-image .info ul li {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 5px 14px;
    border-radius: 50px;
}

.blog-details-section h1 {
    color: var(--primary-color);
    font-family: var(--domine-bold);
    margin-bottom: 20px;
}

.blog-details-section h2,
.blog-details-section h3,
.blog-details-section h4 {
    color: var(--primary-color);
    margin-top: 28px;
}

.blog-details-section .content ul li::marker {
    display: none;
}

.blog-details-section .content img {
    border-radius: 5px;
    margin: 10px;
    max-height: 400px;
    object-fit: contain;
    width: 48%;
}

.blog-details-section .content img:hover {
    transform: scale(1.03);
}

.comments {
    background-color: #eeeeee59;
}

.comments-wrapper .item {
    border: 1px solid #eee;
    margin-top: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.comments-wrapper .item p {
    margin-bottom: 0;
}

.comments-wrapper .item .user {
    width: 200px;
}

.comments-wrapper .item .user img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 10px;
}

.comments-wrapper .item .user h4 {
    font-size: 1.3rem;
    margin-bottom: 0;
}

.add-comment {
    max-width: 600px;
}

.log-page {
    background-image: url(../images/testimonial-bg.jpg);
    background-repeat: no-repeat;
    background-position: bottom center;
    height: 100%;
    min-height: 100vh;
    background-color: #000000cc;
    background-blend-mode: darken;
}

.log-page .container {
    height: 100%;
    min-height: 100vh;
}

.log-page .container .row {
    height: 100%;
    min-height: 100vh;
}

.log-page .text-area {
    color: var(--white-color);
    text-align: center;
}

.log-page .text-area img {
    margin-bottom: 20px;
    animation: flip 2s linear infinite;
}

@keyframes flip {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.log-page .form-area {
    background-color: var(--white-color);
    padding: 40px;
    margin: 0 40px;
}

.log-page .form-area h4 {
    font-size: 2rem;
    color: var(--black-color);
    font-family: var(--domine-bold);
}

.wrapper-area {
    display: flex;
    justify-content: center;
    align-items: center;
}

.password-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 55%;
    right: 20px;
    transform: translateY(-50%);
    cursor: pointer;
}

.thankyou .container img {
    max-width: 200px;
    animation: none;
    position: unset;
}

.thankyou img {
    position: absolute;
    right: 0;
    width: 200px;
}

.thankyou {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thankyou h1 {
    color: var(--secondary-color);
    font-size: 4rem;
}

.thankyou .image-wrapper img:first-of-type {
    left: 20px;
    top: 20px;
    animation: moveUpDown 3s ease-in-out infinite;
}

.thankyou .image-wrapper img:nth-of-type(2) {
    right: 20px;
    animation: moveUpDown 3s ease-in-out infinite;
    bottom: 20px;
}

.thankyou .image-wrapper img:nth-of-type(3) {
    top: 20px;
    right: 20px;
    animation: moveUpDown 3s ease-in-out infinite;
}

.thankyou .image-wrapper img:nth-of-type(4) {
    left: 20px;
    animation: moveUpDown 3s ease-in-out infinite;
    bottom: 20px;
}

.thankyou .wrapper {
    padding: 40px;
    box-shadow: 1px 2px 3px #eee, -1px -1px 3px #eee;
    background-color: #fff;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.about-page.about-section::after {
    display: none;
}

.about-section.about-page img.about-book-image {
    top: 69%;
    width: 180px;
}

.mission-vission .inner {
    background-color: var(--white-color);
    border-radius: 100px 50px 50px 10px;
    position: relative;
}

.mission-vission .inner .image-area img {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    top: -70px;
    left: -18px;
    border: 14px solid var(--primary-light-color);
}

.mission-vission .inner .content-area {
    padding: 30px;
    padding-top: 170px;
}

.mission-vission .inner .content-area h3 {
    color: var(--primary-color);
    font-family: var(--domine-regular);
}

.mission-vission .inner:hover .image-area img {
    transform: scale(1.01) rotateY(180deg);
}

.about-section.about-page {
    background-color: var(--white-color);
    padding-bottom: 7rem;
}

.join-us .last-image img {
    position: absolute;
    right: -34px;
    top: 0;
    animation: moveUpDown 3s ease-in-out infinite;
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.join-us .first-image img {
    position: absolute;
    bottom: 0;
    left: 0;
    animation: moveUpDown 3s ease-in-out infinite;
    width: 200px;
    object-fit: cover;
    height: 200px;
}

.join-us .container {
    position: relative;
    z-index: 2;
}

.join-us::after {
    content: "";
    left: 0;
    bottom: -82px;
    width: 100%;
    height: 40%;
    position: absolute;
    border-radius: 0 0 50% 50%;
    background-color: var(--white-color);
    clip-path: circle(100% at 45% 0);
    z-index: 0;
}

.team-wrapper {
    margin-top: 20px;
}

.team-wrapper .image-area img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-wrapper .inner:hover .image-area img {
    transform: scale(1.03) rotate(3deg);
}

.team-wrapper .image-area {
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.team-wrapper .image-area::after {
    content: "";
    position: absolute;
    width: 300%;
    height: 0%;
    left: 50%;
    top: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) rotate(-45deg);
    transition: all 0.5s linear;
    z-index: 1;
}

.team-wrapper .image-area:hover:after {
    height: 250%;
    background: transparent;
}

.team-wrapper .title {
    text-align: center;
    color: var(--primary-color);
    font-family: var(--domine-regular);
    padding: 10px;
}

.team-wrapper .inner {
    box-shadow: 1px 2px 3px #eee;
    border-radius: 0 05px 5px;
    margin-top: 27px;
}

.gallery-section.gallery-page::after {
    display: none;
}

section.map iframe {
    height: 350px;
}

.contact-section .form-area {
    padding: 30px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 5px;
    background-color: var(--white-color);
}

.contact-section .title {
    font-size: 2rem;
}

.contact-section .subtitle {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-section .info-area {
    padding: 30px;
}

.contact-section .info-area .info-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.contact-section .info-area .info-item .info-icon {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-section .info-area .info-item:hover i {
    transform: scaleX(-1);
}

.contact-section .info-area .info-item i {
    background-color: var(--secondary-color);
    color: var(--white-color);
    border-radius: 50%;
    padding: 10px;
    min-width: 36px;
    text-align: center;
    margin-bottom: 10px;
}

.contact-section .info-area .info-item a {
    font-size: 1.2rem;
}

.shop-bar-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop-bar-info p {
    margin-bottom: 0;
}

.shop-bar-info {
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 5px;
}

.form-select:focus {
    box-shadow: unset;
}

.form-select option {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.shop-category-section aside {
    padding: 40px 30px 40px 0;
    border-right: 1px solid #eeeeee;
    position: sticky;
    top: 12%;
}

.shop-category-section aside .sidebar-title {
    color: var(--primary-color);
    font-family: var(--domine-regular);
    margin: 10px 0;
}

.shop-category-section aside .item li {
    margin-bottom: 0;
}

.shop-category-section aside .item {
    margin-bottom: 20px;
    box-shadow: 1px 2px 3px #eee, -1px -1px 3px #eee;
    padding: 20px;
    border-radius: 5px;
}

.shop-category-section aside .item li a {
    width: 100%;
    color: var(--para-text-color);
    padding: 8px;
    border-bottom: 1px solid #eee;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: unset;
}

.shop-category-section aside .item li.active a,
.shop-category-section aside .item li a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 5px;
}

.shop-grid .item {
    box-shadow: 3px 3px 3px 1px #eee;
    margin: 20px 0 0 0;
}

.shop-grid .item .image-area {
    position: relative;
}

.shop-grid .item .image-area i {
    position: absolute;
    right: 16px;
    top: 16px;
    background-color: var(--white-color);
    border-radius: 50%;
    padding: 10px;
}

.shop-grid .item .info-area {
    padding: 30px;
    text-align: center;
}

.shop-grid .item .image-area img {
    width: 100%;
    height: 280px;
    object-fit: contain;
}

ins.sale-price {
    text-decoration: none;
}

.shop-grid .item .info-area .product-price {
    margin: 10px 0;
}

.product-rating i {
    color: #ffa808;
}

.cart-header .cart-progress-bar {
    position: relative;
}

.cart-progress-bar span {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.cart-progress-bar .progress-car {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 26px;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 2.5px;
    background-color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-progress-bar {
    height: 4px;
    width: 100%;
    background-color: var(--para-text-color);
    position: relative;
    margin-top: 14px;
    margin-bottom: 10px;
    height: 4px;
}

.cart-progress-msg {
    margin-top: 18px;
    padding-bottom: 18px;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

#cart-sidebar .offcanvas-header {
    border-bottom: 1px solid #eee;
}

#cart-sidebar .wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

#cart-sidebar .wrapper .cart-footer .item {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cart-footer .button-area {
    border-top: 1px solid #Eee;
}

.cart-footer .button-area a {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.cart-footer>.item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-footer .item h5 {
    font-size: 1.2rem;
}

#cart-sidebar .wrapper .empty-item {
    text-align: center;
}

#cart-sidebar .wrapper .item {
    display: flex;
    gap: 10px;
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

#cart-sidebar .wrapper .item img {
    width: 90px;
    height: 70px;
    object-fit: cover;
}

#cart-sidebar .wrapper .item .product-title {
    font-size: 1.2rem;
    margin-bottom: 0;
}

#cart-sidebar .wrapper .item .product-remove {
    position: absolute;
    right: 8px;
    top: 0;
    background-color: var(--secondary-color);
    border-radius: 50%;
    padding: 0px 6px 0px 6px;
}

#cart-sidebar .wrapper .item .product-remove i {
    color: var(--white-color);
    font-size: 0.9rem;
}

.quantity {
    display: flex;
    align-items: center;
}

.quantity input[type="button"] {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white-color);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity input[type="number"] {
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 16px;
    border: 1px solid #dddddd;
    padding-left: 10px;
}

#cart-sidebar .quantity input[type="button"] {
    width: 20px;
    height: 20px;
    line-height: 20px;
}

#cart-sidebar .quantity input[type="number"] {
    width: 40px;
    height: 20px;
    font-size: 12px;
}

#cart-sidebar .wrapper .cart-body {
    height: 350px;
    overflow-y: auto;
}

.product-details .product-price {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.product-details .product-price .original-price {
    color: #8d8d8d;
    font-size: 1.2rem;
}

.cart-item .cart-item_product img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

td.cart-item_product {
    display: flex;
    gap: 10px;
    position: relative;
}

.table-page-cart tr td {
    padding: 12px;
}

td.cart-item_product span.remove-cart {
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

td.cart-item_product .cart-title.link {
    font-size: 1.3rem;
}

.shopping-cart .cart-side-info {
    border: 1px solid #dee2e6;
    padding: 20px;
}

.shopping-cart .cart-side-info .items {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    margin: 12px 0;
}

.shopping-cart .cart-side-info h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.shopping-cart .cart-side-info .items h5 {
    font-size: 1rem;
}

.shopping-cart .cart-side-info .items.total h5 {
    font-weight: bold;
}

.checkout h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: var(--domine-bold);
}

.checkout .form-control,
.checkout .form-select {
    border-radius: 5px;
    margin-top: 4px;
    padding: 8px 20px;
}

.order-review-wrapper {
    padding: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 5px 20px 0px;
}

.order-review-wrapper .order-review .item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.order-review-wrapper .order-review .item h4 {
    font-size: 1.2rem;
}

.order-review-wrapper .order-review .product-list {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.testimonial-slider .swiper-slide:hover i {
    transform: scaleX(-1);
}

.product-price {
    transition: var(--transition);
}

.order-review-wrapper .order-review .product-list span {
    width: 140px;
    text-align: right;
}

.payment-method .form-check {
    background-color: var(--primary-light-color);
    padding: 14px;
    padding-left: 38px;
    margin-bottom: 10px;
}


.tracking-area {
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.tracking-area .form-control {
    width: 66%;
}

.tracking-area .button-style3 {
    border-radius: 2px;
    padding: 11px 30px;
    margin-left: 8px;
}

.tracking-info-detail {
    position: relative;
    margin-top: 40px;
}

.tracking-info-detail .tracking-box {
    position: relative;
}

.tracking-info-detail .tracking-box .tracking-time-box {
    position: relative;
    margin-right: 30px;
    display: inline-block;
}

.tracking-info-detail .tracking-box .tracking-time {
    position: relative;
    color: #222222;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

.tracking-info-detail .tracking-box span {
    position: relative;
    font-size: 14px;
    color: #777777;
}

.tracking-info-detail .tracking-box .tracking-location {
    position: relative;
    font-size: 14px;
    color: #777777;
    padding-left: 70px;
    padding-bottom: 40px;
    display: inline-block;
}

.tracking-info-detail .tracking-box .tracking-location:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 1px;
    height: 100%;
    background-color: #d6d6d6;
}

.tracking-info-detail .tracking-box .tracking-location strong {
    position: relative;
    color: #222222;
    font-size: 16px;
    font-weight: 400;
    display: block;
    font-family: 'Montserrat', sans-serif;
}

.tracking-info-detail .tracking-box .tracking-location:after {
    position: absolute;
    content: '';
    left: -16px;
    top: -2px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #01a95a;
    display: inline-block;
}

.tracking-info-detail .tracking-box .tracking-location.style-two::after {
    background-color: #4dcefe;
}

.tracking-info-detail .tracking-box .tracking-location.style-three::after {
    background: #ffffff;
    border: 1px solid #d6d6d6;
}

.tracking-info-detail .tracking-box .tracking-location .dott {
    position: absolute;
    content: '';
    left: -3px;
    top: 11px;
    width: 9px;
    height: 9px;
    z-index: 1;
    border-radius: 50%;
    background-color: #d6d6d6;
}

.tracking-info-detail .tracking-box:last-child .tracking-location {
    padding-bottom: 0px;
}

.tracking-info-detail .tracking-box:last-child .tracking-location:before {
    display: none;
}

.order-tracking h3 {
    color: var(--primary-color);
    font-family: var(--domine-bold);
}


.dashboard-wrapper {
    display: flex;
    width: 100%;
}

.dashboard-wrapper .user-sidebar {
    width: 25%;
    background-color: var(--primary-color);
    border-radius: 4px;
}

.dashboard-wrapper .user-details {
    width: 75%;
    padding: 0 20px;
}

.dashboard-wrapper .nav-pills .nav-link.active,
.dashboard-wrapper .nav-pills .show>.nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: #02816b;
    border-radius: 0;
}

.saved-address .radio-inputs label .address span {
    display: block;
    margin-bottom: 8px;
}

.dashboard-wrapper .nav-pills .nav-link {
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-wrapper .nav-pills .nav-link svg {
    width: 25px;
}

.dashboard-wrapper .tab-pane .inner h4 {
    font-size: 2rem;
    font-family: var(--domine-bold);
    color: var(--primary-color);
}

.saved-address .radio-inputs label .address span i {
    color: var(--primary-color);
    margin-right: 6px;
}

button.button-style1 svg {
    width: 22px;
}

.shipping-address form {
    padding: 30px 0;
}

.shipping-address form .input-wrapper {
    margin-bottom: 20px;
}

.saved-address .radio-inputs label {
    width: 400px;
    padding: 15px;
    border: 1px solid #eee;
    margin: 10px;
    border-radius: 5px;
}

.dashboard-wrapper svg {
    width: 20px;
    margin-right: 10px;
}

.dashboard-wrapper h6 {
    text-transform: none;
}

.saved-address .radio-inputs label span.radio-label {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
}

.saved-address .radio-inputs label h5 {
    font-size: 1.3rem;
    margin-bottom: 0;
}

.saved-address .radio-inputs label .address {
    padding: 10px;
    font-size: 1rem;
}

.modal .input-wrapper {
    margin-bottom: 14px;
}

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

.dashboard-wrapper .condition .nav-link {
    background-color: #777777;
    margin-right: 10px;
    border-radius: 30px;
    color: var(--white-color);
}

.dashboard-wrapper .condition .nav-link.active {
    background-color: var(--primary-color);
}

.orders-wrapper .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-block: 1px solid #eee;
    padding-block: 10px;
    gap: 10px;
}

.orders-wrapper .item p {
    margin-bottom: 0;
}

.orders-wrapper .item img {
    width: 200px;
    border-radius: 5px;
}

.more-btn {
    border-radius: 30px;
    padding: 4px 10px;
    border: 1px solid #dedede;
}

.modal-content {
    padding: 0.5rem;
}

.modal .division-lines {
    width: 100%;
    position: relative;
    display: block;
    text-align: center;
}

.modal .division-lines::before {
    content: "";
    width: 30%;
    height: 1px;
    background: #e0e0e0;
    position: absolute;
    top: 8px;
    right: 0;
    margin: auto;
}

.modal .division-lines::after {
    content: "";
    width: 30%;
    height: 1px;
    background: #e0e0e0;
    position: absolute;
    top: 8px;
    left: 0;
    margin: auto;
}

.star-rating {
    display: flex;
    cursor: pointer;
}

.star {
    font-size: 2rem;
    color: #ccc;
    /* Gray for unselected stars */
    transition: color 0.3s ease;
}

.star.selected,
.star:hover,
.star:hover~.star {
    color: #ffc107;
    /* Yellow for selected stars */
}
.wishlist-wrapper img {
    width: 175px;
    height: 100px;
    object-fit: cover;
}
.wishlist-wrapper table tr {
    vertical-align: middle;
}

.artist-register{
    background-image: url(../images/artist-transparent.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
}

.booking-details .saved-address .radio-inputs label {
    width: 46%;
    min-width: 300px;
}
.booking-details .saved-address .radio-inputs label .change-address {
    right: 17px;
}
.booking-details .saved-address .radio-inputs label {
    width: 100%;
}
.order-item-wrapper .top-item {
    display: flex;
    justify-content: space-between;
    padding: 13px;
    text-align: center;
    align-items: center;
    background-color: #e8fffb;
    border-radius: 10px 10px 0 0;
}

.order-item-wrapper .bottom-item img {
    width: 240px;
    border-radius: 5px;
    margin: 10px;
}
.order-item-wrapper .bottom-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.order-item-wrapper .bottom-item .info {
    display: flex;
    align-items: center;
}
.order-item-wrapper {
    margin-top: 10px;
    border: 1px solid #eee;
    border-radius: 10px;
}

/* ========== Media Queries ========== */

@media screen and (max-width: 991px) {
    .toggle-menu {
        display: inline-block;
    }

    .navbar-wrapper {
        order: 3;
    }

    .navbar-wrapper nav {
        display: none;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    h5 {
        font-size: 1rem;
    }

    h6 {
        font-size: 0.875rem;
    }
}


/* ========== Media Queries ========== */

@media screen and (max-width: 1200px) {
    .gallery-grid a {
        min-width: 350px;
    }
}


@media screen and (max-width: 1080px) {
    .toggle-menu {
        display: inline-block;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .header nav.navigation {
        display: none;
    }

    .btn-close {
        background-color: #db4646;
        opacity: 1;
        border-radius: 50%;
        filter: invert(1);
    }

    .offcanvas ul li {
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }

    .offcanvas ul li a {
        width: 100%;
    }
}


@media screen and (max-width: 1025px) {
    .related-products .wrapper .item {
        width: 48% !important;
    }
}


@media screen and (max-width: 991px) {

    .navbar-wrapper {
        order: 3;
    }

    .experties .content-area {
        padding-right: 0;
    }

    .experties {
        overflow: hidden;
    }

    .blog-wrapper article.blog img {
        height: auto;
    }

    .section-heading .title {
        font-size: 2rem;
    }
    
    .dashboard-wrapper {
    flex-wrap: wrap;
}
.dashboard-wrapper .user-sidebar {
    width: 100%;
    margin-bottom: 30px;
    margin-right: 0!important;
}

    .about-section {
        padding-bottom: 0;
    }

    .side-image-wrapper {
        margin-bottom: 30px;
    }

    .side-image-wrapper .flower-image {
        left: 50%;
    }

    .navbar-wrapper nav {
        display: none;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    h5 {
        font-size: 1rem;
    }

    h6 {
        font-size: 0.875rem;
    }

    .side-image-wrapper {
        margin-top: 40px;
    }

    .blog-wrapper .blog {
        margin-bottom: 40px;
    }

    .copyright-area {
        text-align: center;
    }

    .about-section.about-page {
        padding-bottom: 4rem;
    }

    .join-us img {
        display: none;
    }

    .mission-vission .inner {
        margin-top: 70px;
    }

    .log-page {
        padding: 30px;
    }

    .log-page .text-area {
        margin-bottom: 30px;
    }

    .toggle-password {
        top: 70%;
    }
    .thankyou h1 {
    font-size: 3rem;
    }
    .dashboard-wrapper .user-details {
    width: 100%;
    padding: 0;
}
.shopping-cart .cart-side-info {
    margin-top: 30px;
}
}


@media screen and (max-width: 900px) {
    .hero-section .wrapper {
        flex-wrap: wrap;
    }
    #seach-modal .modal-body {
    padding: 0;
}

    .offcanvas aside {
        padding: 0;
        border-right: 0;
    }

    .product-details .image-area .main-image {
        height: auto;
    }

    .hero-section .wrapper .content-area {
        width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .hero-section .wrapper .content-area .title {
        font-size: 2.6rem;
    }

    .hero-section .wrapper .image-area {
        display: none;
    }

    .hero-section {
        padding-bottom: initial;
    }
}

@media screen and (max-width: 768px) {
    .newsletter {
        padding: 2rem;
    }

    nav.breadcrum-area {
        padding: 30px;
    }

    .product-details-area {
        padding: 30px !important;
    }
}


@media screen and (max-width: 767px) {
    .footer-links {
        padding-left: 0;
    }
    .thankyou h1 {
    font-size: 2rem;
}
}


@media screen and (max-width: 723px) {
    .gallery-grid a img {
        height: auto;
    }
}

@media screen and (max-width: 600px) {
    .related-products .wrapper .item {
        width: 100% !important;
    }

    #cart-sidebar .wrapper .item .product-title a, td.cart-item_product .cart-title.link {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 1rem;
    }
    .table-page-cart tr td p{
        font-size: 0.9rem;
    }
    .table-page-cart tr td:first-child {
    min-width: 250px;
}
    .product-details .title {
        font-size: 1.6rem !important;
    }

    .shop-grid .item .info-area {
        padding: 15px;
    }

    .log-page .form-area {
        margin: 0;
    }

    .blog-details-section .main-image .info ul {
        gap: 0 8px;
    }

    .blog-details-section h1 {
        font-size: 1.6rem;
    }

    .blog-details-section .main-image .info ul li {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 576px) {
    .about-section.about-page img.about-book-image {
        display: none;
    }

    .newsletter .button-style2 {
        padding: 11px 26px;
        font-size: 0.9rem;
    }

    .log-page {
        padding: 30px 0;
    }
}

@media screen and (max-width: 575px) {
    .team-wrapper .image-area img {
        height: auto;
    }

    .product-details-area {
        padding: 10px !important;
    }
}


@media screen and (max-width: 450px) {
    .hero-section .wrapper .content-area .title {
        font-size: 2.2rem;
    }

    .section-heading .title {
        font-size: 1.6rem;
    }

    .newsletter {
        padding: 1rem;
    }

    .gallery-grid a {
        min-width: auto;
        width: 100%;
    }

    .shop-grid .item .image-area img {
        height: auto;
    }

    nav.breadcrum-area {
        padding: 20px;
    }

    .mission-vission .inner .content-area {
        padding: 18px;
        padding-top: 170px;
    }

    .blog-details-section .content img {
        width: 100%;
    }

    .contact-section .info-area {
        padding: 20px;
    }

    .log-page .form-area {
        padding: 40px 20px;
    }
}

@media screen and (max-width: 350px) {
    .header .container {
        padding: 0 4px;
    }

    .logo-wrapper img {
        max-width: 90px;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .blog-details-section h1 {
        font-size: 1.6rem;
    }

    .contact-section .form-area {
        padding: 14px;
    }

}