@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Praise&family=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=National+Park:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Brygada+1918:ital,wght@0,400..700;1,400..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=National+Park:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Brygada+1918:ital,wght@0,400..700;1,400..700&family=Frank+Ruhl+Libre:wght@300..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=National+Park:wght@200..800&display=swap');

* {
    font-family: Montserrat;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

.type-select{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
.breadcrumb {
    background-color: transparent;
    font-size: 15px;
}

.breadcrumb span {
    color: #F79F1B;
}

.breadcrumb a {
    color: #EA222A;
    font-weight: 600;
    padding-right: 5px;
}

.breadcrumb a::after {
    content: "\f105";
    font-family: FontAwesome;
    padding: 0 3px;
    font-size: 12px;
}

.blog-title a {
    color: white;
    text-decoration: none;
}

.page-heading {
    text-align: center;
    margin: 70px 0 60px 0;
}

.page-heading-title {
    color: #EA222A;
    font-family: "Bodoni Moda", serif;
    font-family: "Frank Ruhl Libre", serif;
    font-weight: 700;
    font-size: 30px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, rgb(234, 34, 42) 0%, rgba(247, 159, 27) 100%);


}

.page-heading-para {
    /* color: #F79F1B; */
    /* font-family: "Bodoni Moda", serif; */
    font-weight: 600;
    padding: 0 20%;
    font-size: 14px;
}

.top-bar {
    background-color: #EA222A;
    background: linear-gradient(90deg, rgb(234, 34, 42) 0%, rgb(247 159 27) 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
}

.top-bar i {
    font-size: 21px;
}

.top-bar a {
    text-decoration: none;
    color: white;

}

.top-bar p {
    /* text-align: center; */
    color: white;
    margin: 0;
}

.top-bar p span {
    font-weight: 600;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ea222948;
    margin: 0 100px;
    padding: 10px 0;
    /* position: sticky;
    top: 0;
    left: 0;
    background-color: white;
    z-index: 99; */

}

.header .navbar {
    width: 30%;
    padding: 0;
    display: flex;
}

.header .navbar .bi {
    align-self: self-end;
    color: #EA222A;
    font-size: 25px;
    display: none;
}

.header .navbar ul {
    display: flex;
    margin: 0;
}

.header .navbar ul li {
    list-style: none;
    padding: 0 5px;
}
.header .navbar ul li a::after{
    content: '';
    display: block;
    height: 2px;
    width: 0%;
    background-color: #EA222A;
    border-radius: 5px;
    transition: 0.5s;
}
.header .navbar ul li a:hover:after{
    width: 100%;
}
.header .navbar ul li a {
    color: #EA222A;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.logo img {
    width: 280px;
    transition: 0.5s;
}

.header .searchbar {
    width: 30%;
    display: flex;
    justify-content: right;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
}

.search-result {
    width: 100%;
    background: #d87a7d;
    background: #EA222A;
    position: absolute;
    top: 37px;
    display: none;
    width: 75%;
    z-index: 99;
    border-radius: 2px;
        /* background: linear-gradient(90deg, rgb(234, 34, 42) 0%, rgb(247 159 27) 100%); */
        background-color: white;
         border: 1px solid #978a8a6e;
}

.search-result ul {
    color: white;
    margin: 0;
}

.search-result ul a {
    text-decoration: none;
}

.search-result li {
    list-style: none;
    color: white;
    font-size: 14px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.432);
    border-bottom: 1px solid #978a8a6e;
    color: black;
}
.search-result img{
    width: 50px;
    border-radius: 5px;
    margin-right: 10px;
}

.search-result ul li:hover {
    color: #EA222A;
    background: white;
    font-weight: 700;
    background: linear-gradient(90deg, rgb(234, 34, 42) 0%, rgb(247 159 27) 100%);
    color: white;
}
.search-result .categories-list{
    display: none;
}

.header .searchbar .search-input {
    box-shadow: 0 0 10px 1px rgba(234, 34, 42, 0.23);
    padding: 5px 10px;
    width: 75%;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;

}

.header .searchbar .search-input input {
    border: none;
    outline: none;
    font-size: 13px;
    font-weight: 500;
    width: 90%;
}

.header .searchbar .search-input input::placeholder {
    color: rgba(128, 128, 128, 0.637);
}

.header .searchbar .search-input i {
    color: #EA222A;
    font-size: 17px;
}
.header .searchbar .search-input .bi-x{
    display: none;
    cursor: pointer;
}

/*********************************** HOME PAGE START ***********************************/

.hero-section {
    /* background-color: #ea222a38; */
    /* width: 100%; */
    max-height: 400px;
    margin-top: 50px;
    /* margin: 0px -20px; */
    margin-top: 50px;
    margin-bottom: 0;
    
}

.slider{
    width: 100%;
    /* height: 400px; */
     /* background-color: #EA222A; */
}
.slider img{
    width: 100%;
    border-radius: 10px;
}

.blogs-slider {
    margin-top: 80px;
    padding-bottom: 50px;
    display: flex;
}

.blogs-slider-image {
    height: 290px;
    width: 410px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

.blogs-slider-image img {
    height: 100%;
}

.owl-carousel-blog .owl-item img {
    width: auto !important;
}

.owl-carousel-blog .owl-nav {
    display: none;
}

.owl-carousel-blog .owl-dots button {
    outline: none;
}

.owl-carousel-blog .owl-dots button span {
    background-color: #d87a7d !important;
}

.owl-carousel-blog .owl-dots .active span {
    width: 50px !important;
    background-color: #EA222A !important;
}
.blog-para{
     overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.blogs-slider-content {
    text-align: center;
    text-align: left;
    flex: 1;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.blogs-slider-content .blog-title {
    font-weight: 600;
    color: #EA222A;
}

.blogs-slider-content .blog-para {
    font-weight: 600;
     overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* HOVER1 BTN STYLE */
.hover1-btn {
    width: 140px;
    background-color: #EA222A;
    /* background-color:#F79F1B; */
    position: relative;
    z-index: 1;
    border: none;
    overflow: hidden;
}

.hover1-btn::before {
    content: '';
    display: block;
    height: 100%;
    width: 0%;
    background-color: #F79F1B;
    background-color: #EA222A;
    position: absolute;
    bottom: 0;
    left: 0;
    left: 65px;
    z-index: -1;
    transition: 0.5s;
    margin: 0 auto;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.hover1-btn:hover::before {
    left: 0px;
    width: 100%;
    height: 100%;
}

.hover1-btn:hover {
    background-color: #b36e07;
    background-color: #a50409;
}

.hover1-btn a {
    text-decoration: none;
    color: white;
}

.section-heading {
    width: 100%;
    padding: 40px 0;
    margin: 40px 0 0 0;
    color: #EA222A;
    border-top: 2px solid #ea222948;
}

.no-border {
    border: none;
}

.section-heading h2,
.section-heading h3 {
    font-weight: 600;
    margin-bottom: 5px;
    font-family: "Bodoni Moda", serif;
    font-family: "Frank Ruhl Libre", serif;
    font-weight: 800;
        -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, rgb(234, 34, 42) 0%, rgba(247, 159, 27) 25%);
}


.section-heading h2 {
    font-size: 48px;
}

.section-heading h3 {
    font-size: 38px;
}

.section-heading p {
    font-family: "Bodoni Moda", serif;
    font-family: "Frank Ruhl Libre", serif;
    font-weight: 600;
}

/* HOVER BLOG */
.hover-blog-col {
    padding: 10px;
    margin-bottom: 30px;
}

.hover-blog {
    padding: 15px;
}

.hover-blog:hover {
    box-shadow: 0 0 10px 1px rgba(234, 34, 42, 0.23);
}

.hover-blog .blog-imag {
    height: 220px;
}

.blog-image {
    height: 250px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-image img {
    /*height: 100%;*/
    height:250px;
}

.blog-content {
    padding: 15px 0 0 0;
}

.blog-content a {
    text-decoration: none;
}

.hover-blog .blog-title a {
    color: #EA222A;
    font-size: 18px;
    font-family: "Bodoni Moda", serif;
    font-family: "Frank Ruhl Libre", serif;
    font-weight: 700;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.hover-blog .blog-para {
    font-size: 14px;
    font-family: "Bodoni Moda", serif;
    font-family: "Frank Ruhl Libre", serif;
    font-weight: 600;
}

.blog-bottom {
    font-weight: 700;
    color: #EA222A;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-bottom span {
    font-family: "Bodoni Moda", serif;
    font-size: 12px;
    font-family: "Frank Ruhl Libre", serif;
}

/* SHADOW BLOG */

.shadow-blog {
    position: relative;
    height: 450px;
    margin-bottom: 30px;
}

.shadow-blog-upper {
    background: linear-gradient(0deg, #EA222A 2.5%, rgba(255, 255, 255, 0.233) 70%);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.shadow-blog .blog-image {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.shadow-blog .blog-content {
    position: absolute;
    z-index: 3;
    bottom: 0;
    color: white;
    padding: 20px;
}

.shadow-blog .blog-content .blog-title {
    font-size: 19px;
}

.shadow-blog .blog-content .blog-para {
    font-size: 14px;
}

.none-image-blog {
    background-color: #F79F1B;
    margin-bottom: 30px;
}

.none-image-blog .blog-content {
    color: white;
    padding: 15px;
}

.none-image-blog .blog-content .blog-title {
    font-size: 17px;

}

.none-image-blog .blog-content .blog-title a {
    color: white;
    text-decoration: none;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.none-image-blog .blog-content .blog-para {
    font-size: 13px;
    margin: 0;
    font-weight: 500;
}


/* ANIMATION HOVER BLOG */
.hover-anim-blog-col {
    margin-bottom: 30px;
}

.hover-anim-blog {
    height: 220px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

}

.hover-anim-blog-upper {
    position: absolute;
    z-index: 2;
    background: #ea222985;
    height: 0%;
    width: 0%;
    transition: 0.5s;
}

.hover-anim-blog:hover .hover-anim-blog-upper {
    height: 100%;
    width: 100%;
}

.hover-anim-blog .blog-image {
    overflow: hidden;
    height: 100%;
    z-index: 1;
}

.hover-anim-blog .blog-content {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    margin: 0;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    color: white;
    z-index: 2;
    opacity: 0;
    transition: 1s;

}

.hover-anim-blog:hover .blog-content {
    opacity: 1;
}

.hover-anim-blog .blog-title {
    font-size: 18px;
    text-align: center;
    font-family: "Bodoni Moda", serif;
    font-weight: 600;
}

.hover-anim-blog .blog-para {
    font-size: 14px;
    text-align: center;
    font-family: "Bodoni Moda", serif;
}

.newsletter-section {
    height: 450px;
    background-color: #f79f1b3b;
    /* margin: 0 -120px; */
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    margin-bottom: 80px;
}

.newsletter-circle-left,
.newsletter-circle-right {
    height: 170px;
    width: 170px;
    border-radius: 50%;
    background-color: #EA222A;
    position: absolute;
}

.newsletter-circle-left {
    left: -70px;
    top: 0;
}

.newsletter-circle-right {
    right: -70px;
    bottom: 0;
}

.newsletter-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.newsletter-center h3 {
    color: #EA222A;
    font-size: 40px;
    font-family: "Bodoni Moda", serif;
    font-weight: 700;
}

.newsletter-input {
    background-color: white;
    padding: 15px;
    display: flex;
    align-items: end;
    margin: 20px;
}

.newsletter-input input {
    width: 500px;
    border: none;
    outline: none;
    border-bottom: 1px solid #ea222981;
    margin: 0 50px 0 20px;
    padding: 10px;
    color: #EA222A;
    font-size: 13px;
    font-weight: 600;
}

.newsletter-input input::placeholder {
    color: #ea222981;
}

.newsletter-input button {
    border: none;
    outline: none;
    color: white;
    background-color: #EA222A;
    padding: 10px 20px;
}

.newsletter-center p {
    font-size: 13px;
    color: #EA222A;
    text-align: center;
    width: 50%;
    font-weight: 500;
    margin: 20px 0;

}

.faqs {
    margin-bottom: 30px;
}

.faqs h4 {
    color: #EA222A;
    font-size: 17px;
    font-weight: 600;
    border-bottom: 1px solid #EA222A;
    padding: 10px 0;
    cursor: pointer;
    font-family: "Bodoni Moda", serif;
}

.faqs p {
    font-size: 13px;
    color: #F79F1B;
    font-weight: 500;
    display: none;
    font-family: "Bodoni Moda", serif;
}

/*********************************** HOME PAGE END ***********************************/

/*********************************** BLOGS PAGE START ***********************************/
.main-blog {
    margin: 40px 0;
}

.main-blog .blog-image {
    /* height: 400px; */
    height: auto;
    position: relative;
    border-radius: 20px;
}

.main-blog img {
    width: 100%;
    height: auto;
}

.single-blog-col {
    margin: 0 0 60px 0;

}

.single-blog {
    display: flex;
    border-bottom: 1px solid #ea222948;
    padding: 50px 0;
}

.single-blog .blog-image {
    width: 430px;
    border-radius: 20px;
}

.single-blog .blog-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    padding-right: 50px;
}

.single-blog .blog-content .blog-title {
    font-family: "Brygada 1918", serif;
    color: #EA222A;
    font-size: 32px;
    font-weight: 700;
}

.single-blog .blog-content .blog-para {
    font-family: "Brygada 1918", serif;
    color: black;
    font-weight: 600;
}

.small-image-blog {
    position: relative;
}

.small-image-blog-upper {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(23, 15, 15, 0.62);
}

.small-image-blog .blog-image {
    height: 112px;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 1;
}

.small-image-blog .blog-image img {
    width: 100%;
}

.small-image-blog .blog-content {
    top: 0;
    left: 0;
    position: absolute;
    z-index: 2;
    color: white;
    padding: 15px;
    height: 100%;
    display: flex;
    align-items: center;
}


.small-image-blog .blog-content .blog-title {
    font-size: 17px;

}

.small-image-blog .blog-content .blog-title a {
    color: white;
    text-decoration: none;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/*********************************** BLOGS PAGE END ***********************************/

/*********************************** All BRANDS PAGE START ***********************************/
.characters {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.characters span {
    padding: 5px 10px;
    background-color: #EA222A;
    margin-bottom: 15px;
    margin: 2px;
    position: relative;
    z-index: 1;
}

.characters span::before {
    content: '';
    display: block;
    height: 100%;
    width: 0%;
    background-color: #F79F1B;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: 0.3s;
}

.characters span:hover::before {
    width: 100%;
}

.characters span a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
}

.all-brands-label {
    display: flex;
    justify-content: space-between;
    padding: 15px 15px;
    color: #EA222A;
    font-weight: 500;
    border-top: 1px dashed #ea222a78;
    margin-top: 30px;
    text-transform: capitalize;

}

/*********************************** All BRANDSPAGE END ***********************************/

/*********************************** COUNTRY PAGE START ***********************************/

.country-select-section {
    text-align: center;
    display: flex;
    justify-content: center;
}

.country-select-section select {
    padding: 3px;
    outline: none;
    font-size: 12px;
    margin-left: 10px;
    /* width: 400px; */
    border: 1px solid rgba(128, 128, 128, 0.61);
    color: rgba(0, 0, 0, 0.733);
    border-radius: 2px;
    font-weight: 600;
}

.country-flag {
    display: flex;
    margin: 40px 0 50px 0;
    align-items: center;
}

.flag-image img {
    border-radius: 3px;
}

.country-text {
    justify-self: flex-end;
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    font-size: 15px;
    font-weight: 600;
}

.brand {
    display: flex;
    align-items: center;
    padding: 10px 10px;
    height: 90px;
    transition: 0.5s;
    margin: 10px 0;
    border-radius: 5px;
    justify-content: space-between;
}

.brand:hover {
    box-shadow: 0 0 10px 1px rgba(234, 34, 42, 0.23);
}

/* .brand:hover img{
    width: 120px !important;
    border: 1px solid #EA222A;
    padding: 5px;
    background: #EA222A;
} */
.brand .brand-logo {
    padding: 0px;
    text-align: center;
    order: 2;
}

.brand .brand-logo img {
    width: 70px;
    /* height: 70px; */
    border-radius: 3px;
    transition: 0.5s;
}

.brand-content {
    overflow: hidden;
}

.brand .brand-name {
    margin-bottom: 5px;
}

.brand .brand-name a {
    color: #EA222A;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.brand .brand-url {
    margin: 0;
}

.brand .brand-url a {
    font-size: 11px;
    color: #F79F1B;
    font-weight: 600;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-decoration: none;
}


/*********************************** COUNTRY PAGE END ***********************************/

/*********************************** CATEGORIES PAGE START ***********************************/
.select-section select {
    padding: 5px 6px;
    font-size: 12px;
    font-weight: 600;
    outline: none;
    border: 1px solid rgba(128, 128, 128, 0.61);
    color: rgba(0, 0, 0, 0.733);
}

/*********************************** CATEGORIES PAGE END ***********************************/


/*********************************** All COUPONS PAGE START ***********************************/

.coupon {
    /* border: 1px solid gray; */
    margin: 25px 0;
    padding: 15px 20px;
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    /* border-radius: 0 0 10px 10px; */
    /* background-color: #FFF3E2; */
}

.coupon:hover {
    background-color: #FFF3E2;
}

.coupon:before {
    position: absolute;
    width: 35px;
    height: 35px;
    z-index: 1;
    top: 40%;
    left: -7%;
    background-color: white;
    border-radius: 50%;
    content: "";
    will-change: auto;
    clip-path: inset(0% 0 0 42%);
    transition: 0.5s;

}

.coupon:after {
    position: absolute;
    width: 35px;
    height: 35px;
    z-index: 1;
    top: 40%;
    right: -7%;
    background-color: white;
    border-radius: 50%;
    content: "";
    will-change: auto;
    clip-path: inset(0% 42% 0 0);
    transition: 0.5s;

}

.coupon-tag {
    background-color: #EA222A;
    color: white;
    transform: rotate(37deg);
    /* position: absolute; */
    text-align: center;
    position: relative;
    right: -96px;
    top: 4px;
    font-size: 11px;
    
}
.blank-tag{
    background: transparent;
    color: transparent;
    display: none;
}

.coupon .brand-logo {
    text-align: center;
    padding: 10px 0;
    margin: 0 10px;
}

.coupon .brand-logo {
    border-bottom: 1px dashed #EA222A;
}

.coupon .brand-logo img {
    width: 100px;
}

.coupon-text {
    padding: 10px 0;
    min-height: 80px;
    transition: 1s;
}

.coupon-title {
    /* text-align: center; */
    font-size: 13px;
    font-weight: 550;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    transition: 0.5s;
}

.coupon-title:hover {
    -webkit-line-clamp: 5;
}

.coupon-title b {
    color: #EA222A;
    font-weight: 700;
}

.coupon-btn {
    text-align: center;
    display: flex;
    justify-content: center;
    margin: 0 0 15px 0;
}

.coupon-btn a {
    color: white;
    text-decoration: none !important;
}

.coupon-btn .get-btn {
    padding: 5px 7px;
    background: #EA222A;
    position: relative;
    z-index: 1;
    width: 110px;
    font-size: 12px;
    border-radius: 4px;
    overflow: hidden;
}

.code {
    text-align: right;
}

.coupon-btn .get-btn::after {
    content: '';
    display: block;
    height: 100%;
    width: 0%;
    background: #F79F1B;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition: 0.5s;
}

.coupon-btn .get-btn:hover::after {
    width: 100%;
}

.coupon-btn .code::after {
    content: 'Get Code';
    width: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;

}

.coupon-btn .code:hover::after {
    width: 80%;
}

.coupon-bottom {
    display: flex;
    justify-content: space-between;
}

.coupon-bottom span {
    font-size: 11px;
    color: #EA222A;
    font-weight: 700;
}

/*********************************** All COUPONS PAGE END ***********************************/

/*********************************** STORE DETAIL PAGE START ***********************************/

.about-store {
    background: #EA222A;
    padding: 20px;
    border-radius: 5px;
    margin-top: 70px;
}

.about-store-left,
.about-store-right {
    height: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    border-radius: 5px;

}

.about-store-left {
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.about-store-logo {
    border-bottom: 1px solid #EA222A;
    padding: 10px 0;
    width: 80%;
    text-align: center;
}

.about-store-left img {
    height: 80px;

}

.about-store .brand-name {
    margin: 10px 0 5px 0;
    color: #EA222A;
    font-weight: 600;
}

.about-store .brand-url {
    font-size: 13px;
    color: #F79F1B;
    font-weight: 600;
    margin-bottom: 0px;
}

.brand-rating .bi {
    color: #F79F1B;
    font-size: 12px;
}

.about-store-right {
    text-align: left;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-store-right h5 {
    color: #EA222A;
    font-weight: 600;
}

.about-store .brand-desc {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 30px;
}

.coupon-list {
    justify-self: flex-end;
}

.coupon-list ul {
    display: flex;
    margin: 0;
}

.coupon-list ul li {
    list-style: none;
    margin: 5px;
    padding: 5px 10px;
    background: #EA222A;
    color: white;
    width: 120px;
    text-align: center;
    border-radius: 5px;
}

/*********************************** STORE DETAIL PAGE END ***********************************/
/*********************************** POST VIEW PAGE START ***********************************/
.post-view {
    padding: 30px 0;
}

.post-view .main-img {
    width: 100%;
    /* height: 350px; */
    border-radius: 5px;
}

.post-view .post-title {
    color: #EA222A;
    font-family: "Frank Ruhl Libre", serif;
    margin: 30px 0 20px 0;
}

.post-view .about-post {
    display: flex;
    justify-content: space-between;
    margin: 0 0 20px 0;
    border-bottom: 1px solid #8080805c;
    padding-bottom: 5px;
}

.post-view .publish-detail {
    display: flex;
    gap: 20px;
    font-family: "Frank Ruhl Libre", serif;
    /* font-weight: 600; */
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #F79F1B;
}

.post-view .publish-detail .bi {
    font-size: 25px;
}

.post-view .publish-detail .author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-view .social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.post-view .social-icons span {
    font-size: 15px;
    font-weight: 500;
}

.post-view .social-icons .bi {
    font-size: 25px;
}

.social-icons a .bi:hover {
    color: #F79F1B;
    color: #E60023;
}

.social-icons .bi-facebook {
    color: #316FF6;

}

.social-icons .bi-instagram {
    color: #FCAF45;
}


.social-icons .bi-twitter-x {
    color: black;
}

.social-icons .bi-pinterest {

    color: #E60023;
}

.comment-main-heading {
    color: #EA222A;
    font-family: "Frank Ruhl Libre", serif;
    font-weight: 600;
}

.comment-section {
    overflow: hidden;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(128, 128, 128, 0.397);
}

.comment-btn {
    width: 100%;
    padding: 10px;
    /* padding-left: 30px; */
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #F79F1B;
}

.comment-btn:hover {}

.comment-btn .bi {
    font-size: 30px;
}

.comment-btn p {
    margin: 0;
    margin-left: 10px;
}

.comment-input-area {
    margin-top: 20px;
    padding: 10px 100px;
    display: none;

}

.comment-input-area .input-field {
    width: 100%;
    padding: 10px;
    outline: none;
    border-radius: 5px;
    border: 1px solid rgba(128, 128, 128, 0.555);
    margin-top: 10px;
    background-color: transparent;
}

.comment-input-area .btn {
    width: 110px;
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 5px;
    color: white;
}


.comment {
    border-radius: 0 20px 20px 20px;
    margin: 5px 0 20px 10px;
    padding: 10px;
    /* background-color: #72183E; */
    /* background: linear-gradient(90deg, rgba(106, 70, 190, 1) 0%, rgba(255, 102, 51, 1) 100%); */
    box-shadow: 0 0 10px 1px rgba(0, 166, 81, 0.21);
}

.comment-name {
    font-size: 17px !important;
    font-weight: 600 !important;
    margin-left: 10px !important;
}

.comment-details {
    display: flex;
    align-items: flex-end;
}

.comment-details img {
    height: 30px;
    border-radius: 50%;
}

.comment p {
    margin: 10px 20px;
    font-size: 13px;
    font-weight: 500;
}

.comment span {
    /* color: white; */
    margin-top: 15px;
    font-size: 12px;
    margin: 0 5px;
    font-weight: 500;
}

.comment .bi {
    color: black;
    font-size: 14px;
    cursor: pointer;
}

.comment-date-time {
    /* text-align: right;
    flex: 1; */
}

.comment-date-time span {
    font-size: 12px;
    font-weight: 600;
}



/****************************************** FOOTER ****************************************/

footer {
    background-color: #FFF3E2;
    overflow: hidden;
    margin-top: 80px;
    background: linear-gradient(90deg, rgb(234, 34, 42) 0%, rgba(247, 159, 27) 100%);
}

.footer-section {
    display: flex;
    padding: 80px 80px 40px 80px;

}

.about-section p {
    font-size: 15px;
    font-weight: 500;
    color: gray;
    margin-top: 20px;
    color: white;
}

.about-section img {
    width: 200px;
    padding: 5px;
    background-color: white;
    border-radius: 5px;
}

.footer-navigation {
    display: flex;
    justify-content: space-around;
}

.footer-navigation ul {}

.footer-section h5 {
    font-weight: 600;
    color: #EA222A;
    /* font-size: 16px; */
    text-transform: uppercase;
    color: white;
}

.footer-navigation ul li {
    list-style: none;
    padding: 5px;
}

.footer-navigation ul li a {
    color: gray;
    font-size: 14px;
    font-weight: 500;
    color: white;
    text-transform: uppercase;
}

.footer-newsletter h5 {
    margin-bottom: 30px;
}

.footer-newsletter label {
    color: white;
}

.footer-newsletter-input {
    display: flex;
}

.footer-newsletter-input input,
.footer-newsletter-input button {
    padding: 13px;
    border: none;
    outline: none;
}

.footer-newsletter-input input {
    flex: 1;
    margin-right: 10px;
}

.footer-newsletter-input button {
    background: #F79F1B;
    color: white;
    border: 2px solid;
}

.footer-newsletter-input button:hover {
    background: #EA222A;
    background: #f39200;
}

.social-media ul {
    display: flex;
    margin-top: 20px;
}

.social-media ul li {
    list-style: none;
    background: #F79F1B;
    padding: 10px 8px;
    margin-right: 10px;
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
}

.social-media ul li:hover {
    background: #f59301;
}

.social-media ul a {
    color: white;
    font-size: 20px;
    text-decoration: none;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid white;
    margin: 0 80px;
}

.footer-bottom p {
    margin: 0;
    text-align: center;
    color: white;
}

#loadmore {
    /* background-color: #EA222A; */
    color: white;
    width: auto;
}



#gotopbtn {
    display: none;
    position: fixed;
    bottom: 35px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    color: white;
    cursor: pointer;
    padding: 2px 6px;
    /* border-radius: 4px; */
    border-radius: 3px;
    background-color:#ea2229c5 ;
    border: 5px solid #ce0c1281;
}

#gotopbtn .bi {
    color: white;
}

#gotopbtn:hover {
    /* background-color: #db8707;
    border-color: #F79F1B; */
    background-color:#EA222A ;
    border: 5px solid #ce0c13;
}