@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Fira+Sans: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&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
    --primary:#AC1F28; 
    --dark:#2D2D2D; 
    --light:#AEAEAE;  
    --dred:#5e080d;  
    --accent:#E3C663;  
}
body {
  margin: 0; 
  font-family: "PT Sans", sans-serif;
  background-color: white;
}

h1,h2,h3,h4,h5,h6{
  font-family: "Noto Serif", serif;
}

p{
    font-size: calc(14px + .17vw);
    line-height: calc(28em / 18); 
}

a {
  color: #000;
}

.bg_prmy, .bg_h_prmy:hover{
  background-color: var(--primary);
}

.bg_drk, .bg_h_drk:hover{
  background-color: var(--dark);
}

.bg_dred, .bg_h_dred:hover{
  background-color: var(--dred);
}

.bg_w, .bg_h_w:hover{
  background-color: white;
}

.tc_w, .tc_h_w:hover{
 color: white;
}

.tc_prmy, .tc_h_prmy:hover{
 color: var(--primary);
}

.tc_drk, .tc_h_drk:hover{
 color: var(--dark);
}

.tc_dred, .tc_h_dred:hover{
 color: var(--dred);
}

.wc_btn{ 
    border: none;
    border-radius: 0.125rem; 
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding:1rem 2rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.2s ease-in;
    font-size: 1rem;
    line-height: 1.125;
}

.wc_btn_sm{
  padding: 0.7rem 1.5rem;
  font-size: 0.8rem;
  line-height: 14px;
}
/* header */

.wc_header {
    background-color: #fff;
    box-shadow: 0 0.25rem 0.5625rem rgba(0, 0, 0, 0.08);
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    padding: 10px 0px 6px;
}

.wc_header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  /*background-color: #fff;*/
}

.wc_header li a {
    display: block;
    padding: 10px 0px;
    text-decoration: none;
    font-size: calc(14px + .2vw);
    color: var(--dark);
}

.wc_header li a:hover{ 
    color: var(--primary);
}

.wc_header li a:hover,
.wc_header .menu-btn:hover {
  /*background-color: #f4f4f4;*/
}

.wc_header .logo {
    display: block;
    float: left;
    font-size: 31px;
    text-decoration: none;
    font-weight: 700;
    color: var(--dark);
    line-height: 23px;
    text-transform: uppercase;
}

.wc_header .logo:hover { 
    color: var(--dark);
}

.wc_header .logo span {
    font-size: 12.5px;
    display: block;
    color: gray;
    font-weight: 600;
    font-style: italic;
    margin-top: 6px;
    text-transform: initial;
    line-height: 1;
        padding-bottom: 6px;
}


/* menu */

.wc_header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.wc_header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 15px 20px;
    position: relative;
    user-select: none; 
    position: absolute;
    top: 13px;
    right: 0px;
}

.wc_header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.wc_header .menu-icon .navicon:before,
.wc_header .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.wc_header .menu-icon .navicon:before {
  top: 6px;
}

.wc_header .menu-icon .navicon:after {
  top: -6px;
}


/* menu btn */

.wc_header .menu-btn {
  display: none;
}

.wc_header .menu-btn:checked ~ .menu {
  max-height: 300px;
  border-top: 1px #e9e9e9 solid;
}

.wc_header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.wc_header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.wc_header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.wc_header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.wc_header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

.wc_social a{
 color: var(--primary);
 font-size: 18px;
}

.wc_social a:hover{
 color: var(--dark);
 transition: 0.6s all;
}


.wc_social {
    position: absolute;
    right: 80px;
    top: 19px;
}

/* 768px */

@media (min-width: 1100px) {
  .wc_header li {
    float: left;
  }
  .wc_header li a {
    padding: 0px 8px;
  }
  .wc_header .menu {
    clear: none;
    /*float: right;*/
    max-height: none;
  }
  .wc_header .menu-icon {
    display: none;
  }


.wc_social {
    position: unset;
    right: 0px;
    top: 0px;
}

.border-md-top{
  border-top: 1px solid #dee2e6!important;
}

.wc_header { 
    padding: 15px 0px 10px;
}

.wc_header_grid {
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    gap: 2rem;
}

/*.wc_header .logo { 
    font-size: 38px; 
    line-height: 23px;
} 

.wc_header .logo span {
    font-size: 12.5px; 
}*/

} 

