/*# Table of content
 ## DEFAULT CSS
 ## SLIDER ARROWS AND DOTS CSS
 ## Code Clever CSS
 ## PAGINATION CSS
 ## SCROLL UP CSS
 ## HEADING CSS
 ## ICON BOX CSS
 ## ACCORDION/FAQ
 ## VIDEO BOX
 ## LIST
 ## CONTACT FORM 7
 ## TESTIMONIAL
 ## MY ACCOUNT PAGE
 ## CUSTOM CSS
 #*/

:root {
  --brand-color: #173E68;
  --hover-color: #C11B2E;
  --cc-title-color: #173E68;
  --cc-text-color: #6C7275;
  --cc-btn-color: #068D9D;
  --cc-border-color: #dedddd;
  --cc-black: #000000;
  --cc-white: #FFFFFF;
  --cc-title-font: 'Inter', sans-serif;
  --cc-text-font: 'Poppins', sans-serif;
  --cc-box-shadow: 0 0 16px 0 rgb(0, 0, 0, .12);
  --btt-opacity: rgba(23, 62, 104, .5);
  --cc-transition: .5s;
  --border-radius-sm: 4px;
  --border-radius-lg: 8px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,body {
	overflow-x: hidden;
  font-family: var(--cc-text-font);
  color: var(--cc-text-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  background: var(--cc-white);
}
h1,h2,h3,h4,h5,h6,
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--cc-text-font);
  color: var(--cc-title-color);
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 0;
}
h1 {
  font-size: 42px;
  font-weight: 700;
}
h2 {
  font-size: 32px;
  font-weight: 700;
  font-family: var(--cc-title-font);
}
h3 {
  font-size: 24px;
  font-weight: 600;
}
h4 {
  font-size: 22px;
  font-weight: 500;
}
h5 {
  font-size: 18px;
  font-weight: 400;
}
h6 {
  font-size: 14px;
  font-weight: 400;
}
button,
input[type="submit"],
a {
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
a,
a:hover {
  color: var(--brand-color);
}

input[type="date"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="url"],
select,
textarea {
  border: 1px solid var(--cc-btn-color);
  outline: none;
  padding: 4px;
  height: 46px;
}

input:focus,
textarea:focus {
	border-color: var(--cc-btn-color)!important;
	outline: none;
}

@media all and (max-width: 767px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 20px;
  }
}

/**********************************
## SLIDER ARROWS AND DOTS CSS
**********************************/
button.slick-arrow,
.swiper_prev,
.swiper_next {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  border: none;
  outline: none;
  cursor: pointer;
  background: var(--brand-color);
  color: var(--cc-white);
  border-radius: 4px;
  position: absolute;
  bottom: calc(50% - 25px);
  z-index: 1;
  transition-duration: var(--cc-transition);
}
button.slick-arrow:hover,
.swiper_prev:hover,
.swiper_next:hover,
button.slick-arrow:focus {
  background-color: var(--hover-color);
  color: var(--cc-white);
}
.swiper_prev,
.swiper_next {
  font-size: 20px;
}
button.slick-next.slick-arrow,
.swiper_next {
  right: -77px;
}
button.slick-arrow::before {
  content: "\f061";
  font-family: 'Font Awesome 6 free';
  font-size: 20px;
  font-weight: 900;
}
button.slick-prev.slick-arrow::before {
  content: "\f060";
}
button.slick-prev.slick-arrow,
.swiper_prev {
  right: calc(100% + 25px);
}
ul.slick-dots li button,
.swiper_pagination span {
  width: 16px;
  height: 16px;
  padding: 0;
  font-size: 0;
  border: none;
  outline: none;
  background-color: var(--hover-color);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  opacity: 1;
  display: block;
  transition: var(--cc-transition);
}
ul.slick-dots,
.swiper_pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  width: 100%;
  position: absolute;
  bottom: -60px;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  z-index: 3;
}
ul.slick-dots li.slick-active button {
  background-color: var(--brand-color);
}
.carousel_active .slick-list {
  margin-left: -12px;
  margin-right: -12px;
}
.slick-slide {
  margin-left: 12px;
  margin-right: 12px;
}

