/* 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: 30px;
}

.sec-title-center {
  text-align: center;
  margin-bottom: 90px;
}

.sec-title .title,
.title,
.title2 {
  position: relative;
  color: var(--title-color);
  font-size: var(--sec-title-size);
  font-family: Tajawal-Bold;
  margin-bottom: 30px;
}

.title2 {
  font-size: 22px;
}

.sec-title .desc {}

.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: 20px;
  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;
  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: var(--second-color);
  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 {
  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;
  background-color: var(--fourth-color);
  border-radius: 15px;
  padding: 30px 15px;
}

.testimonial .desc {
  font-size: 14px;
  height: 100px;
  margin-bottom: 0;
  overflow: hidden;
}

.testimonial .info-box {
  display: flex;
  gap: 15px;
}

.testimonial .info-box .img {
  display: flex;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  padding: 5px;
  background-color: var(--main-color);
  overflow: hidden;
}

.testimonial .info-box .img img {
  border-radius: 50%;
}

.testimonial .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.testimonial .info .name {
  position: relative;
  font-size: 18px;
  color: var(--title-color);
  margin-bottom: 3px;
}

.testimonial .info-box .job,
.testimonial .info-box .country {
  font-size: 14px;
  margin-bottom: 5px;
}

/* 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(--main-color);
  box-shadow: 0px 5px 16px rgb(0 0 0/ 50%);
  font-size: 22px;
  color: var(--second-color);
  cursor: pointer;
  transition: 0.5s all;
}

#contact-widget .contact-whatsapp:hover,
#contact-widget .contact-phone:hover {
  color: var(--second-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(--fourth-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(--fourth-color);
  --bs-tooltip-font-size: 14px;
}

/* plans */
.plan {
  position: relative;
  padding: 30px 5px 5px;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 5px 30px rgba(70 62 48 / 25%);
  margin-bottom: 30px;
}

.plan.most {
  color: #fff;
  background-color: var(--main-color);
}

.plan .plan-header {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}

.plan p {
  font-size: 14px;
}

.plan .plan-name,
.plan p {
  margin-bottom: 0;
}

.plan .plan-name {
  color: var(--main-color);
  font-family: Tajawal-Bold;
}

.plan .perc-label,
.plan .most-label {
  position: absolute;
  left: 10px;
  top: 15px;
  display: flex;
  gap: 3px;
  align-items: center;
  justify-content: center;
  padding: 2px 12px;
  font-size: 14px;
  border-radius: 50px;
  font-family: Tajawal-Bold;
  color: var(--second-color);
  background-color: var(--main-color);
}

.plan .most-label {
  left: auto;
  right: 10px;
}

.plan.most .perc-label,
.plan.most .most-label {
  background-color: #ffffff;
}

.plan.most .stars i.active,
.plan.most .plan-name {
  color: #fff;
}

.plan .renewal {
  margin-top: -10px;
  font-size: 14px;
}

.plan .perc-label .text,
.plan.most .most-label .text {
  font-size: 12px;
}

.plan .plan-price {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 14px;
}

.plan .plan-price .price {
     font-size: 40px;
    color: var(--second-color);
    font-family: Tajawal-Bold;
    line-height: 1.5;
}

.plan .plan-price .period {
  margin-bottom: -10px;
}

.plan.most .plan-price .price {
  color: #fff;
}

.plan .plan-body {
  margin-top: 15px;
  border-radius: 10px;
  padding: 15px 10px;
}

.plan.most .plan-body {
  background-color: #fff;
}

.plan .list .list-item {
  gap: 5px;
  color: var(--second-color);
  font-size: 16px;
  background-color: #fffbf2;
  border-radius: 8px;
  padding-right: 40px;
  padding-top: 7px;
  padding-bottom: 7px;
}

.plan .list .list-item::before {
  right: 4px;
  width: 28px;
  height: 28px;
  background: url(../images/icon.svg) 0 0 no-repeat;
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(235 195 126 / 70%));
}

.list .list-item:hover::before {
  transform: scale(1);
}

.plan .plan-button {
  text-align: center;
}

.plan .plan-button .btn {
  margin-top: 30px;
  margin-bottom: 10px;
}

/* steps */
.step {
  position: relative;
  display: flex;
  align-items: center;
  width: calc(100% - 30px);
  height: 60px;
  background-color: var(--second-color);
  border-radius: 50px;
  margin-right: 30px;
  margin-bottom: 30px;
  padding: 0 45px 0 15px;
  font-size: 16px;
  color: var(--fourth-color);
}

.step::before {
  content: "";
  position: absolute;
  right: -20px;
  width: 50px;
  height: 50px;
  background-color: var(--main-color);
  border-radius: 8px;
  transform: rotate(45deg);
}

.step .icon {
  position: absolute;
  right: -3px;
  font-size: var(--sec-title-size);
  color: var(--second-color);
}