/* btn */
.btn {
  position: relative;
  display: inline-flex;
  gap: 10px;
  min-width: 200px;
  height: 50px;
  padding: 0 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 18px;
  color: var(--second-color);
  background-color: var(--main-color);
  box-shadow: 0px 0px 30px 0px rgb(240 169 103 / 55%);
  line-height: 1;
  border: 0;
  margin-bottom: 15px;
  overflow: hidden;
  transition: 0.5s all;
}
.btn-white {
  color: var(--second-color);
  background-color: #fff;
  border: 1px solid var(--main-color);
}

.btn::before {
  position: absolute;
  left: -100%;
  content: "";
  width: 0%;
  height: 100%;
  background: rgba(255 255 255 / 23%);
  box-shadow: 0 0 58px 30px rgb(255 229 180);
  z-index: 1;
}
.btn:hover,
.btn-white:hover {
  color: var(--second-color);
  background-color: var(--btn-hover-bg-color);
  box-shadow: 0px 20px 50px 5px rgb(240 169 103 / 75%);
  transition: 0.5s all;
}
.btn:hover::before,
.btn-white:hover::before {
  animation: btn-shine-animation 0.5s linear;
}
@keyframes btn-shine-animation {
  100% {
    left: 100%;
  }
}
/* section title */
.sec-title {
  position: relative;
  align-items: center;
  margin-bottom: 90px;
}
.sec-title-center {
  text-align: center;
}
.sec-title-mb {
  margin-bottom: 90px;
}
.sec-title .title,
.title,
.title2 {
  position: relative;
  color: var(--title-color);
  font-size: var(--sec-title-size);
  font-family: Tajawal-Bold;
}
.title2 {
  font-size: 22px;
}
.sec-title .desc {
  margin: 30px 0 0;
}
.sec-title .above-title,
.sec-title .below-title {
  font-size: var(--text-size);
}
.sec-title .title::before,
.sec-title .title::after {
  content: "";
  position: absolute;
  display: block;
  width: 100px;
  height: 3px;
  right: 0;
  bottom: -15px;
  border-radius: 5px;
  background-color: #f5e3c5;
}
.sec-title .title::after {
  width: 18px;
  height: 18px;
  bottom: -22px;
  background: var(--main-color);
  transform: rotate(45deg);
  box-shadow: 0px 0px 16px 0px rgb(240 169 103 / 60%);
}
.sec-title-center .title::before,
.sec-title-center .title::after {
  left: 0;
  right: 0;
  margin: auto;
}
/* social */
.social {
  display: flex;
  gap: 15px;
  padding: 0;
  margin-bottom: 15px;
  list-style: none;
}
.social li,
.social li .item,
.social li a {
  display: flex;
  line-height: 1;
  font-size: 22px;
  background: transparent;
  border: 0;
  opacity: 1;
  padding: 0;
  color: var(--third-color);
  transition: 0.5s all;
}
.social li:hover,
.social li .item:hover,
.social li a:hover {
  color: var(--main-color);
}
/* .slick */
.slick-dots {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
  padding: 0;
}

.slick-initialized .slick-slide {
  padding: 0 7px;
}

