/* Root */
:root {
    --primary-color: #F64360;
    --secondary-color: #F86E49;
    --third-color: #F4137B;
    --primary-gradient: radial-gradient(circle, rgba(246, 67, 96, 1) 4%, rgba(247, 107, 74, 1) 100%);
    --header-margin: 50px;
}

* {
    font-family: 'Anek Bangla', 'Roboto', sans-serif, 'VideoJs';
}

body {
    margin-top: var(--header-margin);
    scroll-behavior: smooth;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #fff;
    border: none;
}

.btn-primary a {
    color: white;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {
    color: var(--third-color);
    font-weight: bold;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

/* Root */

/* Header  */

#LOGO {
    width: 130px;
}

header {
    background-color: white;
    position: fixed;
    width: 100%;
    top: 0;
    height: var(--header-margin);
    z-index: 99;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Header  */


/* hero section and hero stats */
#heroIv .iv-inner {
    position: relative;
    width: 100%;
    height: 30vh;
    padding: 4.375em 0 3.25em 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 5px;
    box-shadow: 0 0.9375em 2.8125em rgba(0, 0, 0, 0.1);
}


#heroIv .iv-inner .video-btn {
    position: relative;
    display: inline-block;
    width: 7.25em;
    height: 7.1875em;
    line-height: 7.1875em;
    text-align: center;
    margin-left: 2.5em;
    border-radius: 50%;
}

#heroIv .iv-inner .video-btn .btn-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 7.25em;
    height: 7.1875em;
    background-repeat: no-repeat;
}

#heroIv .iv-inner .video-btn i {
    position: relative;
    display: inline-block;
    width: 5em;
    height: 7.1875em;
    border-radius: 50%;
    font-size: 1.5em;
    z-index: 1;
}

#heroIv .iv-inner .video-btn i {
    background: var(--primary-gradient);
}

#heroIv .iv-inner .video-btn i {
    position: relative;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#heroIv .iv-inner .video-btn:hover {
    cursor: pointer;
}

#heroIv {
    position: relative;
}

#heroIv .video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Set z-index to a value lower than other elements */
}

#heroIv iframe {
    border-radius: 5px;
}


.slogan {
    background: linear-gradient(to right, rgba(246, 67, 96, 1) 20%, rgba(247, 107, 74, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: larger;
    margin-top: 1em;
}

.brand-name {
    background: -webkit-linear-gradient(#d6492f, #F4137B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.icons-box {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    padding: 1em;
    justify-content: center;
    align-items: center;

}

.icons-box a {
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0.5em;
}

.icons-box img {
    width: 80px;
}






.about-us .fact-item .icon {
    width: 45px;
    height: 45px;
}

.about-us .fact-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-us .fact-item .count-digit {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2a2a2a;
    margin-top: 5px;
}

.about-us .fact-item .count-title {
    font-size: 15px;
    color: #ff695f;
}

.about-us .fact-item p {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.about-us .count-area-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-us .counter-box {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.about-us .fact-item .icon {
    width: 45px;
    height: 45px;
}

.about-us img {
    width: 100%;
}




.rotate-me {
    animation-name: rotateme;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: rotateme;
    -webkit-animation-duration: 30s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotateme;
    -moz-animation-duration: 30s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: rotateme;
    -ms-animation-duration: 30s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: rotateme;
    -o-animation-duration: 30s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}


@keyframes rotateme {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@-webkit-keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(-360deg);
    }
}

@-moz-keyframes rotateme {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(-360deg);
    }
}

@-o-keyframes rotateme {
    from {
        -o-transform: rotate(0deg);
    }

    to {
        -o-transform: rotate(-360deg);
    }
}

/* hero section  */


/* admission-news */

.news-card {
    width: 286px;
    height: 250px;
    display: grid;
    place-items: center;
    margin: 0 auto;
    border-radius: 20px;
    padding: 20px;
    color: white;

}

.news-card .course-btn {
    bottom: 0;
    bottom: 2em;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;

}

/* admission-news */



/* patterns */
.background-image-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-repeat: repeat;
}

.background-image-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}


/* patterns */

/* recentsuccsess */

.leader-board {
        background: white;
        margin: 1rem;
        border-radius: 10px;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }

    .leader-board .table {
        overflow-y: auto;
    }

    .row {
        margin-top: 2em;
    }

    .leaderboard-card {
        margin: 1em;
        width: 250px;
        height: 300px;
        background: #FFF;
        border-radius: 6px;
        overflow: hidden;
        display: inline-block;
        position: relative;
        align-self: center;
    }

    .leaderboard-card .position-icon {
        position: absolute;
        right: 0;
        top: 10px;
        width: 50px;
    }

    .leaderb-card-top {
        height: 40%;
    }

    .loeaderboard-img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        padding: 5px;
        position: absolute;
        top: 35%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .loeaderboard-img img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
    }

    .leaderb-card-bottom {
        height: 50%;
        background: #FFF;
        padding: 0.3em;
        padding-top: 1.5em;
        text-align: center;
    }


    .leaderb-card-bottom p {
        font-size: 16px;
        color: gray;
    }

    @media (max-width: 767px) {
        .mobile-top {
            order: -1;
        }
        .leader-board-cards-box {
            flex-direction: column;
        }

        .leaderboard-card  {
            width: 300px;
        } 
    }




