@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.2/font/bootstrap-icons.css');
@import url('https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Oswald:wght@200;300;400;500;600;700&display=swap');
/*font-family: 'Arvo', serif;
font-family: 'Oswald', sans-serif;*/
* {
    padding: 0;
    margin: 0;
}

body{padding: 0px; margin:0px;}
:root{
	--color_dark: #030303;
	--color_dark_grey: #2A2A2A;
	--color_theme:#FF0000;
	--color_green:#21C489;
    --color_yellow: #E8DF1B;

	/*font*/
	--font_arvo: 'Arvo', serif;
	--font_Oswald: 'Oswald', sans-serif;

    --d: 700ms;
    --e: cubic-bezier(0.19, 1, 0.22, 1);
}
@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(3deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-3deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}
.color-theme{color: var(--color_theme) !important;}
.color-yellow{color: var(--color_yellow) !important;}
.color-dark{color: var(--color_dark) !important;}

.bg-color-theme{background-color: var(--color_theme) !important;}
.bg-color-dark{background-color: var(--color_dark) !important;}
.radius-0{border-radius: 0px !important;}
.logo, .custom-logo {width: 108px; margin: 0px 30px;}

a{text-decoration: none;}
/*====== mobile menu ======*/

#menuToggle {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 110px;
  left: 25px;
  z-index: 99999;
  -webkit-user-select: none;
  user-select: none;
}
#menuToggle input {
    display: flex;
    width: 66px;
    height: 87px;
    position: absolute;
    cursor: pointer;
    opacity: 0;
    z-index: 999999;
    top: -111px;
    left: -17px;
}
#menuToggle span {
    /* display: flex; */
    width: 41px;
    height: 7px;
    position: absolute;
    top: -82px;
    background: var(--color_dark);
    border-radius: 5px;
    z-index: 1;
    transform-origin: 5px 0px;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), background 0.5s cubic-bezier(0.77,0.2,0.05,1.0), opacity 0.55s ease;
}
.t-span1{}
.t-span2{top: -70px !important;}
.t-span3{top: -57px !important;}
#menuToggle span:first-child{
  transform-origin: 0% 0%;
}
#menuToggle span:nth-last-child(2){
  transform-origin: 0% 100%;
}
#menuToggle input:checked ~ span{
  opacity: 1;
  transform: rotate(45deg) translate(-3px, -1px);
  background: #36383F;
}
#menuToggle input:checked ~ span:nth-last-child(3){
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
#menuToggle input:checked ~ span:nth-last-child(2){
  transform: rotate(-45deg) translate(0, -1px);
}
.mob-nav-cart{
    position: absolute;
    right: 47px;
}
.mob-nav-cart span {
    letter-spacing: 0;
    background-color: var(--color_theme);
    color: var(--bs-body-bg);
    position: absolute;
    width: 32px;
    height: 32px;
    left: 40px;
    top: 0px;
    text-align: center;
    border-radius: 20px;
    line-height: 34px;
}
.menu-ul {
    position: fixed;
    top: 126px;
    width: 90%;
    height: 100vh;
    /* box-shadow: 0 0 10px #85888c; */
    margin: -48px 0 0 -50px;
    padding: 15px 9px 0px 24px;
    background-color: #F5F6FA;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(-100%, 0);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}
.menu-ul li{
  padding: 10px 0;
  transition-delay: 2s;
}
.menu-ul li a {
    font-family: var(--font_arvo);
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 36px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #030303;
    padding: 6px 20px;
    position: relative;
    text-decoration: none;
}
#menuToggle input:checked ~ ul{
  transform: none;
}
/*===== end mobile menu======*/
.bg-banner { background-color: #c4c1a7; text-align: center; position: relative;}
.vr-cus-nav .navbar-nav .nav-link {
    font-family: var(--font_arvo);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 60px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #030303;
    padding: 6px 20px;
    position: relative;
}
.vr-cus-nav .navbar-nav .nav-link:hover:before {
    content: "";
    width: 8px;
    height: 2px;
    background: #FF3E19;
    border-radius: 5px;
    position: absolute;
    bottom: 19px;
    left: 50%;
    right: 50%;
    margin-left: auto;
}
.nav-cart{position: relative;}
.nav-cart:before{display: none;}
.nav-cart span {
    letter-spacing: 0;
    background-color: var(--color_theme);
    color: var(--bs-body-bg);
    position: absolute;
    width: 32px;
    height: 32px;
    left: 60px;
    top: 20px;
    text-align: center;
    border-radius: 20px;
    line-height: 34px;
}

/*
=================================================
banner section
=================================================
*/
.banner-title-box{
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
}
.title-banner{
	font-family: var(--font_Oswald);
	font-style: normal;
	font-weight: 700;
	font-size: 28px;
	line-height: 30px;
	text-align: center;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #FFFFFF;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.title-banner span { color: var(--color_theme); }

/*
=================================================
non-fiction section
=================================================
*/
.bg-non-fiction {
    background-color: #F4F4EF;
    padding: 100px 0px;
}
.sub-sec-title{
	font-family: var(--font_Oswald);
	font-style: normal;
	font-weight: 600;
	font-size: 25px;
	line-height: 15px;
	text-transform: uppercase;
	color: #030303;
}
.sub-sec-title span {
    color: var(--color_green);
    display: block;
    margin-left: 70px;
}
.fiction-card {
    position: relative;
    overflow: hidden;
    background-color: transparent;
}
.tag {
    position: absolute;
    width: 140px;
    left: -31px;
    top: 18px;
    padding: 4px 25px;
    font-family: var(--font_arvo);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    text-align: center;
    text-transform: capitalize;
    color: #fff;
    background-color: var(--color_green);
    transform: rotate(-45deg);
}
.tag a {
    color: #ffffff;
    text-wrap-mode: nowrap;
    font-size: 12px;
}
.fiction-card .card-price{
	font-family: var(--font_Oswald);
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 25px;
	color: var(--color_theme);
}
.fiction-card .card-title{
	font-family: var(--font_Oswald);
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 25px;
	text-transform: uppercase;
	color: #192117;
}
.fiction-card .card-title a{
  font-family: var(--font_Oswald);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  text-transform: uppercase;
  color: #192117;
  /*new add WP*/
  height:50px;
  display: -webkit-box;
  -webkit-line-clamp: 2;   /* 👈 2 line limit */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fiction-card .card-text{
	font-family: var(--font_arvo);
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 25px;
	text-transform: capitalize;
	color: #888888;
}
.btn-box {
    background-repeat: no-repeat;
    width: 92px;
    height: 102px;
    line-height: 100px;
    text-align: center;
    float: right;
    margin-top: -45px;
}
.btn-box:hover{
  animation: shake 10s;
  animation-iteration-count: infinite;
}
.btn-box a {
    font-family: var(--font_arvo);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    text-decoration: none;
}

.slick-dots li button:before {
    font-size: 50px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: 1;
    color: #d9d9d9;
}
.slick-dots li.slick-active button:before {
    opacity: .75;
    color: var(--color_theme);
}
/*
=================================================
Fiction section
=================================================
*/
.bg-fiction {
    background-color: #F5F5F5;
    padding: 100px 0px;
}

/*
=================================================
Search by GENRE section
=================================================
*/
.bg-gener{
    background-color: #F4F4EF;
    padding: 100px 0px;
}
.sub-sec-title-gen{
	font-family: var(--font_Oswald);
	font-style: normal;
	font-weight: 600;
	font-size: 25px;
	line-height: 15px;
	text-transform: uppercase;
	color: #030303;
}
.sub-sec-title-gen span {
    opacity: 50%;
    display: block;
    margin-left: 115px;
}
.genre-card {
    position: relative;
    padding: 0 !important;
    margin-bottom: 20px;
    align-items: flex-end;
    overflow: hidden;
    padding: 1rem;
    width: 100%;
    min-height: 500px;
    text-align: center;
    color: #fff;
    background-color: #fff;
    box-shadow: 0 1px 1px rgb(0 0 0 / 10%), 0 2px 2px rgb(0 0 0 / 10%), 0 4px 4px rgb(0 0 0 / 10%), 0 8px 8px rgb(0 0 0 / 10%), 0 16px 16px rgb(0 0 0 / 10%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.genre-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: 0 0;
  transition: transform calc(var(--d) * 1.5) var(--e);
  pointer-events: none;
}
.genre-card:after {
  opacity: 0;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  pointer-events: none;
  /*background-color: rgba(0, 0, 0, 0.5);*/
  transform: translateY(-50%);
  transition: transform calc(var(--d) * 2) var(--e);
}
.genre-card:hover:after {
  opacity: 1;
  transition: opacity calc(var(--d) * 1.5) var(--e);
}
.genre-card:nth-child(1):before {
  /*background-image: url(../images/product/img1.png)*/;
}
.genre-card img{
    position: absolute;
    width: 100%;
    filter: grayscale(100%);
}
.genre-card:hover img{filter: grayscale(0%);}


.content {
  position: relative;
  /*display: flex;*/
  flex-direction: column;
  align-items: center;
  width: 100%;
  /*padding: 1rem;*/
  transition: transform var(--d) var(--e);
  z-index: 1;
}
.content > * + * {
  margin-top: 1rem;
}

.genre-card:after {
    transform: translateY(0);
  }
.content {
    transform: translateY(calc(104% - -100%));
}
  .content > *:not(.title) {
    opacity: 0;
    transform: translateY(1rem);
    transition: transform var(--d) var(--e), opacity var(--d) var(--e);
  }
  .genre-card:hover,
  .genre-card:focus-within {
      align-items: center;
    }
  .genre-card:hover:before,
  .genre-card:focus-within:before {
      transform: translateY(-4%);
    }
  .genre-card:hover:after,
  .genre-card:focus-within:after {
      transform: translateY(-50%);
    }
.genre-card:hover .content, .genre-card:focus-within .content {
    transform: translateY(calc(100% - -11px));
    background-color: #ffffff;
    background: rgba(217, 217, 217);
    padding: 15px;
}
  .genre-card:hover .content > *:not(.title),
  .genre-card:focus-within .content > *:not(.title) {
      opacity: 1;
      transform: translateY(0);
      transition-delay: calc(var(--d) / 8);
    }

  .genre-card:focus-within:before, .genre-card:focus-within:after,
  .genre-card:focus-within .content,
  .genre-card:focus-within .content > *:not(.title) {
      transition-duration: 0s;
    }
.genre-card .content .title {
    background-color: var(--color_theme);
    font-family: var(--font_Oswald);
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 17px;
}
.genre-card:hover .content .title, .genre-card:focus-within .content .title {
    background-color: transparent;
    color: var(--color_dark);
}
.genre-card:hover .content .text-dtls, .genre-card:focus-within .content .text-dtls{
	color: var(--color_dark);
}
/*
=================================================
ABOUT NEW BEACON BOOKS section
=================================================
*/
.bg-becon-book{
    background-color: var(--color_theme);
}
.becon-sec-title {
    font-family: var(--font_Oswald);
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: #D9D9D9;
    position: relative;
    padding-top: 30px;
}
.becon-sec-title:before {
    content: "";
    width: 68%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: 11px;
    right: -12px;
}
.text-expend{
    font-family: var(--font_Oswald);
    font-style: normal;
    font-weight: 400;
    font-size: 45px;
    line-height: 100px;
    letter-spacing: 80px;
    color: #FFFFFF;
    padding: 50px 0px;
}
.becon-sec-dtls{
    font-family: var(--font_arvo);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #FFFFFF;
    padding-right: 77px;
}
/*
=================================================
Children’s Titles section
=================================================
*/
.bg-child{
    background-color: #F5F5F5;
    padding: 100px 0px;
}
.sub-sec-title-child span {
    opacity: 50%;
    display: block;
    margin-left: 122px;
}
/*
=================================================
Event section
=================================================
*/
.bg-event {
    padding: 100px 0px;
}
.event-sec-title{
  font-family: var(--font_Oswald);
  font-style: normal;
  font-weight: 500;
  font-size: 35px;
  line-height: 52px;
  text-transform: uppercase;
  color: var(--color_dark);
}
.event-sec-dtls{
  font-family: var(--font_arvo);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--color_dark);
}
.btn-font{
  text-align: right;
  line-height: 110px;
}
.btn-font a {
    text-decoration: none;
    font-family: var(--font_arvo);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
}
.event-box {
    position: relative;
    padding: 20px;
}
.img-event {
    width: 100%;
    height: 280px;
}
.event-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 60.42%, rgba(0, 0, 0, 0.7) 100%);
    border-radius: 0px 0px 5px 5px;
    position: absolute;
    z-index: 9;
    bottom: 20px;
    width: 92%;
    padding: 15px;
}
.event-overlay .date-type {
    padding: 12px 10px;
    position: absolute;
    text-align: center;
    width: 70px;
    height: 94px;
    left: 40px;
    top: -139px;
    background: rgba(3, 3, 3, 0.8);
    color: #FFFFFF;
    border-radius: 0px 0px 5px 5px;
    font-family: var(--font_Oswald);
    line-height: 7px;
}
.event-overlay .date-type .day {
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 37px;
    text-align: center;
    text-transform: capitalize;
}
.event-overlay .date-type .month {
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    text-transform: uppercase;
}
.event-overlay .date-type .year{
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
}
.event-overlay .title {
    font-family: var(--font_Oswald);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
}
.tag1{
  color: #ffffff;
  font-family: var(--font_Oswald);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
}
.btn-thtme {
    justify-content: center;
    min-width: 140px;
    height: 45px;
    background-color: var(--color_theme) !important;
    color: #fff !important;
    border-radius: 5px !important;
    font-family: var(--font_arvo) !important;
    font-style: normal;
    font-weight: 400 !important;
    font-size: 14px !important;
    text-transform: uppercase;
}
.btn-thtme:hover{
    background-color: var(--color_theme) !important;
    color: #fff !important;
}
.slick-next, .slick-prev{
width: 100px;
height: 100px;
}
.slick-next:before, .slick-prev:before {
    display: none;
}
.slick-next {
    background-image: url(../images/icon-right-arrow.svg);
    background-repeat: no-repeat;
    z-index: 9;
    right: -64px;
}
.slick-prev {
    background-image: url(../images/icon-left-arrow.svg);
    background-repeat: no-repeat;
    z-index: 9;
    left: -15px;
}
.slick-next:focus, .slick-next:hover, .slick-prev:focus, .slick-prev:hover{
    opacity: 1;
}
/*---- event page-----*/
.sec-all-event .event-box {
    position: relative;
    padding: 0;
    margin-bottom: 25px;
}
.sec-all-event .event-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 60.42%, rgba(0, 0, 0, 0.7) 100%);
    border-radius: 0px 0px 5px 5px;
    position: absolute;
    z-index: 0;
    bottom: 0;
    width: 100%;
    padding: 15px;
}
.sec-all-event .event-overlay .date-type{
    top: -158px;
}
/*
=================================================
footer 1 section
=================================================
*/
.bg-footer1{
    background-color: var(--color_theme);
    padding-top: 100px;
}
.custom-dark-card{
    border-radius: 5px 0px 0px 5px;
    padding: 50px;
    font-family: var(--font_arvo);
}
#map{
    width: 100%;
    height: 300px;
    filter: gray;
      /*-webkit-filter: grayscale(99%);*/
}
.address-box p {
    color: #fff;
    margin: 20px 0px;
}
.address-box p img {
    width: 25px;
    float: left;
    margin-right: 10px;
}
.custom-form-card {
    border-radius: 0px 5px 5px 0px;
    padding: 61px 50px;
    font-family: var(--font_arvo);
}
.custom-form-card form label{
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    color: #828282;
}
.custom-form-card form .form-control {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #030303;
    padding: 0px 0px 6px 0px;
}
.form-control:focus {
    background-color: #fff;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 0%);
}
/*----- footer 2------*/
.footer2 {
    
}
.custom-dark-card-shadow {
    flex-direction: column;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 14px 19px 0px rgb(0 0 0 / 25%);
    margin-top: 100px;
    margin-bottom: 50px;
}
.subscribe-title{
    color: #fff;
    font-family: var(--font_Oswald);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    text-align: center;
    display: grid;
}
.subscribe-title span{
    font-size: 16px;
}
.subscribe-form-sontrol {
    width: 100%;
    padding: 15px 150px 15px 12px;
    font-family: var(--font_Oswald);
    border: none;
}
.btn-absolute {
    position: absolute;
    right: 8px;
    top: 8px;
}
.footer-nav {
    mix-blend-mode: normal;
    border-bottom: 1px solid rgb(43 61 81 / 20%);
}
.footer-nav .f-nav-menu .nav-item .nav-link {
    font-family: var(--font_arvo);
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: var(--color_dark);
    padding: 5px 22px;
}
.ul-social .nav-item{display: inline-block;}
.ul-social .nav-item a img {
    width: 18px;
    padding: 6px 0px;
}
.img-f-logo{
    width: 100px;
}
.text-com {
    font-family: var(--font_arvo);
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: var(--color_dark_grey);
    text-decoration: none;
    padding: 7px;
}

