.faqArea-global .input-form input{
  background: #F9F9F9;
  height: 50px;
  width: 100%;
  font-size: 16px;
  font-weight: 300;
  position: relative;
  border: 0;
  border-radius: 8px;
  margin-bottom: 20px;
}
.faqArea-global .input-form input::placeholder{ color: var(--paragraph-color);}


.faqArea-global .input-form textarea {
  height: 150px;
  box-shadow: none;
}
.faqArea-global .input-form textarea:focus{
  box-shadow: none;
}

.singleGallery-global .caption h2 .image-popup {
  color: #fff;
}

.selectTag .listItem:hover a {
  background: var(--main-color-one);
  color: #fff;
  border: 1px solid transparent;
}

.header-info-right ul.user-account {
  margin-right: 15px;
  margin-bottom: 11px;
}



/*Sohan Css*/
.alert-danger .close{
  display: none;
}


.dashboard-right .parent .table-responsive {
  overflow: unset;
}

.author-content img{
  border-radius: 50%;
}

.client1Img img {
  min-height: 42px;
  border-radius: 50%;
  width: 40px;
}
.donation_countdown {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}
.donation_countdown .nx-singular-countdown-item {
  background: var(--main-color-one);
  display: inline-block;
  text-align: center;
  height: 102px;
  width: 102px;
  padding: 14px 10px;
}

.donation_countdown .nx-singular-countdown-item  .wrapper {
  font-family: var(--heading-font);
  font-size: 16px;
  margin-bottom: 0;
  color: #ffffff;
  font-weight: 500;
}
.donation_countdown .nx-singular-countdown-item  .wrapper .time {
  font-family: var(--heading-font);
  font-size: 20px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 9px;
  display: block;
}
.donation_countdown .nx-singular-countdown-item  .wrapper .label {
  font-family: var(--heading-font);
  font-size: 16px;
  margin-bottom: 0;
  color: #ffffff;
  font-weight: 500;
}


.payment-gateway-list .single-gateway-item {
  display: inline-block;
  position: relative;
  width: 111px;
  border: 1px solid #E5E5E5;
  margin-right: 15px;
  margin-bottom: 15px;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 5px 20px;
}

.payment-gateway-list .single-gateway-item img {
  padding: 0;
  display: block;
  text-align: center;
  margin-right: 0;
  width: auto;
  height: auto;
  margin: auto;
  max-width: 70px;
}

.input-form.input-form2 input#check {
  width: 18px;
  margin: 0px;
}

.input-form.input-form2.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}

.input-form.input-form2 label {
  margin: 0px;
}

/* widgest css */


.counter.countdown {
  margin: auto;
  padding: 10px;
}