footer .wc_social{
  display: none !important;
}
@media(max-width: 567px){
.wc_social{
  display: none !important;
}
footer .wc_social{
  display: flex !important;
}
}



/*Banner Css*/

.wc_banner h1 {
    color: var(--primary);
    font-size:clamp(24px, 3.7vw, 36px);
}


.wc_banner hr {
    background: var(--dark);
    opacity: 1;
    height: 0.1875rem;
    width: 10rem;
}

.wc_page_tlt{
  background-image: url(img/bnr2.jpg);
    background-size: cover; 
    background-position: top;
    position: relative;
}

.wc_page_tlt:after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.1;
}
 
.wc_page_tlt div{ 
  position: relative;
  z-index: 1;
}

.wc_page_tlt hr{ 
  background:white;
}

.wc_page_tlt h1{ 
  color:white;
  text-shadow: 0px 0px 2px black;
}



/* .wc_banner .wc_bnr_img {
    align-self: flex-end;
    margin-left: 0.3125rem;
    margin-right: -4.5rem;
} */

.wc_banner .wc_bnr_img img {
    max-height: 75vh;
    object-fit: contain;
    object-position: right;
}

@media(min-width: 1200px){
  /* .wc_banner .wc_bnr_img img {
    max-height: 48vh; 
    object-position: center;
  } */
}

/* @media(max-width: 991px){
  .wc_banner .wc_bnr_img { 
      margin-left: -5.6875rem;
      margin-right: -3.5rem;
  }  
} */

@media(max-width: 767px){
  .wc_banner .wc_bnr_img { 
      /* margin-left: auto;
      margin-right: auto; */
  }
  .wc_banner .wc_bnr_img img {
    max-height: 300px; 
    object-position: left;
}   
}

.wc_big_head{
  font-size:clamp(20px, 3vw, 30px);
}

.wc_sml_head{
  font-size:clamp(21px, 2.3vw, 28px);
}


.wc_prdct_sec .wc_article h4 {
      font-family: "Fira Sans", sans-serif;
    font-size: clamp(1.3rem, 1.3vw, 2rem);
    font-weight: 400;
}


.wc_review p{
  color:var(--accent); 
      font-family: "Noto Serif", serif;
}

.wc_review h5 { 
    font-style: italic;
    font-size: calc(14px + .1vw);
        margin-top: 16px;
        color: white;
} 

.wc_review .carousel-control-next-icon { 
    filter: invert(1);
    opacity: 1;
    right: 10px;
    position: absolute;
}

.wc_review .carousel-control-prev-icon { 
    filter: invert(1);
    opacity: 1;
    left: 10px;
    position: absolute;
}

.wc_review .item img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 100%;
}

.wc_review .item {
    padding-top: 90px;
}


.wc_review {
  position: relative;
}

.wc_review .owl-nav {
    position: absolute;
    top: 60%;
    left: 50%;
    display: flex;
    width: 100%;
    justify-content: space-between;
    transform: translate(-50%, -50%);
}

.wc_review .owl-nav button {
    background: transparent;
    border: none;
    font-size: 50px;
    color: var(--primary);
}

.wc_review .owl-nav button:hover { 
    color: var(--dark);
}

.wc_u_img_tlt {
    width: fit-content;
    margin: auto;
    text-align: center;
    margin-top: -90px;
}

img.wc_rvi_rimg {
    position: absolute;
    right: -10%;
    width: 250px;
    transform: translateY(-50%);
    top: 50%;
}

img.wc_rvi_limg {
    position: absolute;
    left: -3%;
    width: 150px;
    transform: translateY(-50%);
    top: 50%;
}

img.wc_bk_rimg {
    position: absolute;
    width: 400px !important;
    right: 29%;
    height: auto !important;
    z-index: -1;
    bottom: -7%;
}

img.wc_bk_rimg2 {
  position: absolute;
  width: 400px !important;
  right: -51%;
  height: auto !important;
  z-index: -1;
  top: -28%;
}

img.wc_wrk_limg {
    width: 200px;
    position: absolute;
    z-index: -1;
}

img.wc_wrk_limg2 {
  width: 200px;
  position: absolute;
  z-index: -1;
  bottom: -11%;
  right: -26%;
}