/******************
* Code Clever CSS
******************/
.transition_sm,
.tr_in,
.tr_in * {
  transition: var(--cc-transition);
  -webkit-transition: var(--cc-transition);
  -moz-transition: var(--cc-transition);
  -ms-transition: var(--cc-transition);
  -o-transition: var(--cc-transition);
}
.text_left {
  text-align: left;
}
.text_center {
  text-align: center;
}
.text_right {
  text-align: right;
}
/* color style start */
.text_brand {
  color: var(--brand-color)
}
.text_hover {
  color: var(--hover-color)
}
.text_title {
  color: var(--cc-title-color)
}
.text_white {
  color: var(--cc-white)
}
.text_black {
  color: var(--cc-black)
}
.h_text_brand:hover {
  color: var(--brand-color)
}
.h_text_hover:hover {
  color: var(--hover-color)
}
.h_text_title:hover {
  color: var(--cc-title-color)
}
.h_text_white:hover {
  color: var(--cc-white)
}
.h_text_black:hover {
  color: var(--cc-black)
}
/* color style end */

/* background style start */
.bg_brand {
  background-color: var(--brand-color)
}
.bg_hover {
  background-color: var(--hover-color)
}
.bg_title {
  background-color: var(--cc-title-color)
}
.bg_white {
  background-color: var(--cc-white)
}
.bg_black {
  background-color: var(--cc-black)
}
.h_bg_brand:hover {
  background-color: var(--brand-color)
}
.h_bg_hover:hover {
  background-color: var(--hover-color)
}
.h_bg_title:hover {
  background-color: var(--cc-title-color)
}
.h_bg_white:hover {
  background-color: var(--cc-white)
}
.h_bg_black:hover {
  background-color: var(--cc-black)
}
/* background style end */

/* margin style start */
.mx_auto {
  margin-left: auto;
  margin-right: auto;
}
.mx_10 {
  margin-left: 10px;
  margin-right: 10px;
}
.mt_0 {
  margin-top: 0;
}
.mt_10 {
  margin-top: 10px;
}
.mt_20 {
  margin-top: 20px;
}
.mt_30 {
  margin-top: 30px;
}
.mt_40 {
  margin-top: 40px;
}
.mt_50 {
  margin-top: 50px;
}
.mt_60 {
  margin-top: 60px;
}
.mt_70 {
  margin-top: 70px;
}
.mt_80 {
  margin-top: 80px;
}
.mt_90 {
  margin-top: 90px;
}
.mb_0 {
  margin-bottom: 0;
}
.mb_10 {
  margin-bottom: 10px;
}
.mb_20 {
  margin-bottom: 20px;
}
.mb_30 {
  margin-bottom: 30px;
}
.mb_40 {
  margin-bottom: 40px;
}
.mb_50 {
  margin-bottom: 50px;
}
.mb_60 {
  margin-bottom: 60px;
}
.mb_70 {
  margin-bottom: 70px;
}
.mb_80 {
  margin-bottom: 80px;
}
.mb_90 {
  margin-bottom: 90px;
}
.mb_100 {
  margin-bottom: 100px;
}
/* margin style end */

/* padding style start */
.p_0 {
  padding: 0;
}
.p_10 {
  padding: 10px;
}
.p_20 {
  padding: 20px;
}
.px_0 {
  padding-left: 0;
  padding-right: 0;
}
.px_10 {
  padding-left: 10px;
  padding-right: 10px;
}
.px_20 {
  padding-left: 20px;
  padding-right: 20px;
}
.py_0 {
  padding-top: 0;
  padding-bottom: 0;
}
.py_10 {
  padding-top: 10px;
  padding-bottom: 10px;
}
.py_20 {
  padding-top: 20px;
  padding-bottom: 20px;
}
.pt_0 {
  padding-top: 0;
}
.pt_10 {
  padding-top: 10px;
}
.pt_20 {
  padding-top: 20px;
}
.pt_30 {
  padding-top: 30px;
}
.pt_40 {
  padding-top: 40px;
}
.pb_10 {
  padding-bottom: 10px;
}
.pb_20 {
  padding-bottom: 20px;
}
.pb_30 {
  padding-bottom: 30px;
}
.pb_40 {
  padding-bottom: 40px;
}