/*
=================================================
*******************Shop page*********************
=================================================
*/
.btn-cart {
    border: 1px solid #FF3E19 !important;;
    border-radius: 5px;
    color: var(--color_theme) !important;;
    font-family: var(--font_arvo) !important;;
    text-transform: uppercase;
    background-color:transparent !important;;
}

.btn-cart:hover{
  background-color: #FF3E19 !important;
  color: #fff !important;
}
.pagination .page-item {
    margin-right: 12px;
}
.pagination .page-link {
    background-color: transparent;
    color: var(--color_dark);
    border: 1px solid rgb(0 0 0 / 30%);
}
.pagination .page-link:hover {
    background-color: var(--color_theme);
    color: #fff;
    border: 1px solid rgb(0 0 0 / 0%);
}
.title-filte {
    font-family: var(--font_Oswald);
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    text-transform: uppercase;
    color: var(--color_theme);
}
.filter-select {
    padding: 15px 20px;
    border: 1px solid #030303;
    border-radius: 5px;
    font-family: var(--font_arvo);
}

.filter-card {
    background: #F4F4F4;
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    padding: 20px 20px 30px;
    margin-bottom: 30px;
}
.filter-sec-title{
  font-family: var(--font_Oswald);
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  text-transform: capitalize;
  color: var(--color_dark);
  margin-bottom: 30px;
}
/*--- custom checkbox ---*/
.cus-check {
  display: block;
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  font-family: var(--font_arvo);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;

/* dark */

color: #030303;
}