/* course cards */
.course-card {
    display: inline-block;
    position: relative;
    width: 25rem;
    height: 25rem;
    border-radius: 1.875rem;
    overflow: hidden;
    box-shadow: 0.3125rem 0.3125rem 1.875rem rgba(0, 0, 0, 0.3);
    margin: 1em;
}

.course-card-image {
    position: absolute;
    left: 0;
    height: 70%;
}

.course-text {
    background-image: linear-gradient(0deg, #3f5efb, #fc466b);
    border-radius: 1.875rem;
    position: absolute;
    top: 55%;
    left: -0.15625rem;
    height: 65%;
    width: 108%;
    transform: skew(19deg, -9deg);
}

.second-course-card .course-text {
    background-image: linear-gradient(-20deg, #bb7413, #e7d25c);
}

.course-logo {
    height: 5rem;
    width: 5rem;
    border-radius: 1.25rem;
    background-color: #fff;
    position: absolute;
    bottom: 7.5rem;
    left: 1.875rem;
    overflow: hidden;
    box-shadow: 0.3125rem 0.3125rem 1.875rem rgba(0, 0, 0, 0.7);
}

.course-logo img {
    height: 100%;
}

.course-description {
    position: absolute;
    color: #fff;
    font-weight: 900;
    left: 9.375rem;
    bottom: 6.5rem;
}

.course-btn {
    position: absolute;
    color: #fff;
    right: 1.875rem;
    bottom: 2.5rem;
    padding: 1rem 2rem;
    border: 0.0625rem solid #fff;
}


.course-btn:hover {
    animation: none;
}

.course-btn a {
    color: #fff;
}

.course-date {
    position: absolute;
    color: #fff;
    left: 1.875rem;
    bottom: 1.25rem;
}

/* course cards */

/* review cards */
.review-slider {
    width: 80%;
    position: relative;
    max-width: 800px;
    margin: auto;
    background: #fff;
    box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
    padding: 25px;
    border-radius: 25px;
    height: 400px;
    transition: all 0.3s;
}

@media screen and (max-width: 992px) {
    .review-slider {
        max-width: 680px;
        height: 400px;
    }
}

/* height control */
@media screen and (max-width: 768px) {
    .review-slider {
        height: auto;
        margin-top: 5rem;

    }
}

@media screen and (max-height: 500px) and (min-width: 992px) {
    .review-slider {
        height: 350px;
    }
}

.review-slider__item {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .review-slider__item {
        flex-direction: column;
    }
}

.review-slider__item.swiper-slide-active .review-slider__img img {
    opacity: 1;
    transition-delay: 0.3s;
}

.review-slider__item.swiper-slide-active .review-slider__content>* {
    opacity: 1;
    transform: none;
}

.review-slider__img {
    width: 300px;
    flex-shrink: 0;
    height: 15rem;
    background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
    box-shadow: 4px 13px 30px 1px rgba(252, 56, 56, 0.2);
    border-radius: 20px;
    transform: translateX(-80px);
    overflow: hidden;
}

.review-slider__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    border-radius: 20px;
    transition: all 0.3s;
}

@media screen and (max-width: 768px) {
    .review-slider__img {
        transform: translateY(-50%);
        width: 90%;
        height: 12rem;
    }
}

@media screen and (max-width: 576px) {
    .review-slider__img {
        width: 95%;
    }
}

@media screen and (max-height: 500px) and (min-width: 992px) {
    .review-slider__img {
        height: 270px;
    }
}

.review-slider__content {
    padding-right: 25px;
}

@media screen and (max-width: 768px) {
    .review-slider__content {
        margin-top: -80px;
        text-align: center;
        padding: 0 30px;
    }
}

@media screen and (max-width: 576px) {
    .review-slider__content {
        padding: 0;
    }
}

.review-slider__content>* {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.4s;
}

.review-slider__code {
    color: #7b7992;
    margin-bottom: 15px;
    display: block;
    font-weight: 500;
}

.review-slider__title {
    font-size: 24px;
    font-weight: 700;
    color: #0d0925;
    margin-bottom: 20px;
}

.review-slider__text {
    color: #4e4a67;
    margin-bottom: 30px;
    line-height: 1.5em;
}

@media screen and (max-width: 576px) {
    .review-slider__button {
        width: 100%;
    }
}

.review-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.review-slider .swiper-pagination-custom,
.review-slider .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
}