/* padding style end */
.grid {
  display: grid;
}
.flex {
  display: flex;
}
.i_flex {
  display: inline-flex;
}
.wrap {
  flex-wrap: wrap;
}
.block {
  display: block;
}
.none {
  display: none;
}
.i_block {
  display: inline-block;
}
.column {
  flex-direction: column;
}
.jc_left {
  justify-content: flex-start;
}
.jc_center {
  justify-content: center;
}
.jc_right {
  justify-content: right;
}
.jc_between {
  justify-content: space-between;
}
.jc_end {
  justify-content: flex-end;
}
.ai_start {
  align-items: start;
}
.ai_center {
  align-items: center;
}
.ai_end {
  align-items: end;
}
.flex-auto {
  flex: 0 0 auto;
}
.flex-grow-1 {
  flex-grow: 1;
}
.mkp_w_100 {
  width: 100%;
}
.mkp_w_50 {
  width: 50%;
}
.mkp_h_100 {
  height: 100%;
}
.mkp_h_50 {
  height: 50%;
}
.z_index_1 {
  z-index: 1;
}
.oh {
  overflow: hidden;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.gap_10 {
  gap: 10px;
}
.gap_20 {
  gap: 20px;
}
.gap_30 {
  gap: 30px;
}
.fs_16 {
  font-size: 16px;
}
.fs_32 {
  font-size: 32px;
}
.box {
  position: relative;
}
.box::before,
.box::after {
  position: absolute;
  content: '';
  transition: var(--cc-transition);
  -webkit-transition: var(--cc-transition);
  -moz-transition: var(--cc-transition);
  -ms-transition: var(--cc-transition);
  -o-transition: var(--cc-transition);
}
.box_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mkp_shadow {
  box-shadow: var(--cc-box-shadow);
}
.mkp_round_sm {
  border-radius: var(--border-radius-sm);
  -webkit-border-radius: var(--border-radius-sm);
  -moz-border-radius: var(--border-radius-sm);
  -ms-border-radius: var(--border-radius-sm);
  -o-border-radius: var(--border-radius-sm);
}
.mkp_round_lg {
  border-radius: var(--border-radius-lg);
  -webkit-border-radius: var(--border-radius-lg);
  -moz-border-radius: var(--border-radius-lg);
  -ms-border-radius: var(--border-radius-lg);
  -o-border-radius: var(--border-radius-lg);
}
.mkp_icon i {
  display: inline-block;
}
.page_title h3 a:hover {
  color: var(--brand-color);
}

/* manu css  */
.header-menu .menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  list-style: none;
  padding-left: 0
}
.header-menu .menu li a {
  display: block;
  color: var(--hover-color);
  font-size: 16px;
  font-family: 'Poppins', Sans-Serif;
  font-weight: 500;
  transition: .5s;
  padding: 0 16px;
}
.header-menu .menu li a:hover {
  color: var(--brand-color);
}

/* menu css */
.justify_icon {
  width: 28px;
  height: 22px;
  margin: 0 12px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
}
.justify_icon span {
  width: 100%;
  height: 2px;
  background-color: var(--brand-color);
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.sticky.trp_bg .justify_icon span {
  background-color: white;
}
.justify_icon span:last-child {
  margin-bottom: 0;
}
.justify_icon:hover span:nth-child(2) {
  width: 28px;
}
/* Menu close icon css */
.justify_icon.open span:nth-child(2) {
  width: 0;
  transition: 0s;
  -webkit-transition: 0s;
  -moz-transition: 0s;
  -ms-transition: 0s;
  -o-transition: 0s;
}
.justify_icon.open span {
  position: absolute;
  top: 8px;
  width: 88%;
}
.justify_icon.open span:first-child {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
}
.justify_icon.open span:last-child {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
}
.mm_close,
.menu_sh_wrapper {
  display: none;
}
/* menu responsive css */
@media all and ( max-width: 767px ) {
  .menu-area {
    padding: 30px 10px;
    background: white;
  }
  nav.header-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 300px;
    background: white;
    height: 100vh;
    padding-top: 90px;
    z-index: 99999;
    overflow: auto;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
  }
  nav.header-menu.open {
    left: 0
  }
  .header-menu .menu {
    flex-direction: column;
  }
  .close_icon {
    color: var(--brand-color);
    font-size: 30px;
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 99999;
    cursor: pointer;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
  }
  .menu_sh_wrapper {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }
  .mm_close {
    top: 24px;
    right: 24px;
  }
  .mm_close,
  .menu_sh_wrapper {
    display: block ;
  }
}
/* arrow css */
.cst_arrow {
  width: 45px;
  height: 45px;
  Font-size: 16px;
  color: var(--cc-white);
  background-color: var(--hover-color);
  position: absolute;
  right: -20px;
  z-index: 1;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.cst_arrow.swiper_prev {
  left: 0;
  right: auto;
}

/* button css */
.mkp_btn {
  background-color: var(--brand-color);
  color: var(--cc-white);
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  font-family: var(--cc-text-font);
  padding: 20px 40px;
  position: relative;
  z-index: 1;
  border: none;
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--cc-transition);
  border-radius: 5px;
}
.mkp_btn:hover {
  background: var(--hover-color);
  color: var(--cc-white);
}