.counter.countdown {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.countdown_title,
.countdown_description,
.countdown_timer {
  margin: 10px 0;
}

.full_width {
  width: 100%;
}
.boxed {
  width:70% ;
  margin: auto;
}

/* Unordered list custom styles */
  .text_area_section_ul {
      list-style-type: disc; /* Custom bullet points */
      padding-left: 20px;
  }
  .text_area_section_ul .text_area_section_li {
      list-style-type: disc;
  }

  /* Ordered list custom styles with CSS counter */
  .text_area_section_ol {
      counter-reset: list-counter; /* Initialize the counter */
      padding-left: 44px;
  }
  .text_area_section_ol .text_area_section_li {
      counter-increment: list-counter; /* Increment the counter */
      position: relative;
      padding-left: 17px!important;
  }
  .text_area_section_ol .text_area_section_li::before {
      content: counter(list-counter) ". "; /* Display the counter */
      position: absolute;
      left: 3px;
      font-weight: 500;
  }

.countdown-time {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px; /* Adjust spacing between units as needed */
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-unit .label {
  margin-top: 5px;
  font-size: 20px;	/* Adjust spacing between number and label as needed */
}




/* shop-page-css start  */

.product-item {
  margin: 0 0 20px;
  border: 2px solid transparent;
  transition: all .1s linear;
  position: relative;
  padding: 10px;
}
.product-item:hover {
  border-color:var(--main-color-one);
}
.product-item .product-detail {
    margin: 20px 0 30px;
}
.image-holder {
    position: relative;
}
span.soldout {
    left: 0;
    position: absolute;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    background: red;
    padding: 8px;
    top: 10px;
}
.image-holder a {
    display: block;
}
img.product-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.product-title {
  font-size: 20px;
  margin: 0 0 10px;
}
span.item-price {
  color: #00c0ff !important;
}
.btn-wrap {
  background: var(--main-color-one);
  color: #fff;
  height: auto;
  margin: 0;
  padding: 10px 21px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  display: block;
  width: 100%;
  justify-content: center;
}

.btn-wrap:hover{
  color: #fff;
}

.product-item  .modal {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* height: auto; */
  border-radius: 10px;
  border: 2px solid var(--main-color-one);
}
.product-item .modal .modal-content {
  padding: 10px 4px;
}
.product-item .modal .modal-heading {
  color: var(--main-color-one);
  font-weight: 500;
  font-size: 18px;
  margin: 0;
  text-align: center;
  font-family: "Open Sans";
  padding: 25px;
}

.product-item .modal span.close-button {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
  margin-right: 12px;
  color: #fff;
  font-weight: 700;
  background: var(--main-color-one);
  position: absolute;
  right: -7px;
  top: 2px;
  padding-left: 0;
}

/* product details page start  */
.product-details {
  /* padding: 40px 0; */
  position: relative;
}
.product-details > .container {
  /* max-width: 950px; */
} 
.product-details-img {
  margin: 0 0 20px;
  height: 350px;
  border: 1px solid #ccc;
}
.product-details-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details-content h4 {
  font-size: 22px;
  margin: 0 0 15px;
}

.product-details-content p {
  font-size: 14px;
  margin: 0 0 15px;
}
.quantity_inner_class {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-weight.select-weight h6 {
    font-size: 14px;
    margin: 0 0 0px;
        font-weight: 600;
}


.product-weight h6 {
    font-size: 14px;
    margin: 0 0 10px;
}

span.single-cart-text {
    background: var(--main-color-one);
    border: none;
    color: #fff;
    display: inline-block;
    padding: 8px 22px;
    text-transform: uppercase;
    position: relative;
    font-size: 14px;
}

.quantity .number {
  width: 100%;
  max-width: 100px;
  display: grid;
  grid-template-columns: 25px 1fr 24px;
  border: 2px solid var(--main-color-one);
}

.quantity  input {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: center;
}

.quantity .number span {
  text-align: center;
  cursor: pointer;
}
.quantity .number.readonly {
  border-color: #c5c9cb;
}

.quantity .number.readonly input {
  background: #c5c9cb;
}
.product-details-content.product_content {
  padding: 25px 15px;
}
.row.product-details-data {
margin: 70px 0;
}
.product-weight {
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
a#add-to-cart-btn {
  display: inline-block;
  margin: 10px 0 0;
}
.quantity  label {
  font-size: 14px;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0px 0 0px;
  display: block;
}
span.price {
  display: block;
  color: #000;
  font-weight: 600;
  font-size: 18px;
  border: none;
  border-width: 2px 0;
  padding: 0;
  margin-bottom: 15px;
}
.product-weight .custom-control {
  margin-right: 10px;
  border: 2px solid #14ba85;
  padding: 3px;
}
a.cart_btn {
  position: fixed;
  top: 50%;
  right: 20px;
  z-index: 99;
}
.cart-icon span {
  background: red;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  line-height: normal;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  right: -20px;
  top: 10px;
  color: #fff;
  font-size: 14px;
}
span.attr {
  display: inline-block;
  padding: 0 4px;
  background: #eeebec;
  margin-left: 2px;
  font-size: 9px;
}
a.shopping-cart-icon{
  position: relative;
}
span.cart-count {
  position: absolute;
  top: 10px;
  left: 20px;
  display: inline-block;
  background: red;
  color: #fff;
  min-width: 25px;
  min-height: 25px;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
}
.container_description {
  margin: auto;
  padding: 20px 0px 2px 88px;
}
.container_description {

  margin-top: 23px;
}
.calendar_title {
  margin: auto;
  /* margin-left: 222px; */
  text-align: center;
  margin-top: 37px;
}

p.consultingFaq__para {
padding: 13px!important;
margin-right: 11px;
margin-left: -19px;
}

.shopping-cart-main .column-labels label {
font-size: 14px;
}
.consultingFaq__contents .consultingFaq__item .consultingFaq__panel {
padding: 0px 19px!important;
}

.portfolio_work {
max-width: 300px;
}
.portfolio_work__thumb a img {
width: 100%;
height: 300px;
object-fit: cover;
}

.portfolio_work
{
margin:0 auto;
}

.video-area .videoImg img {
width: 100%;
height: 315px!important;
object-fit: cover;
border-radius: 10px;
}

.carousel-inner img{
height: 300px;
object-fit: cover;
}
.show_case_description {
text-align: center;
}
.show_case_description .text_area_section_li {
text-align: justify;
margin: 10px auto;
width:300px;
}
.portfolio_work_area div[class*=col]:nth-child(2n+2) {
margin-top: 0px!important;
}
.blog_container_description {
width: 500px;
text-align: start;
margin: 0 auto;
}


.blog_container_description .text_area_section_li {
list-style-type: disc;
text-align: start;
}

.portfolio_work {
height: 100%!important;
}
.portfolio_work__thumbs {
margin-bottom: 20px;
}


.spacer.section_size hr {
opacity: 1 !important;
}


.em-modal-content {
background-color: white;
}
.descriptions_EM {
margin-bottom: 37px;
}

.modal-dialog.custom-size {
max-width: 95%;
height: 85vh;
margin-top: 57px;
}



.modal-content {
    display: flex;
    flex-direction: row;
    height: 100%; /* Ensure the modal content takes full height */
}

.modal-body {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%; /* Ensure the modal body takes full height */
}

.modal-body .left-side {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Ensures the image fits within the container */
}


.modal-body .left-side img {
width: 69%;
height: 40%;
object-fit: cover;
/* margin-left: -228px;
margin-top: -75px; */
}


.modal-body .right-side {
    flex: 3.5;
    padding: 20px;
    display: flex;
    flex-direction: column;
    /* Allows scrolling if content overflows */
}

.em-item-info {
    flex: 1;
}

.modal-footer {
    justify-content: flex-end;
}
.modal-body h3{
font-weight: 200px
}

.h3, h3 {
font-size: 0.75rem;
}
.eventsocialsshare .social-links a i {
background: #46c7ef;
width: 48px;
height: 48px;
line-height: 50px;
color: #fff;
font-size: 26px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-left: auto;
margin-right: auto;
margin-bottom: 12px;
}
.eventsocialsshare .social-links {
display: flex;
justify-content: left;
flex-wrap: nowrap;
text-align: center;
}
h2.eventModalClose {
font-size: smaller;
margin-top: -12px;

}
.container_description {
text-align: center;
margin: 10px auto!important;
/* text-align: center; */
/* align-content: center; */
/* margin-left: 0; */
padding: 0!important;
}

.container {
width: 100%!important;
}
.portfolio_work__contents {
display: block!important;
}

.portfolio_work {
max-width: 100%!important;
}

.container_inner_size {
max-width: 869px;
margin: 0 auto;
}

/* cart page css */


.shopping-cart-main .product {
display: flex;
gap: 30%;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid #eee;
padding: 20px 0;
}
.shopping-cart-main  .product-image a img {
width: 100px;
height: 100px;
}
.shopping-cart-main  .left_cart {
gap: 30px;
display: flex;
}
.shopping-cart-main  .right_cart {
display: flex;
gap: 40px;
}
.shopping-cart-main  .totals-item {
display: flex;
justify-content: end;
gap: 100px;
margin-bottom: 10px;
}
.shopping-cart-main  .proceed_btn {
display: flex;
justify-content: space-between;
margin-bottom: 30px;
}
.shopping-cart-main  .column-labels {
display: flex;
justify-content: end;
gap: 88px;
height: 40px;
padding-top: 20px;
padding: 40px 0;
border-bottom: 1px solid #eee;
}
.shopping-cart-main  label.product-price {
color: var(--main-color-one);
}
.shopping-cart-main  .product-price {
color: var(--main-color-one);
}
.shopping-cart-main  .number input {
text-align: center;
width: 70px;
border: transparent;
}
.shopping-cart-main  .number {
display: inline-block;
border: 2px solid var(--main-color-one);
margin-right: 5px;
height: 35px;
background: #fff;
padding: 2px;
}
.shopping-cart-main .product-removal span {
color: #d4d4d4;
text-decoration: underline;
font-size: 14px;
}
.shopping-cart-main  .totals {
padding: 25px 0;
}
.shopping-cart-main  .proceed_btn a {
border: 0;
padding: 8px 20px;
background-color: var(--main-color-one);
color: #fff;
font-size: 18px;
border-radius: 3px;
}
.shopping-cart-main  .proceed_btn a.continue_btn{
background-color: grey;
}
.shopping-cart-main .proceed_btn a:hover {
color: #fff;
}

/* checkout page */

h3.top_heading {
font-size: 18px;
color: #515151;
text-align: center;
padding: 30px 0;
}
h2.formshead1 {
font-size: 26px;
font-weight: 700;
color: #000;
margin-top: 0;
text-align: center;
}
.main-rgt h3 {
font-size: 26px;
font-weight: 700;
color: #000;
margin-top: 0;
text-align: center;
}
.form-control {
border: 2px solid #d9dce2;
padding: 13px;
border-radius: 6px !important;
font-size: 14px;
background-color: #e7effc;
width: 100%;
margin-bottom: 10px;
}
button#login_submit_btn {
border: 2px solid var(--main-color-one);
padding: 13px !important;
border-radius: 6px !important;
font-size: 16px;
background: var(--main-color-one);
width: 100%;
color: #fff;
font-weight: 500;
margin-bottom: 20px;
transition: all 0.4s;
}
button#login_submit_btn:hover {
background: transparent;
color: var(--main-color-one);
border: 2px solid var(--main-color-one);
}
p.registerlogin {
padding: 15px 0;
}

.btn-rgt a {
border: 2px solid var(--main-color-one);
padding: 13px !important;
border-radius: 6px !important;
font-size: 16px;
background: var(--main-color-one);
width: 100%;
color:#fff;
font-weight: 500;
display: block;
text-align: center;
transition: all .2s linear;
max-width: 340px;
margin: 0 auto;
margin-top: 100px;
}
.btn-rgt a:hover {
background: transparent;
color: var(--main-color-one);
border: 2px solid var(--main-color-one);
}

/* thanku_page */

.thankyou-buttons {
margin-bottom: 20px;
}

/* pop up design  */
.modal-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #fff;
padding: 10px 4px;
border-radius: 10px;
border: 2px solid var(--main-color-one);
max-width: 400px;
height: 100px;
}
h2.modal-heading {
align-items: center;
display: flex;
color: var(--main-color-one);
font-weight: 600;
font-size: 18px;
margin: 0 auto;
text-align: center;
padding: 10px;
}
span.close-button {
position: absolute;
right: 10px;
top: 10px;
padding: 3px;
/* justify-content: end; */
border: 1px solid var(--main-color-one);
background-color: var(--main-color-one);
color: #fff;
border-radius: 50%;
display: flex;
width: 30px;
height: 30px;
justify-content: center;
align-items: center;
cursor: pointer;
z-index: 9;
font-size: 30px;
}