.review-slider__pagination {
    position: absolute;
    z-index: 21;
    right: 20px;
    width: 11px !important;
    text-align: center;
    left: auto !important;
    top: 50%;
    bottom: auto !important;
    transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
    .review-slider__pagination {
        transform: translateX(-50%);
        left: 50% !important;
        top: 13.5rem;
        width: 100% !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.review-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 8px 0;
}

@media screen and (max-width: 768px) {
    .review-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 5px;
    }
}

.review-slider__pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    display: block;
    border-radius: 10px;
    background: #062744;
    opacity: 0.2;
    transition: all 0.3s;
}

.review-slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fd3838;
    height: 30px;
    box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
}

@media screen and (max-width: 768px) {
    .review-slider__pagination .swiper-pagination-bullet-active {
        height: 11px;
        width: 30px;
    }
}

/* review cards */


/* onix */
.main-blue-button a {
    display: inline-block;
    background-color: #03a4ed;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    text-transform: capitalize;
    padding: 12px 25px;
    border-radius: 23px;
    letter-spacing: 0.25px;
}

.main-blue-button-hover a {
    display: inline-block;
    background-color: #03a4ed;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    text-transform: capitalize;
    padding: 12px 25px;
    border-radius: 23px;
    letter-spacing: 0.25px;
    transition: all .3s;
}

.main-blue-button-hover a:hover {
    background-color: #ff695f;
}

.main-red-button a {
    display: inline-block;
    background-color: #ff695f;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    text-transform: capitalize;
    padding: 12px 25px;
    border-radius: 23px;
    letter-spacing: 0.25px;
}

.main-red-button-hover a {
    display: inline-block;
    background-color: #ff695f;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    text-transform: capitalize;
    padding: 0.6em 1em;
    border-radius: 23px;
    letter-spacing: 0.25px;
    transition: all .3s;
}

.main-red-button-hover a:hover {
    background-color: #03a4ed;
}

.main-white-button a {
    display: inline-block;
    background-color: #fff;
    font-size: 15px;
    font-weight: 400;
    color: #ff695f;
    text-transform: capitalize;
    padding: 12px 25px;
    border-radius: 23px;
    letter-spacing: 0.25px;
}


.nav-pills .nav-link.active {
    background-color: #ff695f;
    color: white;
}

.nav-link {
    color: #ff695f;
    border: 1px solid #ff695f;
    margin: 0.1rem;
    padding: 0.5rem
}