/*======================
## PAGINATION CSS
======================*/
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 60px;
  gap: 12px
}
.pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px
}
.pagination a,
.pagination span {
  width: 40px;
  height: 40px;
  border: 1px solid var(--cc-border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
  border-radius: 4px;
}
.pagination span.current,
.pagination a:hover {
  background-color: var(--brand-color);
  color: var(--cc-white);
  border-color: var(--brand-color);
}
@media all and (max-width: 575px) {
  .pagination a,
  .pagination span{
	width: 40px;
	height: 40px;
  }
}

/*======================
## SCROLL UP CSS
======================*/
.back-to-top-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  box-shadow: inset 0 0 0 2px var(--btt-opacity);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 200ms linear;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -webkit-transform: translateY(15px);
  -moz-transform: translateY(15px);
  -ms-transform: translateY(15px);
  -o-transform: translateY(15px);
}
.back-to-top-wrap.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.back-to-top-wrap svg path { 
  fill: none; 
}
.back-to-top-wrap svg.progress-circle path {
  stroke: var(--brand-color);
  stroke-width: 4;
  box-sizing:border-box;
  transition: all 200ms linear;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
}
.back-to-top-wrap i {
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: 0;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: var(--brand-color);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

/*===================================
## HEADING CSS
===================================*/
.mkp_heading span {
  color: var(--brand-color);
}

/*===================================
## ICON BOX CSS
===================================*/
.box {
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}

/*===================================
## ACCORDION/FAQ
===================================*/
.accordion-button:focus {
  box-shadow: inherit;
}
.accordion-body {
  display: none;
}
.accordion-item {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  background-color: var(--cc-white);
}
.accordion-item:not(:last-child) {
  margin-bottom: 20px;
}
.accordion-header {
  margin-bottom: 0;
  margin-top: 0;
}
.accordion-button {
  width: 100%;
  color: var(--cc-title-color);
  background-color: var(--cc-white);
  text-align: left;
  padding: 20px 30px 20px 20px;
  font-size: 18px;
  font-family: var(--cc-title-font);
  border-width: 0 0 0 0;
  border-style: solid;
  border-color: #DDDDDD;
  line-height: 22px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  display: block;
  white-space: wrap;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accordion-button::before {
  content: '\f0da';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cc-text-color);
  border: none;
  background: transparent;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  transform: translateY(-50%);
  transition: .5s;
}
.active .accordion-button::before {
  content: '\f0d8';
}
.accordion-body {
  padding: 30px;
}
@media all and ( max-width: 767px ) {
  .accordion-button {
    font-size: 16px;
    padding: 15px 30px 15px 15px;
  }
  .accordion-button::before {
    right: 15px;
    width: 18px;
    height: 18px;
    font-size: 14px;
  }
  .accordion-body {
    padding: 20px;
    font-size: 16px;
  }
}

/*===================================
## VIDEO BOX
===================================*/
.video_image img {
  display: block;
}
.video_btn_wrap {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.video_btn_wrap a {
  width: 60px;
  height: 60px;
  display: inline-block;
  color: var(--cc-white);
  background-color: var(--brand-color);
  text-align: center;
  line-height: 60px;
  padding: 0;
  font-size: 20px;
  border-radius: 50%;
  position: relative;
}
.video_btn_wrap a::before,
.video_btn_wrap a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--brand-color);
  z-index: -1;
  border-radius: 50%;
  animation: video-overlay 2s normal infinite;
  -webkit-animation: video-overlay 2s normal infinite;
}
.video_btn_wrap a::after {
  animation-delay: .5s;
}
@keyframes video-overlay {
  0% {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
  }
}
.video_area.style-2 .video_btn_wrap a::before,
.video_area.style-2 .video_btn_wrap a::after {
  display: none;
}

/*===================================
## LIST
===================================*/
ol, ul {
  padding-left: 32px;
  margin-bottom: 32px
}
.s_list ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.s_list ul li {
  display: flex;
  align-items: start;
  gap: 8px;
}
.s_list ul li i {
  margin-top: 3px;
}
.mkp_tabs ul li,
.s_list ul li,
.team_socials li,
.product-categories li,
.filter_buttons li,
.portfolio_categories li {
  list-style: none;
}