.heroPadding2 {
padding: 30px 0px !important;
}
.shopping-cart-main .product-details {
padding-top: 10px!important;
}



/* pop up design  end */
@media screen and (max-width: 991px) 
{
.shopping-cart-main .product {
  gap: 0%;
}
.shopping-cart-main  .right_cart {
gap: 25px;
}
.shopping-cart-main  .column-labels {
gap: 65px;
}
}

@media screen and (max-width:767px) 
{
.shopping-cart-main  .left_cart {
  justify-content: space-between;
  flex-direction: row-reverse;
}
.shopping-cart-main .product {
  display: block;
}
.shopping-cart-main  .right_cart {

justify-content: space-between;
padding: 20px 0;
}
.shopping-cart-main  .product-image a img {
width: 75px;
height: 75px;
}
.shopping-cart-main  .number input {
width: 60px;
}
.shopping-cart-main  .column-labels {
display: none;
}
}

.btn-group-lg>.btn, .btn-lg {
padding: .5rem 40px!important;
}

.btn-group-sm>.btn, .btn-sm {
padding: .25rem 40px!important;
}

.aboutArea_inner_section_size  .container {
max-width: 1589px;
}


/* Category menu******/

.dropdown>.dropdown-menu,
.dropdown.open>.dropdown-menu {
 display: block !important;
 opacity: 0;
 visibility: hidden;
 transition: all ease 0.2s;
}
.dropdown:hover>.dropdown-menu,
.dropdown.open:hover>.dropdown-menu { 
 opacity: 1;
 visibility: visible; 
}