.nav-link:hover {
    color: #03a4ed;
}


/* profile */

.home-profile {
    display: flex;
    align-items: center;
    gap: 1em;
}

.home-profile i {
    color: var(--primary-color);
}

.home-profile .bi-person-circle {
    font-size: 1.8rem;
    margin-top: -0.2em;
}

.home-profile .fa-bell {
    font-size: 1.5rem;
    margin-top: 0.5em;
}

.home-profile .fa-bell:hover {
    cursor: pointer;
}

.home-profile .profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}



#ProfileUpdateForm {
    padding: 1em;
    margin: 1em;
    border-radius: 5px;
}


#ProfileUpdateForm button {
    margin-top: 1em;
}

#ProfileUpdateForm input {
    margin-bottom: 0.5em;
}

.profile-card-column .profile-picture {
    width: 200px;
    height: 200px;
    display: block;
    margin: 0 auto;
    position: relative;
    top: 90px;
    z-index: 2;
    border: 8px solid #fff;
}

.profile-card-column .card-header {
    background-color: #ff685f;
    color: white;
}


/* 
  ---------------------------------------------
  forms
  --------------------------------------------- 
  */


form#contact {
    position: relative;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    padding: 1em;
    border-radius: 20px;
}

form#contact input,
form#contact select {
    width: 100%;
    height: 46px;
    border-radius: 0px;
    background-color: transparent;
    border-bottom: 1px solid #9bdbf8;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
    font-size: 15px;
    font-weight: 300;
    color: #2a2a2a;
    padding: 0px 0px;
    margin-bottom: 1em;
}

form#contact input::placeholder {
    color: #afafaf;
}

form#contact button,
form#ProfileUpdateForm button,
.main-button {
    display: inline-block;
    background-color: var(--primary-color);
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    text-transform: capitalize;
    padding: 12px 25px;
    border-radius: 23px;
    letter-spacing: 0.25px;
    border: none;
    outline: none;
    transition: all .3s;
}

form#contact button:hover,
.main-button:hover {
    background-color: #03a4ed;
}



form#contact select {
    color: #afafaf;
}


/* 
  ---------------------------------------------
  Auth
  --------------------------------------------- 
  */

.auth-heading {
    margin-top: 10%;
    margin-bottom: 1em;
    color: #ff685f;
}

.auth-footer {
    margin: 1em;
    color: #ff695f;
    font-weight: 400;
    line-height: 2em;
}

.auth-footer a {
    color: #03a4ed;

}


/* onix */


/* notification  */
.notification-box {
    position: absolute;
    right: 0;
    margin-right: 10%;
    width: 280px;
    margin-top: 1em;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    max-height: 50vh;
    min-height: 30vh;
    overflow-y: auto;
}