/* Hide the browser's default checkbox */
.cus-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0px;
    right: 11px;
    height: 25px;
    width: 25px;
    background-color: #eee0;
    border: 1px solid #D9D9D9;
    border-radius: 2px;
}
.cus-check:hover input ~ .checkmark {
    background-color: #ccc0;
}
.cus-check input:checked ~ .checkmark {
    color: var(--color_theme);
    border: 1px solid var(--color_theme);
    border-radius: 2px;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cus-check input:checked ~ .checkmark:after {
  display: block;
}
.cus-check .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid var(--color_theme);
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/*--- end custom checkbox---*/

/*---range slider---*/
.slidecontainer {
    width: 100%;
    font-family: var(--font_arvo);
    color: var(--color_theme);
    font-weight: 400;
    font-size: 16px;
}
.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 7px;
    /* background: #d3d3d3; */
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.range-slider:hover {
  opacity: 1;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background: #fff;
  border: 7px solid #FF3E19;
  border-radius: 50px;
}

.range-slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #04AA6D;
  cursor: pointer;
}
/*-- end range slider--*/

/*
=================================================
*******************Shop details page*********************
=================================================
*/
.bg-product-dtls{
  padding: 100px 0px;
}
.product-details h2 {
    font-family: var(--font_Oswald);
    font-style: normal;
    font-weight: 400;
    font-size: 50px;
    color: var(--color_dark_grey);
    margin-bottom: 30px;
    text-transform: uppercase;
}
.product-details .sm-p {
    text-transform: capitalize;
    color: var(--color_dark);
    margin-bottom: 0px;
    font-family: var(--font_arvo);
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
}
.product-details .sm-p span{
  text-transform: uppercase;
  color: #888888;
}
.product-details .pro-price {
    font-family: var(--font_Oswald);
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: var(--color_theme);
    margin: 25px 0px;
}
.product-details .b-title{
  font-family: var(--font_Oswald);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--color-dark);
}
.product-details .b-desc{
  font-family: var(--font_arvo);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-dark);
}
.btn-outline-dark{
  font-family: var(--font_arvo);
  background: #F5F5F5;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 10px 20px;
}