.drop_parent  .main_ul {
display: flex;
background: #fff;
justify-content: center;
align-items: center;
padding: 0;
width: 100%;
}
.drop_parent .main_ul .dropdown-toggle::after{
display: none;
}
li.dropdown a {
font-size: 20px;
color: #000;
text-decoration: unset;
}
li{
list-style: none;
}
ul.dropdown-menu {
background: #efefef;
padding: 20px;
width: 320px;
border: 0;
/* left: 0; */
border-radius: 0;
}

.dropdown-menu li {
border-bottom: 1px solid #fff;
padding: 10px 0;
/* padding-left: 10px; */
text-align: left;
}
ul.dropdown-menu .divider {
text-transform: capitalize;
color: #737373;
font-size: 24px;
padding-left: 0;

}
ul.dropdown-menu li a{
font-size: 20px;
color: #737373;
}
li.dropdown:hover {
background: #efefef;
}
.drop_parent .dropdown {
width: 130px;
margin: 0 5px;
text-align: center;
position: relative;
padding: 10px;
}
.drop_parent .dropdown:not(:first-child)::before {
content: "";
position: absolute;
border-left: 2px solid #000;
width: 100%;
height: 50%;
left: -5px;
top: 50%;
transform: translateY(-50%);
}
li.dropdown a i {
font-size: 13px;
}
li.dropdown.middle_drop {
border-left: 2px solid #000;
border-right: 2px solid #000;
height: 28px;
}