.notification-header {
    background: #fff;
    padding: 15px;
    position: relative;
    text-align: center;
    color: #747f8b;
    border-radius: 10px 10px 0 0;
    border: 0px;
    border-style: solid;
    border-bottom-width: 1px;
    -moz-border-image: -moz-linear-gradient(right, #fff, #cedae0, #cedae0, #fff) 1 20%;
    -o-border-image: -o-linear-gradient(right, #fff, #cedae0, #cedae0, #fff) 1 20%;
    border-image: linear-gradient(to right, #fff 0%, #cedae0 40%, #cedae0 60%, #fff 100%) 1 20%;
    box-shadow: 0px 2px 10px -2px #cedae0;
    cursor: pointer;
}

.notification-box .notification-body {
    background: #fff;
    border-radius: 0 0 10px 10px;
    min-height: 20vh;
}

.notification {
    padding: 0.5em;
    border: 0px;
    word-break: break-word;
}


.notification:nth-child(even) {
    background-color: white;
}

.notification:nth-child(odd) {
    background-color: #e9f0f3;
}

#NtCount {
    font-size: 0.8rem;
    top: -0.4em;
    right: -0.3em;
}



/* notification */


/* 
---------------------------------------------
Store Style
--------------------------------------------- 
*/
.store-logo i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 1rem;
  }


  
  .store-logo .start-100 {
   margin-top: 1rem;
  }
  
  
  /* search */
  
  #search-icon-main {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 10px;
  }
  
  
  .search {
    position: relative;
    background: white;
    border-radius: 5px;
  
  }
  
  .search label {
    position: absolute;
    font-size: 1.5rem;
    padding-right: 1rem;
    color: var(--primary-color);
    cursor: pointer;
    top: 20%;
    transform: translateX(-100%);
  
  }
  
  
  .search label:hover {
    color: var(--green);
  
  }
  
  .search input {
    height: 1rem;
    width: 100%;
    outline: none;
    border: 2px solid var(--primary-color);
    padding: 1em;
    border-radius: 10px;
  
  }
  
  .results {
    width: 100%;
    position: absolute;
  
  }
  
  
  .results.active {
    background: white;
    animation: fade-in 500ms forwards;
    z-index: 2;
    box-shadow: 0px 1px 5px 3px rgba(0, 0, 0, 0.12);
  }
  
  .results.active li {
    display: block;
  
  
  }
  
  .results li a {
    display: flex;
    justify-content: space-between;
    color: var(--secondary-black);
  
  
  }
  
  
  .results li {
    list-style: none;
    width: 100%;
    border-radius: 3px;
    padding: 1.5rem 0.5em;
    display: none;
    font-size: small;
    cursor: pointer;
    font-size: 16px;
    border-bottom: .5px solid red;
  
  
  }
  
  .results li:hover {
    background-color: rgb(207, 202, 202);
  }
  
  
  
  
  .searchbox.active {
    display: block;
    position: absolute;
    margin-top: 15rem;
    z-index: 2;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
  }
  
  #search-icon-main {
    cursor: pointer;
  }
  
  @keyframes fade-in {
    0% {
      opacity: 0;
  
    }
  
    100% {
      opacity: 1;
    }
  
  }
  
  
  input[type="search"]::-webkit-search-decoration,
  input[type="search"]::-webkit-search-cancel-button,
  input[type="search"]::-webkit-search-results-button,
  input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
  }
  
  .searchbox {
    width: 40%;
  
  }
  
  
  @media (max-width: 750px) {
    .searchbox {
      position: absolute;
      top: 4em;
      width: 100%;
      z-index: 2;
      right: 0;
      left: 0;
    }
  
    .search-mobile-active {
      display: none;
    }
  

  
    .results {
      width: 100%;
  
    }
  
  }
  
  
  @media (min-width: 750px) {
    #search-icon-main {
      display: none;
    }
  
  
    .searchbox {
      margin-right: 15%;
    }
  
    .logo {
      margin-right: 10em;
    }
  
    .buttons-con {
      width: 75%;
    }
  }
  
  /* search */
  
  
  
  /* book card */
  
  
  .book-container .category-title {
    color: #d00404;
  }
  
  .book-card {
    display: flex;
    flex-direction: column;
    height: 20rem;
    width: 15rem !important;
    padding: 1em;
    margin: 2.5em !important;
    color: var(--secondary-black);
    transition: box-shadow 0.3s ease-in-out;
  }
  
  .book-card img {
    min-height: 80%;
  }
  
  .book-card h1 {
    font-size: 1rem;
    font-weight: bold;
  }
  
  .book-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
  
  }
  
  /* book card end */
  
  
  
  /* book page */
  .preview-btn {
    background: #d00404;
    color: #fff;
    padding: .50rem 0.5rem;
    border-radius: 0 0px 30px 0;
    top: 75%;
  }
  
  .single-book-title {
    font-size: 2rem;
    color: #d00404;
  }
  
  .book-cover-photo {
    width: 200px;
    height: 300px;
  }
  
  .book-cover-photo img {
    width: 55%;
    object-fit: cover;
  }
  
  .book-table {
    width: 60%;
  }
  
  .book-table th {
    background-color: #d00404;
    color: white;
    font-weight: bold;
    width: 30%;
    padding: 0.5em;
    font-size: 1.1rem;
  }
  
  .book-table td {
    border: 1px solid lightgrey;
    text-align: left;
    padding: 0.5em;
    font-size: 1.1rem;
    font-weight: 500;
    color: #403333;
  }
  
  .spec-line {
    background: #d00404;
    height: 2px;
    width: 80%;
    margin: 1em;
  }
  
  
  /* book page */
  
  
  /* cart section */
  .btn-con {
    align-items: center;
    flex-direction: column;
    text-align: center;
  
  }
  
  
  
  .cart-page h3 {
    font-weight: bold;
    font-size: 1rem;
  }
  
  .cart-container {
    border-radius: 10px;
    margin-bottom: 1em;
    background-color: white;
    padding: 0.5em;
  }
  
  .cart-items {
    padding: 0.5em;
    width: 100%;
    margin: 2rem auto;
  }
  
  .item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    margin-bottom: 1rem;
    border: solid 0.5px gray;
    padding: 1rem;
    border-radius: 20px;
  }
  
  .cart-img {
    width: 50px;
    margin-right: 0.5em;
  }
  
  .cart-quantity-btn {
    border-radius: 5px;
    border: 0.5px #FF0000;
  }
  
  
  
  .total-price {
    flex: 1;
  }
  
  
  button#removeItembtn {
    font-size: 1rem;
    border-radius: 50%;
    background: red;
    border: red;
    color: #ffff;
    margin-left: 10px;
  }
  
  /* cart section end  */
  
  
  
  
  
  
  /* 
  ---------------------------------------------
  Store Style
  --------------------------------------------- 
  */
  