/*===================================
## CONTACT FORM 7
===================================*/
.cr7 > p:has(.wpcf7-spinner) {
  position: relative;
}
.wpcf7-spinner {
  position: absolute;
  left: 50%;
  bottom: 50%;
	transform: translate( -50%, -50% );
}
.wpcf7 .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -4px;
}
.wpcf7 .row > div {
  flex: 0 0 auto;
  padding: 0 4px;
  width: 100%;
}
.wpcf7 .grid.grid_cols_3 {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}
.wpcf7 .wpcf7-list-item {
  margin-left: 0;
  display: flex;
}
.mkp_cf7 label {
  width: 100%;
}
input[type="checkbox"], input[type="radio"] {
  width: auto!important;
  height: auto!important;
}
.wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
}
.mkp_cf7 input, 
.mkp_cf7 textarea {
  margin-top: 12px;
}
@media all and ( max-width: 767px ) {
  .wpcf7 .grid.grid_cols_3 {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
/* subscribe form css */
.subscribe_form input {
  margin-top: 0;
  height: 48px;
  border-radius: 4px;
}

.subscribe_form button {
  padding: 0;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 36px;
  height: 46px;
  border-radius: 4px;
  justify-content: start;
}
.subscribe_form input::placeholder {
  color: inherit;
}

/*===================================
## TESTIMONIAL
===================================*/
.tst_title .designation {
  font-family: var(--cc-text-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  margin-top: 1px;
}
.quote_icon i {
  display: inline-block;
}
.mkp_tst .testi_thumb img {
  width: 60px;
  margin: 0px 12px 0px 0px;
  border-radius: 50% 50% 50% 50%;
}

/*===================================
## MY ACCOUNT PAGE
===================================*/
.woocommerce-account .woocommerce-MyAccount-navigation {
  background: white;
  padding: 20px;
  border-radius: 10px;
}
nav.woocommerce-MyAccount-navigation ul li {
  list-style: none;
}
nav.woocommerce-MyAccount-navigation ul li a {
  padding: 10px 0;
  display: block;
}
.woocommerce-account .woocommerce-MyAccount-content {
  background: var(--cc-white);
  padding: 24px;
  border-radius: 10px;
}
.woocommerce-EditAccountForm.edit-account button.woocommerce-Button.button {
  margin-top: 16px;
}
.woocommerce-EditAccountForm.edit-account button.woocommerce-Button.button,
.wc-block-components-button:not(.is-link),
.actions button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-mini-cart__buttons .button.wc-forward,
.woocommerce-button,
.comment-form input[type=submit],
.single_add_to_cart_button,
.return-to-shop a,
.mkp_btn.buy_now_direct_button,
.wc-forward {
  background-color: transparent!important;
  color: var(--cc-btn-color)!important;
  border: 1px solid var(--cc-btn-color)!important;
  border-radius: 5px!important;
  font-weight: 400!important;
  font-size: 16px!important;
  line-height: 24px!important;
  padding: 10px 25px!important;
  text-decoration: none!important;
  transition: background-color .4s!important;
  outline: none!important;
  box-shadow: none!important;
}
.woocommerce-EditAccountForm.edit-account button.woocommerce-Button.button:hover,
.wc-block-components-button:not(.is-link):hover,
.actions button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-button:hover,
.woocommerce-mini-cart__buttons .button.wc-forward:hover,
.woocommerce-mini-cart__buttons .button.wc-forward.checkout,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.comment-form input[type=submit]:hover,
.single_add_to_cart_button:hover,
.return-to-shop a:hover,
.mkp_btn.buy_now_direct_button,
.wc-forward:hover {
  color: var(--cc-white)!important;
  background-color: var(--cc-btn-color)!important
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-mini-cart__buttons .button.wc-forward.checkout:hover,
.mkp_btn.buy_now_direct_button:hover {
  background-color: var(--hover-color)!important;
  border-color: var(--hover-color)!important;
}
.mkp_btn.buy_now_direct_button {
  width: 100%;
  padding: 13px 25px!important;
  font-size: 18px!important;
  font-weight: 500!important;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
  margin-top: 6px;
}
.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
  border: 1px solid var(--cc-btn-color);
  font-size: 16px;
  color: var(--cc-text-color);
}
.woocommerce-MyAccount-content fieldset {
  border: 1px solid var(--cc-btn-color);
  padding: 24px;
  border-radius: 10px;
}
.woocommerce-page #content table.cart td.actions .input-text, .woocommerce-page table.cart td.actions .input-text {
  width: 150px;
  height: 46px;
  border: 1px solid var(--cc-btn-color);
}
.woocommerce .cart-collaterals .cart_totals h2, .woocommerce-page .cart-collaterals .cart_totals h2 {
  margin-bottom: 12px;
}
.woocommerce-cart .entry-title {
  margin-bottom: 16px
}
.woocommerce-cart .alignwide {
  margin: 0
}
tr.woocommerce-cart-form__cart-item.cart_item .product-quantity input[type=number] {
  padding: 0;
  height: 34px;
  border: 1px solid var(--cc-btn-color);
  background: transparent;
}
.woocommerce .woocommerce-result-count {
  margin: 16px 0 1em;
}
.woocommerce .woocommerce-ordering {
  margin: 0 0 36px;
}

/* Header Mini Cart css */
.cart-btn i {
  font-size: 18px;
}
span.mini-cart-count {
  position: absolute;
  top: 4px;
  left: 18px;
  font-size: 10px;
  padding: 2px;
  background-color: var(--hover-color);
  line-height: 1;
  color: var(--cc-white);
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.cart-btn {
  cursor: pointer;
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid #F6F6F680;
  border-radius: 4px;
  padding: 10px 4px 4px 6px;
}
.trp_bg .cart-btn i {
  color: var(--cc-white);
  transition: 0s;
}
.mini_shopping_cart {
  position: absolute;
  top: 100%;
  right: -14px;
  width: 320px;
  z-index: 99;
  background: var(--cc-white);
  padding: 16px;
  box-shadow: var(--cc-box-shadow);
  opacity: 0;
  visibility: hidden;
  transform-origin: top;
  transform: scaleY(0);
  transition: .5s;
  max-height: 380px;
  overflow: auto;
  border-radius: 0 0 4px 4px;
}
.cart-btn:hover .mini_shopping_cart:has(.widget_shopping_cart) {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
}
.widget_shopping_cart_content p {
  margin-bottom: 0;
}
.mini_shopping_cart .woocommerce-mini-cart__buttons.buttons a {
  padding: 8px 24px!important;
}
.woocommerce-mini-cart .woocommerce .widget_shopping_cart .cart_list li, .woocommerce-mini-cart .woocommerce.widget_shopping_cart .cart_list li {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--cc-border-color);
  padding-left: 28px;
}
.woocommerce-mini-cart .woocommerce .widget_shopping_cart .total,
.woocommerce-mini-cart .woocommerce.widget_shopping_cart .total {
  border-top: 0px solid var(--cc-border-color);
  padding: 4px 0 0px;
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 16px;
}
.woocommerce-mini-cart .woocommerce ul.cart_list li img, .woocommerce-mini-cart .woocommerce ul.product_list_widget li img {
  float: left;
  margin-left: 0;
  width: 60px;
  margin-right: 10px;
}
.woocommerce ul.cart_list li a, .woocommerce ul.product_list_widget li a {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
}
.woocommerce .widget_shopping_cart .cart_list li a.remove, .woocommerce.widget_shopping_cart .cart_list li a.remove {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 20px;
}
.woocommerce ul.cart_list li .quantity, .woocommerce ul.product_list_widget li .quantity {
  font-size: 14px;
}

/* product item css */
.product_items {
  list-style: none;
  margin-bottom: 0!important;
  padding-left: 0!important;
}
.product_items li {
  list-style: none;
}
.product_item {
  display: flex;
  flex-direction: column;
  padding: 12px 12px 15px 12px;
  box-shadow: 0px 0px 4px 0px #173E6880;
  border-radius: 16px;
}
.product_item .product_thumbnail a {
  display: flex;
  justify-content: center;
}
.product_item .product_thumbnail img {
  border-radius: 10px;
}
.product_item h3.product_title {
  font-weight: 600;
  font-size: 16px!important;
  line-height: 20px;
  padding: 21px 0 22px!important;
}
.product_item .product_price_rating .product_price {
  font-weight: 600;
  font-size: 24px;
  line-height: 20px;
  color: var(--cc-title-color);
  display: flex;
  flex-direction: column;
}
.product_item .product_price_rating .product_price ins {
  text-decoration: none;
}
.product_item .product_price_rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 23px;
}
.product_item .product_cart {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 14px;
}
.product_item .product_cart .quantity_wrapper {
  background: #068D9D1A;
  display: flex;
  justify-content: space-between;
  border-radius: 5px;
}
.product_item .product_cart .quantity_wrapper > * {
  border: none;
  outline: none;
  background: transparent;
  font-size: 20px;
  text-align: center;
  color: var(--cc-title-color);
  padding: 8px 12px!important;
}
.product_item.sold_out .product_cart .quantity_wrapper {
  background: #C8102E80;
}
.product_item.sold_out .product_cart .quantity_wrapper > * {
  color: var(--cc-white)
}
.product_item .product_cart button {
  margin: 0!important;
}
.product_item .product_cart button.add_to_cart_button {
  padding: 0;
  font-size: 25px;
  background: #173E68E5!important;
  color: var(--cc-white)!important;
  border: none!important;
}
.product_item .product_cart button.add_to_cart_button:hover {
  background: var(--cc-btn-color)!important;
  color: var(--cc-white)!important;
}
.product_item .product_cart button.add_to_cart_button.added {
  display: none!important;
}
.product_item .product_cart a.added_to_cart {
  font-size: 0!important;
  background: #173E68E5!important;
  text-align: center;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product_item .product_cart button.add_to_cart_button:disabled {
  opacity: 0.6;
  color: var(--cc-white)!important;
  background: #173E68E5!important;
}
.product_item .product_cart .added_to_cart::before {
  font-family: WooCommerce;
  content: "\e017";
  margin-left: .53em;
  vertical-align: bottom;
  font-size: 16px;
  text-align: center;
  color: var(--cc-white);
  margin-left: 0;
  font-size: 25px;
}
/* Spinner container */
.product_item .add_to_cart_button.loading i {
  position: relative;
}
.product_item .add_to_cart_button.loading i::before {
  content: '';
}
.product_item .add_to_cart_button.loading i::after,
.product_carousel .product_item .product_cart_btn .add_to_cart_button.loading::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 0;
  border: 2px solid var(--cc-white);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
}
@keyframes spin {
  0% { rotate: 0deg; }
  100% { rotate: 360deg; }
}

.product_item .rating .average_rating_number {
  color: var(--cc-title-color);
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
}
.product_item .rating i {
  background: #F9A12A;
  color: var(--cc-white);
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  font-size: 12px;
}
.product_item .rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* product carousel widget css */
.product_carousel .product_item {
  padding: 0;
  box-shadow: none;
  border-radius: 5px;
}
.product_carousel .product_content_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #173E68 76.06%);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: .5s;
}
.product_carousel .product_item:hover .product_content_box {
  opacity: 1;
  visibility: visible;
}
.product_carousel .product_item .product_content_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.product_carousel .product_item .product_price .price {
  color: var(--cc-white);
  font-weight: 500;
  font-size: 14px;
}
.product_carousel .product_item .product_cart_btn .add_to_cart_button,
.product_carousel .product_item .product_cart_btn .added_to_cart {
  color: var(--cc-title-color)!important;
  background: var(--cc-white)!important;
  border-color: var(--cc-white)!important;
  border-radius: 4px;
  font-size: 8px!important;
  font-weight: 500;
  line-height: 11px!important;
  padding: 2px 5px!important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.button.product_type_simple {
  color: var(--cc-white);
  font-size: 12px;
}
.product_carousel .product_item .product_cart_btn .add_to_cart_button::before,
.product_carousel .product_item .product_cart_btn .added_to_cart::before {
  content: '\f217';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 8px;
}
.product_carousel .product_item .product_cart_btn .added_to_cart::before {
  content: '\f00c'
}
.product_carousel .product_item .product_cart_btn .add_to_cart_button.added {
  display: none!important;
}
.product_carousel .product_item .product_cart_btn .add_to_cart_button.loading::before {
  width: 10px;
  height: 10px;
  border: 2px solid var(--cc-title-color);
  border-top: 2px solid transparent;
}
/* single product page review */
.woocommerce div.product.elementor .woocommerce-tabs .panel {
  padding: 24px 0;
  border-top: none;
}
.woocommerce div.product.elementor .woocommerce-tabs .panel h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
}
.woocommerce div.product.elementor ul.tabs {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #E8ECEF;
  overflow: visible;
  display: flex;
  gap: 60px;
}
.woocommerce div.product.elementor ul.tabs li {
  padding: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid transparent;
  margin: 0 0 -1px 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: transparent;
  color: var(--cc-title-color);
  z-index: 2;
  border-bottom: 1px solid var(--cc-title-color);
}
.woocommerce div.product.elementor ul.tabs li a {
  background: transparent;
  color: #807E7E;
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: -0.4px;
  padding: 0 0;
  border: none;
  outline: none;
}
/* single product categories widget */
.product-categories {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-categories .children {
  margin-bottom: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}
.product-categories li a {
  color: #807E7E;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
}
.product-categories li a:hover {
  color: var(--cc-title-color);
  text-decoration: underline;
}
.widget-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  color: #121212;
  margin-bottom: 16px;
}
/* single product add to cart button css */
.cart_single_product::before,
.cart_single_product::after {
  display: none!important;
}
.cart_single_product {
  display: grid;
  gap: 24px;
  grid-template-columns: 127px 1fr;
  margin-bottom: 0!important;
}
.cart_single_product .quantity_wrapper {
  display: flex;
  flex-direction: row;
  background: #F5F5F5!important;
  border-radius: 5px;
  justify-content: space-between;
  align-items: center;
  padding: 3px 20px;
}
.cart_single_product .quantity_wrapper * {
  border: none!important;
  outline: none;
  background: transparent!important;
  color: #121212!important;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
}
.cart_single_product .quantity_wrapper input[type=number] {
  width: 40px;
  text-align: center;
}
.cart_single_product .quantity_wrapper .minus {
  margin-right: 16px;
}