.drop_parent {
display: flex;
justify-content: center;
align-items: center;
padding: 15px 0;
position: relative;

}
.drop_parent::after {
content: "";
position: absolute;
border-bottom: 1px solid #ddd;
width: calc( 200% + 100vh);
bottom: 0;
}
.drop_parent .dropdown ul.dropdown-menu a {
font-size: 18px;
}
.search a i {
font-size: 20px;
color: #737373;
}

.search {
width: auto;
position: absolute;
top: 0;
right: 0;
height: 100%;
}
.search a {
padding: 15px;
border-left: 2px solid #ddd;
border-right: 2px solid #ddd;
display: inline-flex;
height: 100%;
align-items: center;
}

@media all and (max-width:767px)
{
.search {
  margin-left: 20px;
} 
}
@media all and (max-width:575px){
.drop_parent{
  display: block;
}
ul.dropdown-menu {
  position: relative;
}
.search {
  margin-left: 0px;
} 
}
@media all and (max-width:480px)
{
  ul.dropdown-menu .divider {
    font-size:19px;

  }
  li.dropdown a {
    font-size: 19px;
  }

  .drop_parent .dropdown {
    width: 120px;
  }
  ul.dropdown-menu li a {
    font-size: 16px;

  }
  li.dropdown.middle_drop {
    border-left: 2px solid #000;
    border-right: 2px solid #000;
    height: 23px;
  }
}

/* 25-july-2024 */
.discription_box h4 {
font-size: 26px;
border-bottom: 1px solid #ddd;
padding-bottom: 10px;
margin-bottom: 30px;
text-align: center;
}
.discription_box p {
font-size: 20px;
}


/***** search Model *****/
.custom-model-main {
text-align: center;
overflow: hidden;
position: fixed;
-webkit-overflow-scrolling: touch;
outline: 0;
opacity: 0;
-webkit-transition: opacity .15s linear, z-index .15;
-o-transition: opacity .15s linear, z-index .15;
transition: opacity .15s linear, z-index .15;
z-index: -1;
overflow-x: hidden;
overflow-y: auto;
}
.custom-model-main {
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
max-width: 600px;
}
.model-open {
z-index: 99999;
opacity: 1;
overflow: hidden;
}
.model-open .custom-model-inner {
-webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0);
transform: translate(0, 0);
position: relative;
z-index: 999;
}
.custom-model-wrap {
display: block;
width: 100%;
position: relative;
background-color: #fff;
border: 1px solid #999;
border: 1px solid rgba(0, 0, 0, .2);
border-radius: 6px;
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
background-clip: padding-box;
outline: 0;
text-align: left;
padding: 20px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
max-height: calc(100vh - 70px);
overflow-y: auto;
}
.custom-model-wrap {
border: 2px solid var(--main-color-one);
padding: 40px 20px;
box-shadow: none;
}
.pop-up-content-wrap p {
text-align: center;
font-size: 18px;
font-weight: 600;
color: #515151;
}
.pop-up-content-wrap p+p {
display: flex;
align-items: center;
border-radius: 10px;
margin-top: 3px;
}
.pop-up-content-wrap input.search-store {
width: 90%;
padding: 10px;
border-radius: 10px;
font-size: 14px;
border: 2px solid #ddd;
}
.pop-up-content-wrap p a.search-terms {
background: var(--main-color-one);
color: #fff;
font-size: 14px;
padding: 10px;
border-radius: 0 10px 10px 0;
display: inline-block;
width: 20%;
margin-left: -10px;
border: 2px solid var(--main-color-one);
}
.section_title {
margin: 30px 0;
}
.section_title h2 {
text-align: center;
font-size: 24px;
text-transform: capitalize;
font-weight: 600;
}
/* header  */
nav.navbar .responsive-mobile-menu {
width: 30%;
}
nav.navbar .NavWrapper {
width: 60%;
}
nav.navbar .nav-right-content{
width: 30%;
}
nav.navbar .NavWrapper ul.navbar-nav {
margin: 0;
}
@media screen and (min-width: 800px) {
.custom-model-main:before {
    content: "";
    display: inline-block;
    height: auto;
    vertical-align: middle;
    margin-right: 0;
    height: 100%;
}
}
.discription_box {
margin-top: 49px;
}
.discription_box p {
font-size: 20px;
padding-bottom: 50px;
max-width: 80%;
  margin: 0 auto;

}