.slick-dots > li > button {
  border: 0;
  width: 10px;
  height: 10px;
  font-size: 0;
  padding: 0;
  border-radius: 3px;
  background-color: var(--text-color);
  transition: 0.5s all;
}
.slick-dots > li.slick-active > button {
  transform: rotate(45deg) scale(1.5);
  background-color: var(--main-color);
}
/* box */
.icon-box {
  text-align: center;
  margin-bottom: 30px;
  padding: 60px 15px;
  border-radius: 15px;
  background-color: #fffefc;
  border: 1px solid #f3e6d0;
  transition: 0.5s all;
}
.icon-box .icon {
  position: relative;
  display: flex;
  width: 100px;
  height: 100px;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 30px;
  border-radius: 15px;
  font-size: 50px;
  color: #fff6e9;
  background-color: var(--main-color);
}
.icon-box .icon i,
.icon-box-list .icon i {
  z-index: 1;
  transition: 0.7s all;
}
.icon-box .title,
.icon-box-list .title {
  position: relative;
  font-size: 18px;
  color: var(--second-color);
  margin-bottom: 15px;
  font-family: Tajawal-Bold;
  transition: 0.7s all;
}
.icon-box .counter-number,
.icon-box-list .counter-number {
  font-size: 26px;
  font-family: Tajawal-Bold;
}
.icon-box .desc,
.icon-box-list .desc,
.testimonial .desc {
  display: -webkit-box;
  font-size: 16px;
  color: var(--text-color);
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
  line-height: 1.5;
  overflow: hidden;
  transition: 1s all;
}
.icon-box .desc p,
.icon-box-list .desc p {
  margin-bottom: 0;
}
.icon-box:hover,
.icon-box-list-bg:hover {
  border-color: var(--main-color);
  background-color: #fffefc;
  box-shadow: 0px 0px 60px 0px rgb(240 169 103 / 35%);
}
.icon-box:hover .icon img,
.icon-box:hover .icon svg,
.icon-box:hover .icon i {
  transform: translateY(-5px);
}
.icon-box.icon-box-border:hover {
  border-color: var(--main-color);
}
/* .icon-box-list */
.icon-box-list {
  display: flex;
  gap: 5px;
  flex-direction: column;
  margin-bottom: 30px;
}
.icon-box-list-bg {
  padding: 30px 15px;
  border-radius: 15px;
  background-color: #fffefc;
  border: 1px solid #f3e6d0;
  transition: 0.5s ease-in-out;
}
.icon-box-list .head {
  display: flex;
  gap: 5px;
  align-items: center;
}
.icon-box-list .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}
.icon-box-list .icon img {
  filter: drop-shadow(0px 0px 6px rgba(240 169 103 / 50%));
}
.icon-box-list .title {
  margin-bottom: 0;
}
.icon-box-list .body {
  flex: 1;
}
/* list */
.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.list .list-item {
  position: relative;
  padding-right: 30px;
  display: flex;
  align-items: center;
}
.list .list-item::before {
  content: "";
  position: absolute;
  right: 11px;
  width: 8px;
  height: 8px;
  background-color: #ebc37e;
  border-radius: 8px;
  opacity: 0.5;
  transition: 0.5s ease-in-out;
}
.list .list-title {
  font-size: var(--text-size);
  margin-bottom: 0;
}
.list .list-item:hover::before {
  opacity: 1;
  transform: scale(1.2);
}
/* img */
.img-center {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
/* counter */
.counter {
  margin: 30px 0;
}
.counter .counter-number {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.counter .counter-suffix-1,
.counter .counter-suffix-2 {
  color: var(--main-color);
  font-size: 60px;
  line-height: 1;
}
.counter .counter-num {
  color: var(--main-color);
  font-size: 200px;
  line-height: 1;
  margin-bottom: 0px;
  font-family: Poppins-Bold;
}
/* countdown */
.countdown {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 30px 0;
}
.countdown .item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
}
.countdown .item .time {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: var(--second-color);
  font-family: Poppins-Bold;
  width: 100px;
  height: 100px;
  border-radius: 10px;
  background-color: var(--off-white-color);
  border: 1px solid #ebc37e;
}
.countdown .item .text {
  font-size: var(--text-size);
}
/* stars */
.stars {
  display: flex;
  gap: 5px;
  font-size: 16px;
  margin-bottom: 10px;
}
.stars i.active {
  color: #cca967;
}
/* testimonial */
.testimonial {
  display: flex !important;
  flex-direction: column;
  gap: 15px;
  text-align: center;
  align-items: center;
}
.testimonial .desc {
  height: 160px;
  padding: 30px 15px;
  border-radius: 15px;
  background-color: var(--off-white-color);
  margin-bottom: 0;
}
.testimonial .name {
  position: relative;
  font-size: 18px;
  color: var(--title-color);
  margin-bottom: 0px;
}
.testimonial .job {
  font-size: 16px;
  margin: 0;
}
/* contact-widget */
#contact-widget {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  left: 15px;
  bottom: 80px;
  z-index: 1;
}
#contact-widget .contact-whatsapp,
#contact-widget .contact-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  visibility: visible;
  background-color: var(--second-color);
  box-shadow: 0px 5px 16px rgb(0 0 0/ 50%);
  font-size: 22px;
  color: var(--off-white-color);
  cursor: pointer;
  transition: 0.5s all;
}

#contact-widget .contact-whatsapp:hover,
#contact-widget .contact-phone:hover {
  color: var(--off-white-color);
  background-color: var(--main-color);
  transform: scale(1.2);
  box-shadow: 5px 2px 16px 0px rgb(204 169 103 / 45%);
}
.modal-body {
  text-align: center;
  padding: 60px 30px;
}
.modal-body,
.modal-body .title {
  font-size: 22px;
  color: var(--second-color);
  margin-bottom: 15px;
}
.modal-body .img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
#staticShare .modal-body .img img {
  height: 300px;
}
.modal-body .social {
  margin: 30px 0 0;
  justify-content: center;
}
.modal-body .social .item {
  font-size: 26px;
  color: var(--second-color);
}
.modal-body .social .item:hover {
  color: var(--main-color);
}
#social-share {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  right: auto;
  left: 15px;
  top: 10%;
  bottom: auto;
  background-color: var(--second-color);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 5px 10px 30px 0px rgb(0 0 0 / 45%);
}
#social-share .social {
  flex-direction: column;
  margin-bottom: 0;
}
#social-share .social li .item {
  color: var(--off-white-color);
}
#social-share .social li .item:hover {
  color: var(--main-color);
}
.tooltip {
  font-family: Tajawal-Regular;
  --bs-tooltip-bg: var(--second-color);
  --bs-tooltip-color: var(--off-white-color);
  --bs-tooltip-font-size: 14px;
}