/*
=================================================
******************* Cart page*********************
=================================================
*/
.font-15{ font-size: 15px !important;}
hr {border-top: 1px solid #D9D9D9;}
.cart-card{
    padding: 30px;
    background: #F4F4F4;
    border: 1px solid #D9D9D9;
    border-radius: 10px;
}
.text-dark-com{
    margin-bottom: 0px;
    font-family: var(--font_Oswald);
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--color_dark);
}
.text-dark-com span {
    float: right;
    font-size: 30px;
}
.text-neon-green{
    color: #21C489;
}
.total-amount{
    font-family: var(--font_Oswald);
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    text-transform: uppercase;
    color: var(--color_dark);
}
.hr-dark{
    border: 1px solid #192117;
}
/*
=================================================
******************* Checkout page*********************
=================================================
*/
.form-card{
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    padding: 20px;
}
.form-group .f-label {
    font-family: var(--font_Oswald);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    color: #888888;
    margin-bottom: 10px;
}
.form-control{
    min-height: 48px;
    background-color: #FFFFFF;
    border: 1px solid rgba(133, 142, 130, 0.5);
    border-radius: 8px;  
    font-family: var(--font_Oswald);
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    color: var(--color_dark_grey);
}
.form-group{
    position: relative;
}
.form-group .icon-envelope{
    position: absolute;
    right: 12px;
    top: 50px;
}
.intl-tel-input {
    width: 100%;
}
/*
=================================================
******************* Latest News page*********************
=================================================
*/
.news-card {
    background-repeat: no-repeat;
    background-size: cover;
}
.news-card .card-body {
    margin: 80px;
    padding: 28px;
    background-color: #FFFFFF;
    box-shadow: 0px 8px 15px rgb(0 0 0 / 25%);
    border-radius: 5px;
}
.text-dtls{
    font-family: var(--font_arvo);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: var(--color-dark);
}
.publish-date{
    font-family: var(--font_arvo);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    color: #888888;
}
.publish-date span{
    font-weight: 400;
}
/*
=================================================
******************* Contact US page*********************
=================================================
*/
.bg-contact {
    background-color: #c4c1a7;
    padding: 100px 0px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}