.main_ul .dropdown-toggle {
cursor: pointer!important;
}


.main_ul .dropdown:hover > .main-link {
text-decoration: underline!important;
}


.drop_parent .dropdown_nw {
width: 130px;
margin: 0 5px;
text-align: center;
position: relative;
padding: 10px;
}

li.dropdown_nw:hover {
background: #efefef;
}

li.dropdown_nw a {
font-size: 20px;
color: #000;
text-decoration: unset;
}

.product-details-content.product_content span.price {
  margin-bottom: 15px;
}
.simple-pro h4 {
  font-size: 30px;
  margin-bottom: 20px;
}

.simple-pro span.price {
  font-size: 28px;
  margin-bottom: 35px !important;
}


.singleBlog-global .blog-img .content {
  z-index: 0!important;
}
figcaption.portfolioDetails.port_Caption {
  display: block!important;
}

select.category-dropdown-select-port {
  color: var(--heading-color);
  height: 55px;
  width: 300px;
  font-size: 16px;
  font-weight: 300;
  padding: 9px 75px 9px 20px;
  position: relative;
  border: 1px solid #EAECF0;
  border-radius: 5px;
  margin-bottom: 20px;
  background: #fff;
}

.meta-data {
  flex: 1;
  margin-left: auto!important;
}
.widget_title {
  padding-bottom: 20px!important;
}


.donate-button {
    background-color: #4d7af9;
    color: white;
    border: none;
    padding: 7px 19px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 11px;
    margin: 3px -9px;
    cursor: pointer;
    border-radius: 4px;
}
.donate-button:hover {
  background-color: #0056b3;
}

.meta-item-title {
  padding: 0px!important;
}

.meta-row.meta_row_position {
  margin: 0!important;
  font-size: small!important;
}

.meta-item-title span a {
  color: #4998e7;
}

.meta-label {
  font-weight: lighter!important;
  /* width: 137px; */
  font-size: smaller!important;
  line-height: 1.2 !important;
  width: 75% !important;
}
.meta-row {
  align-items: center;
}
.meta-data {
  flex: 1;
  text-align: right!important;
  font-size: smaller!important;
  line-height: 1.2 !important;
  width: 25% !important;

}

.meta-item-title span a {
  color: #2d96f1!important;
  font-weight: 700!important;
  font-size: medium!important;
}

.view-details-btn {
  background-color: #4d7af9;
  color: white;
  border: none;
  padding: 7px 19px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 11px;
  margin: 3px 0px;
  cursor: pointer;
  border-radius: 4px;
}


.event-container {
  width: 80%;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  border: 2px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
  text-align: center;
}

/* Style the headings and paragraphs */
.event-container h1 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #333;
}

.event-container p {
  font-size: 16px;
  margin: 10px 0;
  color: #555;
}

/* Style the strong text within paragraphs */
.event-container p strong {
  color: #000;
}

input#first_name_val {
  color: #8b7f8b!important;
  background-color: #e7e5e5!important;
}

input#first_email_val {
  color: #8b7f8b!important;
  background-color: #e7e5e5!important;
}

/* new header  */
nav.navbar .responsive-mobile-menu {
  width: 20%;
}
.navbar-area .nav-container .logo-wrapper .logo {
  max-width: 120px;
  display: block;
}
.navbar-area .nav-container .logo-wrapper .logo img {
  width: 100%;
}
nav.navbar .NavWrapper {
  width: 80%;
}
.navbar-area .nav-container .nav-right-content {
  width: 20%;
  justify-content: end;
}
body .navbar-area .nav-container .navbar-collapse .navbar-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
}

/* calender modal  */

body .calender-modal .modal-content {
  width: 100%;
  max-width: 100%;
  height: auto;
}
body .calender-modal .modal-body {
  flex-wrap: wrap;
}

