body {
  background: linear-gradient(to right, var(--theme-color-1), var(--theme-color-0_5));
}
.page-wrapper {
  max-width: 430px;
  min-height: 100vh;
}

.bg-img1 {
  clip-path: polygon(100% 0, 100% 51%, 100% 51%, 0 100%, 0 0);
  position: relative;
  z-index: 2;
}

.bg-img2 {
  top: 0px;
  position: absolute;
  left: -1px;
  width: 100%;
  transform: rotate(0deg);
}

.profile-section .profile-img {
  background-color: #fff;
  border: 5px solid #fff;
  border-radius: 30px;
  box-shadow: 0 5px 20px rgba(26, 36, 44, 0.15);
  height: 180px;
  margin-bottom: 35px !important;
  min-width: 180px;
  overflow: hidden !important;
  width: 180px;
}

.profile-section .card {
  background-color: transparent !important;
  border: none;
  margin-top: -125px;
}

.social-media .social-icon-wrap {
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(78, 84, 89, 0.1);
  color: var(--theme-color-1);
  border-radius: 10px;
  height: 40px;
  margin: 0 7px;
  min-width: 40px;
  width: 40px;
}

.social-media .social-icon-wrap img,
.social-media .social-icon-wrap svg {
  fill: var(--theme-color-1) !important;
  color: var(--theme-color-1) !important;
  height: 25px !important;
  width: 25px;
}

.section-heading h2:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: var(--theme-color-1);
}
.section-heading h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 95%;
  max-width: 255px;
  background-color: var(--theme-color-1);
}

@media (max-width: 500px) {
  .profile-section .card {
    margin-top: -150px;
  }

  .profile-section .profile-name {
    padding-top: 5px !important;
  }
}

/************************ 7.Datepicker css ***************************/
.ui-datepicker-header a.ui-datepicker-next {
  right: 0;
  background: url(../../corporate-theme/svg/right-arrow.svg);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: 50%;
}

.ui-datepicker-header a.ui-datepicker-prev {
  left: 0;
  background: url(../../corporate-theme/svg/right-arrow.svg);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: 50%;
  transform: rotate(180deg);
}

.ui-datepicker-header a > span {
  display: none;
}

#ui-datepicker-div {
  display: none;
  background-color: #fff;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
  margin-top: 0.25rem;
  border-radius: 0.5rem;
  padding: 0.5rem;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.ui-datepicker-calendar thead th {
  padding: 0.25rem 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 400;
  color: #78909c;
}

.ui-datepicker-calendar tbody td {
  width: 2.5rem;
  text-align: center;
  padding: 0;
}

div#ui-datepicker-div {
  z-index: 500 !important;
}

.ui-datepicker-calendar tbody td a {
  display: block;
  border-radius: 0.25rem;
  line-height: 2rem;
  transition: 0.3s all;
  color: #6c727f;
  font-size: 0.875rem;
  text-decoration: none;
}

.ui-datepicker-calendar tbody td a:hover {
  background-color: rgb(216 81 81 / 40%);
}

.ui-datepicker-calendar tbody td a.ui-state-active {
  background-color: #d85151;
  color: white;
}

.ui-datepicker-header a.ui-corner-all {
  cursor: pointer;
  position: absolute;
  top: 0;
  width: 2rem;
  height: 2rem;
  margin: 0.5rem;
  border-radius: 0.25rem;
  transition: 0.3s all;
}

.ui-datepicker-title {
  text-align: center;
  line-height: 32px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
}

/************************ 19.Gallery css ***************************/
.gallery-box {
  overflow: hidden;
  position: relative;
}

.gallery-box .gallery-img {
  position: relative;
  overflow: hidden;
}

.gallery-box .gallery-img > img {
  width: 100%;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
}

.gallery-box .gallery-img:after {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 12px;
}

.gallery-box .gallery-detail {
  opacity: 0;
  color: #ffffff;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  transform: translate(0%, 0%);
}

.gallery-box:hover .gallery-detail {
  top: 50%;
  opacity: 1;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
}

.gallery-box:hover .gallery-img:after {
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.3, 0.1, 0.58, 1);
}

.slick-list {
  padding-left: 16px;
}

.profile-section .slick-list,
.blog-content .slick-list {
  padding-left: 0;
}

.slick-slide {
  padding-right: 16px;
}

.slick-dots {
  bottom: -15px;
  position: relative;
}

.slick-dots li {
  height: 8px !important;
  margin: 0 3px !important;
  width: 8px !important;
}

.slick-dots li button,
.slick-dots li button:before {
  font-size: 0;
  height: 8px !important;
  width: 8px !important;
}

.slick-dots li button:before {
  background-color: #d8515166;
  border-radius: 10px;
}

.slick-dots li.slick-active,
.slick-dots li.slick-active button {
  width: 30px !important;
}

.slick-dots li.slick-active button:before {
  background-color: var(--theme-color-1);
  color: transparent !important;
  opacity: 1;
  width: 30px !important;
}
/************************ 10.Testimonial css ***************************/

#testimonial-slider .carousel-control-next,
#testimonial-slider .carousel-control-prev {
  position: relative;
  display: inline-flex;
  opacity: 1;
  width: 40px;
  height: 40px;
  background-color: rgba(245, 247, 250, 1);
  border-radius: 50%;
}

#testimonial-slider .carousel-control-next-icon,
#testimonial-slider .carousel-control-prev-icon {
  width: 24px;
  height: 24px;
}

#testimonial-slider .carousel-control-prev {
  left: 35%;
}

#testimonial-slider .carousel-control-next {
  right: -40%;
}

#testimonial-slider .carousel-control-prev-icon {
  background-image: url(../../global/svg/left-slider-icon.svg) !important;
}

#testimonial-slider .carousel-control-next-icon {
  background-image: url(../../global/svg/right-slider-icon.svg) !important;
}

.product-section .product-item {
  width: min-content;
}

.product-section .product-item .card-img-top {
  width: max-content;
}

.map-img iframe {
  width: 100%;
  height: 250px;
  border-radius: 12px;
}

.add-to-contact {
  position: fixed;
  width: 100%;
  bottom: 0;
  max-width: 425px;
  left: 0;
  right: 0;
  padding-bottom: 20px;
  z-index: 99;
}