.contact-card {
    background: #FFFFFF;
    box-shadow: 0px 20px 30px rgb(102 106 245 / 13%);
    border-radius: 14px;
    padding: 60px;
}
.c-form-control {
    background-color: #F5F5F5;
    border: none;
    border-radius: 0;
}
.floted-ul {
    list-style: none;
    padding: 0;
    background-color: var(--color_theme);
    text-align: center;
    border-radius: 0px 10px 50px 0px;
    position: absolute;
    width: 50px;
    height: 171px;
    left: 1075.01px;
    top: 309px;
}
.icon-contact{
    float: left;
    margin-right: 20px;
}
.floted-ul li {
    
}
.floted-ul li a {
    line-height: 48px;
}
.ul-topic{
    padding: 0;
    list-style: none;
}
.ul-topic li {
    text-align: center;
    background: #D9D9D9;
    border-radius: 5px;
    padding: 10px 8px;
    margin-bottom: 10px;
    cursor: pointer;
    border: 1px solid #D9D9D9;
}
.ul-topic li:hover {
    border: 1px solid var(--color_theme);
}
.ul-topic li a {
    font-family: var(--font_arvo);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    color: var(--color_dark);
    text-decoration: none;
    display: block;
}
/*
=================================================
******************* About US page*********************
=================================================
*/
.bg-about{
    background: linear-gradient(180deg, #FF0000 0%, rgba(0, 0, 0, 0) 100%);
    padding: 100px 50px;
}
.title-about{
  font-family: var(--font_Oswald);
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 25px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;

}
.about-timeline {
  position: relative;
  margin: 0 auto;
}
.about-timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: #EEEFFE;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}
.about-timeline .box-container {
  padding: 10px 60px;
  position: relative;
  background-color: inherit;
  width: 50%;
}
.about-timeline .box-container span {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: var(--color_theme);
    top: -17px;
    border-radius: 50%;
    z-index: 1;
    text-align: center;
    line-height: 78px;
    font-family: var(--font_Oswald);
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
}
.about-timeline .box-container.left span{ right: -100px;}
.about-timeline .box-container.right span{ left: -100px;}
.about-timeline .left {
  left: 0;
}
.about-timeline .right {
    left: 50%;
    margin-top: -4%;
}
.about-timeline .left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 50px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}
.about-timeline .right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 50px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}
.about-timeline .right::after {
  left: -16px;
}
.about-timeline .content-box {
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: 6px;
}
/*
=================================================
******************* Publishers page*********************
=================================================
*/
.bg-glance{
    padding: 100px 0px;
}
.glance-card{
    margin-bottom: 50px;
}
.bg-partner {
    background-color: #c4c1a7;
    text-align: center;
    padding: 50px 0px;
}
.img-partner {
    width: 150px;
    padding: 9px;
}