img.wc_wrk_lbimg {
  width: 200px;
  position: absolute;
  z-index: -1;
  bottom: -55px;
  left: 7%;
}

@media(min-width:991px){
/*  .wc_review .item img {
    width: 100%;
    height: 100%;
    margin: auto;
    object-fit: cover;
}*/
}

.wc_blog_sec{

}

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

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


.wc_blog_sec .wc_article h4, .wc_pblsd_atrcl h4 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: clamp(18px, 1vw, 20px);
}

.wc_blog_sec .wc_article p {
  /* font-weight: 300; */
  font-size: calc(14px + .13vw);
  line-height: 1.3;
  margin-top: 6px;
  padding-bottom: 2px;
}

.wc_blog_sec .wc_blog_ctn{
    padding: 22px 20px 0px; 
}

.wc_pblsd_atrcl{
  overflow: hidden;
}

.wc_pblsd_atrcl a {
  text-decoration: none;
  transition: 0.6s all;
} 

.wc_pblsd_atrcl h4 {
  transition: 0.6s all;
} 

.wc_pblsd_atrcl:hover h4 {
  color: var(--dark);
}

.wc_pblsd_atrcl:hover img {
  transform: scale(1.06);
}

.wc_blog_sec .wc_article {
  transition: 0.6s all;
  position: relative;
  background-color: #f8f9fa;
  padding-bottom: 15px;
  overflow: hidden;
}

.wc_blog_sec .wc_article:hover {
    box-shadow:0px 12px 26px 0px #d9d9d9;
}

.wc_blog_sec .wc_article a {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.wc_blog_sec .wc_article a.wc_cata {
  right: 5px;
  left: unset;
  width: auto;
  height: auto;
  padding: 4px 9px;
  text-decoration: none;
  font-weight: 600;
  line-height: initial;
  top: 5px;
  font-size: 14px;
  z-index: 2;
}

.wc_blog_sec .wc_article img, .wc_pblsd_atrcl img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    transition: 0.6s all;
}
.wc_blog_sec .wc_article:hover img {
  scale: 1.06;
}

.wc_book_show {
    //background-image: url(img/bbg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position-y: -9vh;
    background-position-x: right;
}

.wc_book_show img {
  height: 60vh;
  width: auto;
  width: 100%;
  object-fit: contain;
}


.wc_email_frm input {
    width: calc(100% - 160px);
    font-weight: 700;
    padding: 1.1rem 3rem;
    font-size: 1rem;
    border-radius: 0.125rem;
    border: none;
}

.wc_email_frm button{
  background-color:var(--accent);
}

.wc_sblog_sec .wc_blog_ctn { 
    background-color: #f8f9fa;
}

.wc_blg_dtl_page img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: top;
}

.wc_blg_dtl_page .wc_blog_ctn h4{
    color: var(--primary);
}

.wc_blg_dtl_page .wc_blog_ctn h4 {
    color: var(--primary);
    font-weight: 700;
    font-size: clamp(20px, 2vw, 44px);
}

.wc_ctn_frm .form-control {
    font-weight: 700;
    padding:0.6rem 0.8rem;
    font-size: 1rem;
    border-radius: 0.125rem;
}

.wc_sidebar h4 {
  margin-bottom: 20px;
}


.wc_sidebar {
  border-bottom: 1px lightgrey solid;
  padding-bottom: 15px;
  margin-bottom: 25px;
} 

.wc_sidebar:last-child {
  border: none;
  padding-bottom: 0px;
}

.wc_sidebar input.form-control {
  padding: 10px 12px;
}
  
  .wc_rcnt_blg li {
  display: flex;
  align-items: center;
  gap: 2%;
  box-shadow: 0px 0px 5px 0px #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 20px;
}

.wc_rcnt_blg li div {
  padding: 6px 8px;
}

.wc_rcnt_blg li a {
  text-decoration: none;
  font-size: calc(14px + .2vw); 
} 

.wc_rcnt_blg li h5 {
margin-bottom:15px;
}

.wc_rcnt_blg li a:hover{
color: var(--primary);
}
  
  
.wc_rcnt_blg li img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.wc_page_tlt_prfl img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 100%;
  border: 5px white solid;
  box-shadow: 0px 0px 5px 1px #b5b5b5;
}

.wc_page_tlt_prfl{
  color: white;
}