body .calender-modal .modal-body h2.eventModalClose {
  width: 100%;
  position: absolute;
  top: 15px;
  right: 15px;
  left: auto;
  width: fit-content !important;
  font-size: 22px;
  font-weight: 700;
}

body .calender-modal .modal-body .left-side {
  width: 50%;
  flex: auto;
}

body .calender-modal .modal-body .right-side {
  flex: auto;
  width: 50%;
}

/* newsletter  */
body .newsletter-footer .input {
  height: 35px !important;
  font-size: 14px;
  border-radius: 5px !important;
}
.newsletter-footer 
 input#first_name_val {
    color: #8b7f8b!important;
    background-color: #fff !important;
}
.newsletter-footer input#first_email_val {
  color: #8b7f8b!important;
  background-color: #fff !important;
}
.newsletter-footer .input::placeholder {
  color: #8b7f8b !important;
  font-size: 14px;
}

.newsletter-footer .btn-wrapper button#submit-button {
  margin-top: 5px;
  height: 28px;
  padding: 4px 20px;
  font-size: 14px;
}
.news_latter_form .footer-pera p.pera {
  margin-bottom: 8px !important;
}



.event-container {
  border: 1px solid #ddd;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
}

.event-title {
  font-size: 18px;
  font-weight: bold;
}

.event-date {
  font-size: 14px;
}

.event-location {
  font-size: 14px;
  color: #555;
}


.event-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
}

.popup-content {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  max-width: 500px;
  width: 90%;
}

.close-btn {
  float: right;
  cursor: pointer;
  font-size: 1.5rem;
}
/* p > span {
  font-size: inherit !important;
} */

.image_and_text_section_main {
  padding-left: 30px;
}


/* craousle css */

.carousel_main .carousel-inner .item{
  position: relative;
  /* text-align: left; */
}
.carousel-inner>.item.active.left, .carousel-inner>.item.active.right, .carousel-inner>.item.active.center {
  transform: translate3d(0, 0, 0) !important;
}
.carousel_main .carousel-inner .item.left{
  text-align: left;
}
.carousel-inner .item.right{
  text-align: right;
}
.carousel_main .carousel-inner .item.center{
  text-align: center;
}
/* .carousel_main .carousel-inner .item span {
  position: absolute;
  color: #fff;
  top: 50%;
  left: 34%;
  transform: translate(-30%, -50%);
  width: 65%;
  margin: 0 auto;

} */

.carousel_main .carousel-inner .item span {
  color: #fff;
  top: 50%;
  left: 0;
  transform: translate(0%, 0%);
  width: 100%;
  margin: 0 auto;
}
.carousel-main 
 .slick-slide {
    position: relative;
}
.bnr_text_slider_left {
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  width: 100%;
  max-width: 900px;
  padding: 0 16px;
}

.bnr_text_slider_center {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 50%;
  max-width: 900px;
  margin: 0 auto !important;
  transform: translate(-50%, -50%);
  padding: 0 16px;
}
.bnr_text_slider h1 span {
  position: relative;
}
.bnr_text_slider_right {
  position: absolute;
  top: 50%;
  right: 15%;
  width: 100%;
  max-width: 900px;
  padding: 0 16px;
  transform: translateY(-50%); 
}


body span.slick-prev.slick-arrow::before {
  color: #fff;
  content: "\f053";
  font-family: "Font Awesome 6 Free";
}

body span.slick-next.slick-arrow::before{
  color: #fff;
  content: "\f054";
  font-family: "Font Awesome 6 Free";
}

body span.slick-prev {
  left: 20px;
}

.bnr_text_slider_left span, .bnr_text_slider_center span , .bnr_text_slider_right span{
  color: #fff;
}
/* .carousel_main .carousel-inner .item.left span{
  left: 45%;
  transform: translate(-35%, -50%);
}
.carousel_main .carousel-inner .item.right span{
  left: 34%;
  transform: translate(-30%, -50%);
} */
.footer-widget.widget.news_latter_form h4.footerTittle {
  margin-bottom: 20px;
}

body .calender-modal .modal-content {
  width: 100%;
  max-width: 70%;
  height: auto;
}
.em-modal-title h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.fleexdivs_events .innerflex_event h3 {
  font-size: 30px;
  margin-bottom: 10px;
}

.keepcalanderto button#add_to_calendar {
  background: #46c7ef;
  border: 1px solid #46c7ef;
  padding: 10px 14px;
  margin: 13px 0 20px;
  color: #ffff;
  border-radius: 3px;
}
 div#modalEventDescription {
  font-size: 16px;
  margin-top: 10px;
}
 body .calender-modal .modal-body h2.eventModalClose {
  width: 40px !important;
  height: 40px;
  background-color: #46c7ef;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.carousel-main .slick-dots {
  position: absolute;
  bottom: 10px;           /* Adjust as needed */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  width: 100%;
}