/*
=================================================
******************* NEW WOOCOMMERCR SETUP *********************
=================================================
*/
.woocommerce nav.woocommerce-pagination ul, .woocommerce nav.woocommerce-pagination ul li {
    border-color: rgb(0 0 0 / 30%);
}
.woocommerce nav.woocommerce-pagination ul.page-numbers li:first-child {
    border-radius: 12px 0px 0px 12px;
}
.woocommerce-js nav.woocommerce-pagination ul li {
    margin: 0 2px 2px 0;
    border: 1px solid rgb(0 0 0 / 30%);
    padding: 0;
    display: inline-block;
    overflow: hidden;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers li:last-child {
    border-radius: 0px 12px 12px 0px;
}
.woocommerce nav.woocommerce-pagination ul li a{
        color: var(--color_dark);
}
.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--color_dark);
    color: #fff;
}
.woocommerce .woocommerce-result-count, .woocommerce-page .woocommerce-result-count {
    float: left;
    font-family: var(--font_Oswald);
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    text-transform: uppercase;
    color: var(--color_theme);
}
.woocommerce-js .variations select, .woocommerce-js .woocommerce-ordering select {
    padding: 15px 20px;
    border: 1px solid #030303;
    border-radius: 5px;
    font-family: var(--font_arvo);
    height: auto;
    width: 100%;
}
.c7-button-box{
    position:relative;
}
.c7-button-box .wpcf7-spinner {
    position: absolute;
    right: 0;
    top: 11px;
}
.wpcf7 input.wpcf7-form-control:not([type=submit]), .wpcf7 textarea.wpcf7-form-control {
    height: 61px;
}
.wpcf7-spinner,
.wpcf7-response-output,
.wpcf7-not-valid-tip,
.screen-reader-response {
    display: none !important;
}