/* woocommerce message css */
.woocommerce-notices-wrapper {
  width: min(1162px, 96%);
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.woocommerce-notices-wrapper>* {
  width: 100%;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  outline: none;
}
.woocommerce-notices-wrapper>*::before,
.woocommerce-notices-wrapper>*::after {
  position: absolute;
  top: 50%!important;
  transform: translateY(-50%)!important;
  margin-bottom: 0!important;
}

/* single product page */
.woocommerce .star-rating span::before {
  color: #FFA90D;
}
/* sale price css */
.woocommerce span.onsale {
  background: #C11B2E;
  border-radius: 5px;
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  height: auto;
  min-height: auto;
  min-width: auto;
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 16px!important;
}

/* single product offer countdown css */
.cc_countdown_wrapper {
  margin-top: 10px;
  border-width: 1px 0 1px 0;
  border-style: solid;
  border-color: #E8ECEF;
  padding: 24px 0;
}
.offer_title {
  text-align: left;
  font-size: 16px;
  color: #343839;
  margin-bottom: 14px;
}
.cc_countdown {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
}
.time_box span {
  background-color: #C11B2E0D;
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 34px;
  font-weight: 500;
  color: #173E68;
  display: flex;
  align-items: center;
  justify-content: center;
}
.time_box span {
  background-color: #C11B2E0D;
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 34px;
  font-weight: 500;
  color: #173E68;
  display: flex;
  align-items: center;
  justify-content: center;
}
.time_box p {
  font-size: 12px;
  line-height: 20px;
  color: #6C7275;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0;
}

/* single product page comment css */
.comment_container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  align-items: start;
}
.comment_container>* {
  flex: 0 0 auto;
  float: none!important;
}
.woocommerce #reviews #comments ol.commentlist li img.avatar {
  width: 72px;
  margin-left: 0!important;
  border: none!important;
  border-radius: 50%;
  position: relative;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
  width: calc(100% - 112px);
  margin-left: 0;
  padding: 0;
  border: none;
  display: flex;
  flex-direction: column;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
  order: 1;
  display: flex;
  flex-direction: row;
  gap: 2px;
  margin-bottom: 16px;
}
.woocommerce .star-rating {
  order: 2;
}
.comment_container .description {
  order: 3;
}
.comment_container .description p {
  margin: 16px 0 16px 0!important;
}
.woocommerce p.stars a::before {
  color: #FFA90D;
}
.woocommerce #reviews #comments ol.commentlist li:not(:last-child) {
  border-bottom: 1px solid #E8ECEF;
}

/* user avatar css */
.user_profile_link_container {
	width: 40px;
	height: 40px;
	color: var(--cc-white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #F6F6F680;
	border-radius: 5px;
	font-size: 20px;
  overflow: hidden;
}
.user_profile_link_container:hover {
  color: var(--cc-white)
}
.user_avatar_image_wrapper {
  display: flex;
}

/*===================================
## CUSTOM CSS
===================================*/
.blank_div {
  background: linear-gradient(0deg, #E6DBCA -5.87%, rgba(255, 255, 255, 0) 55.46%, rgba(193, 27, 46, 0.5) 140%);
}