.carousel-main .slick-dots li {
  margin: 0 5px;
}

.carousel-main .slick-dots li button:before {
  font-size: 12px;         /* Adjust dot size if needed */
  color: #fff;             /* Dot color */
  opacity: 0.75;           /* Dot transparency */
}

.carousel-main .slick-dots li.slick-active button:before {
  opacity: 1;              /* Active dot transparency */
}


/* text editor */

.text_area_section ul, ol, pre {
  padding-left: 44px;
}
.text_area_section blockquote {
  padding: 15px;
  padding-left: 27px;
  margin-left: 28px;
}
/* .text_area_section ul li > span, .text_area_section ol li > span {
  padding-left: 15px;
} */
.text_area_section  pre {
  padding-left: 30px;
}
.text_area_section li {
  padding-left: 15px;
}

.text_area_section ol li.text_area_section_li::before {
  content: none;
}

.text_area_section ol li.text_area_section_li {
  list-style-type: decimal;
  padding-left: 15px !important;
}
.text_area_section pre {
  margin-left: 28px;

}


.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children, .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-mega-menu {
  z-index: auto!important;
  line-height: 30px;
}

.categoriesArea a {
  display: block;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li {
    padding: 0!important;
    margin: 0!important;
    line-height: 40px !important;
  }

  nav.navbar .responsive-mobile-menu {
    width: 15%;
  }
 
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
    padding: 0!important;
    margin: 0;
  }

 .navbar-area .nav-container .nav-right-content {
   width: 15%;
 }

 .input-form input::placeholder {
    color: gray;
}

.btn-wrapper .cmn-btn1[disabled],.btn-wrapper .cmn-btn1[disabled]:hover {
    background: gray;
    border: 1px solid gray;
    color: #fff;
}
header .header-top{
  background-color: transparent;
}

.simplePresentCart .searchBox-wrapper .search-box .input-form .icon{
  bottom: -3px;
  height: 62px;
}

@media (max-width: 991px) {
  header .navbar-area .container-fluid.nav-container .logo-wrapper,header .navbar-area .container.nav-container .logo-wrapper {
    margin: 0 auto;
    float: none;
  }
  header .navbar-area .container-fluid.nav-container .logo-wrapper a.logo img,header .navbar-area .container.nav-container .logo-wrapper a.logo img {
    max-width: 110px;
  }
  .navbar-area .nav-container .logo-wrapper .logo {
    max-width: 100%;
    text-align: center;
  }
  body .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler {
    position: absolute;
    right: auto;
    left: 0;
  }
  body .sliderAreaInner .innerHeroContent .tittle {
    display: none;
  }
  body .navbar-area .nav-container .nav-right-content {
    margin-top: -100px !important;
  }
  body .navbar-area .nav-container .navbar-collapse .navbar-nav {
    padding-top: 0;
  }
  .header-top .header-info-left .listing li > a {
    font-size: 0;
  }
  .header-top .header-info-left .listing .listItem .icon {
    font-size: 16px;
  }
 header .navbar-area .nav-container .nav-right-content {
      visibility: visible;
        opacity: 1;
  }

  header .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler{
    background-color: var(--main-color-one);
  }
  header .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler .navbar-toggler-icon{
    background-color: #fff;
  }
  header .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler .navbar-toggler-icon::before, header .navbar-area .nav-container .responsive-mobile-menu .navbar-toggler .navbar-toggler-icon::after {
    background-color: #fff;
  }
  header .header-top .header-info-right .header-cart{
    margin-right: 20px;
  }
  header .header-top .header-info-right .header-cart .listItem .social{
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 10px;
  }
  header span.cart-count{
    min-width: 20px;
    min-height: 20px;
    line-height: 20px;
    font-size: 12px;
    top: 5px;
    left: 15px;
  }
  header .header-top .header-info-right .select-language{
    margin-right: 10px;
    margin-left: 10px;
  }
  header .header-top .header-info-right .select-language .nice-select{
    height: 20px;
    line-height: 20px;
    font-size: 12px;
  }
  header .user-account .listItem a{
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  body .header-top .header-info-left {
      display: block;
  }


}

@media all and (max-width:480px)
{
  .boxed{
    width: 100%;
  }
}