/* footer */

   
footer ul li {
    list-style: none;
    
}

footer ul {
    padding-left: 0px;

}

.generic-anchor {
    color: var(--primary-color);
}

.generic-anchor:visited {
    color: var(--primary-color);
}

.generic-anchor:hover {
    color: #ccc;
}

.footer-flex-rw {
    display: flex;
    flex-flow: row wrap;
}


footer {
    background: #373737;
    margin-top: auto;
    width: 100%;
}

.footer-list-top {
    width: 33.333%;
}

.footer-list-top>li {
    text-align: center;
    padding-bottom: 10px;
}

.footer-list-header {
    padding: 10px 0 5px 0;
    color: #fff;
    word-spacing: 5px;
 
}



.footer-social-section {
    width: 100%;
    align-items: center;
    justify-content: space-around;
    position: relative;
    margin-top: 5px;
}

.footer-social-section::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 10px;
    border-top: 1px solid #ccc;
    width: calc(100% - 20px);
}

.footer-social-overlap {
    position: relative;
    z-index: 2;
    background: #373737;
    padding: 0 20px;
}

.footer-social-connect {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: x-large;
}

.footer-social-small {
    font-size: 0.6em;
    padding: 0px 20px;
}

.footer-social-overlap>a {
    font-size: 2em;
}

.footer-social-overlap>a:not(:first-child) {
    margin-left: 0.38em;
}

.footer-bottom-section {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
}

.footer-bottom-section>div:first-child {
    margin-right: auto;
}

.footer-bottom-wrapper {
    color: #fff;
}




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

    .footer-list-top {
        width: 100%;
    }

  
    .footer-social-section {
        justify-content: center;
    }

    .footer-social-section::after {
        top: 25%;
    }

    .footer-social-connect {
        margin-bottom: 10px;
        padding: 0 10px;
    }

    .footer-social-overlap {
        display: flex;
        justify-content: center;
    }

    .footer-social-icons-wrapper {
        width: 100%;
        padding: 0;
    }

    .footer-social-overlap>a:not(:first-child) {
        margin-left: 20px;
    }

    .footer-bottom-section {
        padding: 0 5px 10px 5px;
    }

    .footer-bottom-wrapper {
        text-align: center;
        width: 100%;
        margin-top: 10px;
    }
}

@media only screen and (max-width: 480px) {
    .footer-social-overlap>a {
        margin: auto;
    }

    .footer-social-overlap>a:not(:first-child) {
        margin-left: 0;
    }

    .footer-bottom-rights {
        display: block;
    }
}



/* footer */