.wc_page_tlt_prfl a {
  color: white;
  text-decoration: none;
  font-weight: 400;
}

.wc_emty_spce_xl {
  padding: 40px 0px;
}

.wc_emty_spce_lg {
  padding: 30px 0px;
}

.wc_emty_spce_md {
  padding: 20px 0px;
}

.wc_pblsd_atrcl li {
  margin-bottom: 10px;
  font-size: calc(14px + .3vw);
  line-height: calc(28em / 18);
}

.wc_pblsd_atrcl li a:hover{
  color:var(--primary);
}


.nav.nav-tabs .nav-link { 
  color: var(--dark); 
  font-size: clamp(16px, 1.2vw, 20px);
}

.nav-tabs .nav-link.active, .nav-pills .show>.nav-link {
  color: #fff;
  background-color: var(--primary);
}

.wc_social a:last-child img {
  width: 18px;
  height: auto;
  position: relative;
  top: -2.5px;
}

.wc_comment img {
  width: 55px;
  height: 55px;
  border-radius: 100%;
  object-fit: cover;
  border: 1px #cdcdcd solid;
}

.wc_comment {
  border-bottom: 1px #f3f3f3a8 solid;
  margin-bottom: 20px;
  padding-bottom: 15px;
}


.wc_all_cmt h5 {
  position: relative;
  margin-bottom: 40px;
}

.wc_comment h6 {
  font-weight: 700;
}

.wc_all_cmt h5:after {
  position: absolute;
  content: "";
  width: calc(100% - 140px);
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  height: 2px;
  background-color: var(--light);
}

.wc_all_cmt h5 small {
  color: var(--light);
  width: 25px;
  height: 25px;
  border: 1px var(--light) solid;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-left: 3px;
  position: relative;
  top: -2px;
}

.wc_cmt_rply_frm h5:after{
  display:none;
}
 
.wc_cmt_reply {
  margin-top: 25px;
}

.wc_comment div p { margin-bottom: 5px; }

@media(max-width: 991px){
  .wc_review .carousel-control-next-icon{
    right:-40px;
  }
  .wc_review .carousel-control-prev-icon {
   left:-40px;
  }
  .wc_book_show { 
    background-size: auto 65%;
    background-position-y: -9vh;
}
}


@media(max-width: 767px){
.wc_book_show { 
    background-size: 362px; 
    background-position-x: 0;
    background-position-y: top;
} 

.wc_btn { 
    padding:0.8rem 1rem; 
    font-size: 0.9rem;
}
.wc_btn_sm {
    padding: 0.75rem 1.5rem; 
}

.wc_email_frm input { 
    padding: 0.8rem 1rem; 
}
.wc_blog_sec .wc_blog_ctn{ 
    padding: 20px 15px 0px;
}

img.wc_bk_rimg2 { 
  width: 300px !important;
  right: 0; 
}

img.wc_wrk_limg2 { 
  left: 34%;
  right: auto;
}

.wc_book_show img {
  height: 48vh; 
}

img.wc_bk_rimg { 
  width: 300px !important;   
  bottom: -14%;
}

}


@media(max-width: 576px){ 

.wc_email_frm input {
    width: calc(100% - 0px);
    margin-bottom: 10px; 
}

.wc_email_frm button {
    width: calc(100% - 0px); 
}

.wc_book_show img {
    height: auto;
    width: 100%;
    object-fit: contain;
}

.wc_book_show { 
    background-size: 264px;  
} 

img.wc_bk_rimg, img.wc_wrk_lbimg{
  display: none;
}

.wc_review .item img {
    width: 100px;
    height: 100px; 
}

.wc_u_img_tlt { 
    margin-top: -60px;
}

.wc_header .logo { 
    font-size: 29px; 
}

.wc_header .logo span {
    font-size: 11.8px; 
}

.wc_emty_spce_xl {
  padding: 25px 0px;
}
.wc_emty_spce_lg {
  padding: 20px 0px;
}
.wc_emty_spce_md {
  padding: 15px 0px;
}

.wc_review .item {
  padding-top: 70px;
}

.wc_cstm_nav {
   display: block;
 }
 .nav.nav-tabs .nav-link { 
   width: 100%;
 }

}

@media(max-width:767px){
  .wc_comment img {
    width: 40px;
    height: 40px;
  }
}