* {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  text-decoration: none;
  outline: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


@font-face {
  font-family: IBM-R;
  src: url(../fonts/IBMPlexSansArabic-Regular.ttf);
}

@font-face {
  font-family: IBM-M;
  src: url(../fonts/IBMPlexSansArabic-Medium.ttf);
}

@font-face {
  font-family: IBM-SB;
  src: url(../fonts/IBMPlexSansArabic-SemiBold.ttf);
}

 @font-face {
  font-family: IBM-B;
  src: url(../fonts/IBMPlexSansArabic-Bold.ttf);
}

@font-face {
  font-family: Inter-R;
  src: url(../fonts/Inter_18pt-Regular.ttf);
}

@font-face {
  font-family: Inter-M;
  src: url(../fonts/Inter_18pt-Medium.ttf);
}

@font-face {
  font-family: Inter-B;
  src: url(../fonts/Inter_18pt-Bold.ttf);
}

@font-face {
  font-family: Inter-SB;
  src: url(../fonts/Inter_18pt-SemiBold.ttf);
}

@font-face {
  font-family: Inter-EB;
  src: url(../fonts/Inter_18pt-ExtraBold.ttf);
}

@font-face {
  font-family: ProximaNova-SB;
  src: url(../fonts/ProximaNova-SemiBold.otf);
}

body {
  font-family: IBM-R;
  font-weight: 400;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/

.container {
  max-width: 1200px;
  width: 90%;
  padding: 0;
}

.noscroll {
  overflow: hidden;
}

.fade-in {
  opacity: 0;
  transform: scale(.98);
  animation-timing-function: ease;
  animation-duration: .6s;
  will-change: opacity, transform;
  animation-fill-mode: forwards;
  animation-duration: .36s;
  animation-name: fade-in;
}

@keyframes fade-in {
  0% {
    opacity: 0;
    transform: scale(.98);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}


/***********   Header Starts   ************/

header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 999;
}
header .navbar-logo img {
  width: 60px;
}

header .navbar {
  padding: 10.5px 0 11.5px;
  border-bottom: 1px solid #1111111A;
}

header .navbar .container {
  max-width: 1200px;
}

header .navbar .navbar-nav .nav-link {
    font-family: IBM-B;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-transform: capitalize;
  color: #000000;
  padding: 0 !important;

}

header .navbar .navbar-nav .nav-link:hover {
  color: #F97316;
}

header .navbar .navbar-nav.mx-auto {
  column-gap: 7.5104vw;
}

header .navbar .get-start {
  margin-left: 16px;
}

header .navbar .get-start .nav-link {
  background: #111111;
  padding: 10px 20px;
  border-radius: 1000px;
    font-family: IBM-B;
  font-weight: 700;
  font-size: 15px;
  line-height: 15px;
  color: #FFFFFF;
  transition: .5s;
}

header .navbar .get-start .nav-link:hover {
  background: #F97316;
}

.navbar .navbar-toggler {
  margin-right: 24px;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
}

.navbar .navbar-toggler .btn-close {
  padding: 0;
  margin: 0;
  display: block;
  width: 1.5em;
  height: 1.5em;
}


/***********   Header Ends   ************/


/***********   Footer Starts   ************/

footer {
  padding-top: 73px;
}

footer .footer-inner {
  border-top: 1px solid #1111111A;
}

footer .container {
  max-width: 1152px;
}

footer .top-footer {
  padding: 52px 0 74px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 48px;
}

footer .top-footer .company-info {
  width: 23.2639%;
}

footer .footer-logo {
  max-width: 100px;
}

footer .top-footer .review {
  margin-top: 19px;
}

footer .top-footer .review .quote {
  font-family: IBM-R;
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  color: #111111;
}

footer .top-footer .review .author {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

footer .top-footer .review .author-name {
    font-family: IBM-B;
  font-weight: 700;
  font-size: 14px;
  font-weight: 700;
  line-height: 15.4px;
  color: #111111;
}

footer .top-footer .review .author-designation {
  font-family: IBM-R;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #111111;
  margin-top: 7.5px;
}

footer .top-footer .follow-us {
  margin-top: 24px;
}

footer .top-footer .follow-us .title {
    font-family: IBM-B;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.5600000023841858px;
  color: #111111;
}

footer .top-footer .follow-us .social-links {
  display: flex;
  gap: 20px;
  margin-top: 16px;
}

footer .top-footer .follow-us .social-links .icon:hover svg path {
  fill: #F97316;
}

footer .top-footer .affiliate-program {
  margin-top: 12px;
  background: #FFF4ED;
  padding: 26px 18px 14px 14px;
  border-radius: 12px;
  display: inline-block;
}

footer .top-footer .affiliate-program>a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 2.4479vw;
}

footer .top-footer .affiliate-program .title-text {
    font-family: IBM-B;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #111111;
}

footer .top-footer .affiliate-program .rich-text {
  font-family: IBM-R;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.6000000238418579px;
  color: #111111;
}

footer .top-footer .affiliate-program svg {
  transition: .5s;
}

footer .top-footer .affiliate-program:hover svg {
  transform: translateX(10px);
}

footer .top-footer .footer-menu {
  width: 62.674%;
  display: flex;
  column-gap: 30.8864%;
  row-gap: 38px;
}

footer .top-footer .footer-menu .menu-title {
    font-family: IBM-B;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.5600000023841858px;
  white-space: nowrap;
  color: #111111;
}

footer .top-footer .footer-menu ul {
  margin-top: 32px;
}

footer .top-footer .footer-menu ul li {
  margin-bottom: 24px;
}

footer .top-footer .footer-menu ul li:last-child {
  margin-bottom: 0;
}

footer .top-footer .footer-menu .footer-nav-link {
    font-family: IBM-B;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #9A9A9A;
  display: block;
  transition: .5s;
}

footer .top-footer .footer-menu .footer-nav-link:hover {
  color: #F97316;
}

footer .bottom-footer {
  padding: 40px 0 34px;
  border-top: 1px solid #1111111A;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

footer .bottom-footer .copyrights p {
    font-family: IBM-B;
  font-weight: 700;
  font-size: 14px;
  line-height: 22.4px;
  color: #9A9A9A;
}

footer .bottom-footer .terms-policy a {
    font-family: IBM-B;
  font-weight: 700;
  font-size: 14px;
  line-height: 22.4px;
  color: #9A9A9A;
  transition: .5s;
}

footer .bottom-footer .terms-policy a:hover {
  color: #F97316;
}

footer .bottom-footer .terms-policy .nbsp {
    font-family: IBM-B;
  font-weight: 700;
  font-size: 14px;
  line-height: 22.4px;
  color: #9A9A9A;
  opacity: 0.5;
}


/***********   Footer Ends   ************/

/***********   Home Banner Starts   ************/

.home-banner .container {
  max-width: 910px;
}

.home-banner-inner {
  padding-top: 48px;
  text-align: center;
}

.home-banner-inner .intro-text {
  background: #FFF4ED;
  padding: 6px 12px;
  border-radius: 10px;
  display: inline-block;
}

.home-banner-inner .intro-text h6 {
    font-family: IBM-B;
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0.6000000238418579px;
  background: linear-gradient(90.61deg, #FF784B 0%, #F9A12D 50%, #FF784B 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  direction: rtl;
}

.home-banner-inner .title-text h1 {
    font-family: IBM-B;
  font-weight: 700;
  font-size: clamp(28px, 4.5vw, 72px);
  line-height: clamp(31px, 5vw, 79.2px);
  letter-spacing: -2.303999900817871px;
  color: #111111;
  margin-top: 24px;
}

.home-banner-inner .rich-text p {
  font-family: IBM-R;
  font-weight: 400;
  font-size: clamp(14px, 2vw, 22px);
  line-height: clamp(20px, 3vw, 30.8px);
  color: #111111;
  margin-top: clamp(24px, 4vw, 36px);
  direction: rtl;
}

.home-banner-inner .create-btn a {
  background: #F97316;
  padding: 21.5px 50.98px;
  border-radius: 1000px;
    font-family: IBM-B;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  color: #FFFFFF;
  margin-top: 22.5px;
  display: inline-block;
  transition: .5s;
}

.home-banner-inner .create-btn a:hover {
  background: #000000;
}

.home-banner-inner .create-btn a svg {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  transition: .5s;
}

.home-banner-inner .create-btn a:hover svg {
  transform: translateX(10px);
}

/***********   Home Banner Ends   ************/

/***********   AI-Image Slider Starts   ************/

.ai-image-slider {
  padding-top: 60px;
}

.ai-image-slider .slider-container {
  position: relative;
}

.ai-image-slider .slider-container::after {
  content: "";
  background: linear-gradient(96.02deg, #FF534B 0%, #F9B92D 100%);
  border-radius: 444px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.15;
}

.ai-image-slider .sliders {
  max-width: 2200px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

.ai-image-slider .slider {
  display: flex;
  width: calc(230.39px * 24);
}

.ai-image-slider .slide {
  width: 230.39px;
  height: 300px;
  padding: 10px 6px;
  flex-shrink: 0;
}

.ai-image-slider .slide-contents {
  height: 100%;
  width: 100%;
  position: relative;
}

.ai-image-slider .slide-contents img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid #1111110D;
  transition: transform .5s ease;
  will-change: transform;
}

.ai-image-slider .slide-contents .ai-generated {
  background: #11111133;
  padding: 0px 6px;
  border-radius: 3px;
  opacity: 0.8;
    font-family: IBM-B;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.48px;
  text-align: center;
  /* white-space: nowrap; */
  text-transform: uppercase;
  color: #FFFFFF;
  position: absolute;
  bottom: 13px;
  left: 50%;
  transform: translateX(-50%);
}

.ai-image-slider .slide-contents img:hover {
  transform: scale(1.018);
}

.ai-image-slider .slider-divider {
  width: 14px;
  height: 100%;
  border-radius: 10px;
  background: #FFFFFF;
  border: 2px solid #FF794033;
  box-shadow: 0px 2px 12px 4px #FF79403D;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.ai-image-slider .input-slider, .ai-image-slider .output-slider {
  overflow: hidden;
}

.ai-image-slider .output-slider {
  position: absolute;
  left: 0;
}

@keyframes ai-image-slider {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.ai-image-slider .slider {
  animation: ai-image-slider 36s linear infinite;
}



/***********   AI-Image Slider Ends   ************/

/***********   Thoub Steps Starts   ************/

.thoub-steps {
  padding: max(64px, min(5%)) 0 max(60px, min(7.5%));
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
}

.thoub-steps .container {
  max-width: 952px;
}

.thoub-steps .step-number {
  background: linear-gradient(124deg, #FF534B 0%, #F9B92D 100%);
  border-radius: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  font-family: IBM-SB;
  font-size: 19px;
  line-height: 28.5px;
  color: #FFFFFF;
  margin: 0 auto;
}

.thoub-steps .step-number-bottom-stroke {
  width: 3px;
  height: 34px;
  background: linear-gradient(180deg, rgba(255, 121, 64, 0.5) 0%, rgba(255, 121, 64, 0) 100%);
  display: block;
  margin: 0 auto;
}

.thoub-steps .step-number-top-stroke {
  width: 3px;
  height: 34px;
  background: linear-gradient(0deg, rgba(255, 121, 64, 0.5) 0%, rgba(255, 121, 64, 0) 100%);
  display: block;
  margin: 0 auto;
}

.thoub-steps .head {
  text-align: center;
}

.thoub-steps .head h2 {
    font-family: IBM-B;
  font-weight: 700;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: clamp(30.8px, 4.5vw, 52.8px);
  letter-spacing: -1.440000057220459px;
  color: #111111;
}

.thoub-steps .head p {
  font-family: IBM-R;
  font-weight: 400;
  font-size: 19px;
  line-height: 28.5px;
  color: #111111;
  max-width: 560px;
  margin: 0 auto;
  margin-top: 12px;
  opacity: 0.7;
}

.thoub-steps .gallery {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 52px;
  transition: transform .5s ease;
}

.thoub-steps .gallery:hover {
  transform: scale(1.012);
}

.thoub-steps .gallery .left, .thoub-steps .gallery .right {
  width: 36.345%;
  transition: transform .5s ease;
  /* width: 346px; */
}

.thoub-steps .gallery .center {
  width: 21.4286%;
  transition: transform .5s ease;
}

.thoub-steps .gallery .center .mobile {
  position: relative;
}

.thoub-steps .gallery .center .mobile .vedio {
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  left: 14px;
}

.thoub-steps .gallery .center .mobile img {
  width: 100%;
  height: 100%;
}

.thoub-steps .gallery .center .vedio img {
  border-radius: 35px;
}

/***********   Thoub First Step Ends   ************/

/***********   Thoub Second Step Ends   ************/
.thoub-steps .second-step .step-number {
  background: linear-gradient(103deg, #4067EF 0%, #1AA4EE 100%);
}

.thoub-steps .second-step .step-number-bottom-stroke {
  background: linear-gradient(180deg, rgba(0, 117, 255, 0.5) 0%, rgba(0, 117, 255, 0) 100%);
  margin-bottom: 11px;
}

.thoub-steps .second-step .step-number-top-stroke {
  background: linear-gradient(0deg, rgba(0, 117, 255, 0.5) 0%, rgba(0, 117, 255, 0) 100%);
}

.thoub-steps .second-step .head p {
  max-width: 460px;
}

.thoub-steps .pixelate-sec {
  position: relative;
  margin-top: 32px;
  aspect-ratio: 28 / 9;
  transition: transform .5s ease;
  will-change: transform;
}

.thoub-steps .pixelate-sec:hover {
  transform: scale(1.012);
}

.thoub-steps .pixelate-bg {
  position: absolute;
  overflow: hidden;
  -webkit-mask-image: url(../img/pixelate-bg-tile.svg);
  mask-image: url(../img/pixelate-bg-tile.svg);
  -webkit-mask-position: 50% 50%;
  mask-position: 50% 50%;
  -webkit-mask-size: 62px 80px;
  mask-size: 62px 80px;
  -webkit-mask-repeat: repeat;
  mask-repeat: repeat;
  background: radial-gradient(80% 50% at 50% 50%, rgba(254, 254, 254, 1) 0, rgba(254, 254, 254, 0.5) 80%, rgba(254, 254, 254, 0.1) 100%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.thoub-steps .pixelate-animation {
  background: radial-gradient(circle, transparent 30%, rgba(17, 17, 17, 1) 46%, transparent 68%);
  border: 100px solid rgba(17, 17, 17, 0.8);
  position: absolute;
  height: 100%;
  right: 0;
  top: 0;
  left: 0;
  transform-origin: center;
  background-position: 50% 50%;
  margin: auto;
  transform: scale(0);
  animation: pixelate-animation 1.3s ease-in-out infinite;
  pointer-events: none;
  animation-delay: -0.4s;
}

@keyframes pixelate-animation {
  0% {
    transform: scale(0);
  }

  100% {
    opacity: 0;
    transform: scale(2.6);
  }
}

.thoub-steps .pixelate-gallery {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 186px;
  height: 186px;
  border: 1px solid rgba(154, 154, 154);
}

.thoub-steps .pixelate-gallery .pixelate-image {
  animation-name: hide-one-third;
  animation-duration: 3.9s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  position: absolute;
  width: 100%;
  height: 100%;
}

@keyframes hide-one-third {
  0% {
    opacity: 1;
  }

  30% {
    opacity: 1;
  }

  36% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.thoub-steps .pixelate-gallery .pixelate-image img {
  animation-name: small-pulse;
  animation-duration: 1.3s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-delay: -30ms;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes small-pulse {
  0% {
    transform: scale(1);
  }

  8% {
    transform: scale(1.03);
  }

  16% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}


/***********   Thoub Second Step Ends   ************/


/***********   Thoub Third Step Ends   ************/
.thoub-steps .third-step .step-number {
  background: linear-gradient(108deg, #960EFF 0%, #AF57FF 100%);
  margin-bottom: 23px;
}

.thoub-steps .third-step .step-number-bottom-stroke {
  background: linear-gradient(180deg, rgba(161, 49, 255, 0.5) 0%, rgba(161, 49, 255, 0) 100%);
}

.thoub-steps .third-step .step-number-top-stroke {
  background: linear-gradient(0deg, rgba(161, 49, 255, 0.5) 0%, rgba(161, 49, 255, 0) 100%);
}

.thoub-steps .headshot-slider {
  margin-top: 32px;
  position: relative;
  transition: transform .5s ease;
}

.thoub-steps .headshot-slider:hover {
  transform: scale(1.012);
}

.thoub-steps .headshot-slider:after {
  content: "";
  background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  width: 80px;
  top: 0;
  right: -1px;
  bottom: 0;
  z-index: 1;
}

.thoub-steps .headshot-slider::before {
  content: "";
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  width: 80px;
  top: 0;
  left: -1px;
  bottom: 0;
  z-index: 1;
}

.thoub-steps .headshot-slider .translateX {
  margin-bottom: 20px;
}

.thoub-steps .headshot-slider .slider {
  display: flex;
  gap: 20px;
  width: calc(116px * 22);
  max-width: 100%;
}

.thoub-steps .headshot-slider .slider {
  animation: infinite-translate 50s linear infinite;
}

@keyframes infinite-translate {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}

.thoub-steps .headshot-slider .slider .slide {
  width: 116px;
  flex-shrink: 0;
  border: 1px solid #F2F2F2;
  border-radius: 10px;
  transition: .2s ease;
  aspect-ratio: 9 / 12;
}

.thoub-steps .headshot-slider .slider .slide:hover {
  border: 1px solid rgb(154, 154, 154);
}

.thoub-steps .headshot-slider .slider .slide-contents {
  width: 100%;
  height: 100%;
}

.thoub-steps .headshot-slider .slider .slide img {
  border-radius: 9px;
  border: 1px solid #EAEAEA;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thoub-steps .headshot-slider .rich-text {
  text-align: center;
  margin-top: 8px;
  position: relative;
  z-index: 2;
}

.thoub-steps .headshot-slider .rich-text p {
    font-family: IBM-B;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.47999998927116394px;
  text-transform: uppercase;
  color: #9A9A9A;

}

/***********   Thoub Third Step Ends   ************/


/***********   Thoub Steps Ends   ************/


/***********   Thoub Steps Ends   ************/

.thoub-testimonial {
  padding: max(64px, min(7.5%)) 0 max(60px, min(8.75%));
  background: #111111;
  color: #FFFFFF;
}

.thoub-testimonial .testimonial-head {
  text-align: center;
  max-width: 55%;
  margin: 0 auto;
}

.thoub-testimonial .testimonial-head h2 {
    font-family: IBM-B;
  font-weight: 700;
  font-size: clamp(48px, 4.5vw, 68px);
  line-height: clamp(52.8px, 4.5vw, 73.44px);
  letter-spacing: -2.24399995803833px;
  color: #FFFFFF;
}

.thoub-testimonial .testimonial-head h2 span {
    font-family: IBM-B;
  font-weight: 700;
  background: linear-gradient(92.46deg, #FF784B 0%, #F9A12D 50%, #FF784B 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.thoub-testimonial .testimonial-head p {
  font-family: IBM-R;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 22px);
  line-height: clamp(26px, 3vw, 33px);
  color: #FFFFFF;
  opacity: 0.8;
  margin-top: 28px;
}

.thoub-testimonial .testimonial-head .create-btn a {
  margin-top: 46px;
  background: linear-gradient(97.28deg, #FF534B 0%, #F9B92D 100%);
  padding: 14px 24px;
  border-radius: 1000px;
  display: inline-block;
    font-family: IBM-B;
  font-weight: 700;
  font-size: 17px;
  line-height: 17px;
  color: #FFFFFF;
}

.thoub-testimonial .testimonial-body {
  max-width: 2200px;
  margin: 0 auto;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}

.thoub-testimonial .testimonial-body::after {
  content: "";
  background: linear-gradient(0deg, #111111 0%, rgba(17, 17, 17, 0) 100%);
  position: absolute;
  width: 100%;
  bottom: 0;
  height: 96px;
}

.thoub-testimonial .testimonials {
  display: flex;
  gap: 20px;
  animation-name: testimonial-transition;
  animation-duration: 50s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  max-height: 1030px;
  position: relative;
  padding: 40px 0;
}

@keyframes testimonial-transition {
  0% {
    transform: translate3d(-50%, 0, 0);
  }

  100% {
    transform: translateZ(0);
  }
}

.thoub-testimonial .testimonials-col:nth-child(even) {
  margin-top: 24px;
}

.thoub-testimonial .testimonials-col {
  flex: 0 0 321.66px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.thoub-testimonial .each-testimonial {
  background: #FFFFFF0D;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid #FFFFFF33;
  transition: .5s ease;
}

.thoub-testimonial .each-testimonial:hover {
  transform: scale(1.012);
  border: 1px solid #ffffff80;
}

.thoub-testimonial .testimonial-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.thoub-testimonial .author-deatils {
  display: flex;
  align-items: center;
  gap: 8px;
}

.thoub-testimonial .author-deatils .avatar {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  background-color: #FFFFFF33;
  border-radius: 9999px;
}

.thoub-testimonial .author-deatils .avatar img {
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  object-fit: cover;
}

.thoub-testimonial .author-deatils .author-name h5 {
    font-family: IBM-B;
  font-weight: 700;
  font-size: 16px;
  line-height: 17.6px;
  color: #FFFFFF;
}


.thoub-testimonial .author-deatils .author-name h6 {
    font-family: IBM-B;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: rgb(255, 255, 255, 0.6);
  margin-top: 4px;
}

.thoub-testimonial .testimonial-top .source {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.thoub-testimonial .testimonial-top .source img {
  width: 100%;
  height: 100%;
}

.thoub-testimonial .testimonial-bottom {
  margin-top: 8px;
}

.thoub-testimonial .testimonial-bottom .rich-text {
  font-family: IBM-R;
  font-size: 16px;
  line-height: 24px;
  color: rgb(255, 255, 255);
  opacity: .6;
}

.thoub-testimonial .testimonial-bottom .feat-img {
  margin-top: 8px;
  position: relative;
}

.thoub-testimonial .testimonial-bottom .feat-img img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.thoub-testimonial .testimonial-bottom .ai-generated {
    font-family: IBM-B;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 0.47999998927116394px;
  color: rgb(255, 255, 255);
  position: absolute;
  bottom: 14px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  text-align: center;
}

/***********   Thoub Steps Ends   ************/


/***********   Thoub Pricing Plans Starts   ************/

.thoub-pricing {
  /* padding: max(64px, min(7.5%)) 0; */
  padding-bottom: max(64px, min(7.5%));
}

.thoub-pricing .container {
  max-width: 1152px;
}

.thoub-pricing .pricing-head {
  text-align: center;
  max-width: 790px;
  margin: 0 auto;
}

.thoub-pricing .pricing-head h2 {
    font-family: IBM-B;
  font-weight: 700;
  font-size: clamp(48px, 4.5vw, 68px);
  line-height: clamp(52.8px, 4.5vw, 73.44px);
  letter-spacing: -2.24399995803833px;
  color: #000000;
}

.thoub-pricing .pricing-head h2 span {
    font-family: IBM-B;
  font-weight: 700;
  background: linear-gradient(91.69deg, #4067EF 0%, #1AA4EE 50%, #4067EF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.thoub-pricing .pricing-head p {
  font-family: IBM-R;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 22px);
  line-height: clamp(26px, 3vw, 33px);
  color: #000000;
  opacity: 0.8;
  margin-top: 18px;
  direction: rtl;
}

.thoub-pricing .plan-category {
  margin-top: 64px;
  text-align: center;
}

.thoub-pricing .plan-category .buttons {
  background: #1111110D;
  border-radius: 9999px;
  padding: 4px 3px;
  display: inline-block;
}

.thoub-pricing .plan-category .buttons .button {
  background: #FFFFFF;
  border: 1px solid #EAEAEA;
  border-radius: 9999px;
  padding: 7px 25.645px;
  font-family: IBM-R;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #111111;
}

.thoub-pricing .plans {
  margin-top: clamp(40px, 6vw, 64px);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 2.08325%;
  row-gap: 48px;
}

.thoub-pricing .plans .plan {
  width: 31.9445%;
  max-width: 575px;
  margin: 0 auto;
  border: 1px solid #11111114;
  border-radius: 22px;
  padding: 48px;
  position: relative;
  transition: .5s ease;
}

.thoub-pricing .plans .plan:hover {
  transform: scale(1.018);
}

.thoub-pricing .plan .plan-highlight {
  background-color: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 9999px;
  padding: 5px 17px;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.thoub-pricing .plan .plan-highlight>div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.thoub-pricing .plan .plan-highlight span {
    font-family: IBM-B;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
  background: linear-gradient(91.45deg, #4067EF 0%, #1AA4EE 50%, #4067EF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.thoub-pricing .plan.premium .plan-highlight span {
  background: linear-gradient(92.47deg, #960EFF 0%, #AF57FF 50%, #960EFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.thoub-pricing .plan .plan-name {
    font-family: IBM-B;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.6399999856948853px;
  color: #11111180;
  text-align: center;
}

.thoub-pricing .plan .plan-price {
  text-align: center;
  margin-top: 15px;
}

.thoub-pricing .plan .plan-price .actual {
  font-family: IBM-B;
  font-size: 32px;
  line-height: 39px;
  letter-spacing: -0.800000011920929px;
  color: rgb(17, 17, 17);
  text-decoration: line-through;
  opacity: .2;
}

.thoub-pricing .plan .plan-price .current {
  font-family: IBM-B;
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: clamp(60px, 5.5vw, 96px);
  letter-spacing: -4px;
  color: #111111;
  margin-top: -7px;
}

.thoub-pricing .plan.basic .plan-price .current {
  background: linear-gradient(93.7deg, #4067EF 0%, #1AA4EE 50%, #4067EF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.thoub-pricing .plan .plan-includes ul {
  margin: 36px 0 86px;
}

.thoub-pricing .plan .plan-includes ul li {
  font-family: IBM-R;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #111111B2;
  margin-bottom: 12px;
  display: flex;
  gap: 5px;
}

.thoub-pricing .plan .plan-includes ul li .icon {
  flex: 0 0 22px;
}

.thoub-pricing .plan .plan-includes ul li:last-child {
  margin-bottom: 0;
}

.thoub-pricing .plan .buy-plan {
  margin-top: auto;
}

.thoub-pricing .plan .buy-plan button {
  width: 100%;
  background: #111111;
  color: #FFFFFF;
  padding: 14px;
  border-radius: 1000px;
    font-family: IBM-B;
  font-weight: 700;
  font-size: 17px;
  line-height: 17px;
}

.thoub-pricing .plan .buy-plan button:hover {
  background: linear-gradient(91.74deg, #4067EF 0%, #1AA4EE 50%, #4067EF 100%);
  opacity: .8;
}

.thoub-pricing .plan.basic .buy-plan button {
  background: linear-gradient(91.74deg, #4067EF 0%, #1AA4EE 50%, #4067EF 100%);
}

/***********   Thoub Pricing Plans Ends   ************/


/***********   Thoub Counter Starts   ************/

.thoub-counter {
  background: #11111105;
  padding: 49px 0;
  border-width: 1px 0px 1px 0px;
  border-style: solid;
  border-color: #1111111A;
}

.thoub-counter .counters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.thoub-counter .counters .count {
  width: 33.3333%;
  text-align: center;
  padding: 0 16px;
}

.thoub-counter .counters .count:nth-child(2) {
  border-width: 0px 1px 0px 1px;
  border-style: solid;
  border-color: #1111111A;
}

.thoub-counter .counters .count h5 {
  font-family: IBM-B;
  font-size: clamp(60px, 4.5vw, 66px);
  line-height: clamp(66px, 4.5vw, 66px);
  color: #111111;
}

.thoub-counter .counters .count p {
    font-family: IBM-B;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.5600000023841858px;
  text-transform: uppercase;
  color: #11111180;
  margin-top: 12px;
}

/***********   Thoub Counter Ends   ************/

/***********   Thoub Guarantee Ends   ************/

.thoub-guarantee {
  padding: max(64px, min(8.3334%)) 0 max(60px, min(8.75%));
}

.thoub-guarantee .container {
  max-width: 922px;
}

.thoub-guarantee .thoub-guarantee-container {
  display: flex;
  align-items: center;
}

.thoub-guarantee .guarantee-contents {
  max-width: 510px;
  margin: 0 auto;
  text-align: center;
}

.thoub-guarantee .guarantee-contents h2 {
    font-family: IBM-B;
  font-weight: 700;
  font-size: clamp(48px, 4.5vw, 68px);
  line-height: clamp(52.8px, 4.5vw, 73.44px);
  letter-spacing: -2.24399995803833px;
  color: #000000;
  max-width: 440px;
  margin: 0 auto;
}

.thoub-guarantee .guarantee-contents h2 span {
    font-family: IBM-B;
  font-weight: 700;
  background: linear-gradient(94.3deg, #33D7A6 0%, #1183E8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.thoub-guarantee .guarantee-contents p {
  font-family: IBM-R;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 22px);
  line-height: clamp(26px, 3vw, 33px);
  color: #000000;
  opacity: .8;
  margin-top: 23.5px;
  direction: rtl;
}

.thoub-guarantee .guarantee-contents p a {
  color: #000000;
  border-bottom: 1px solid #000000;
}

.thoub-guarantee .guarantee-contents .create-btn a {
  margin-top: 36px;
  background: #111111;
  padding: 14px 24px;
  border-radius: 1000px;
  display: inline-block;
    font-family: IBM-B;
  font-weight: 700;
  font-size: 17px;
  line-height: 17px;
  color: #FFFFFF;
  transition: .5s;
}

.thoub-guarantee .guarantee-contents .create-btn a:hover {
  background: linear-gradient(94.3deg, #33D7A6 0%, #1183E8 100%);
}

.thoub-guarantee .gallery {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.thoub-guarantee .gallery .avatar {
  width: 124px;
  height: 142px;
}

.thoub-guarantee .gallery .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0px 4px 12px 6px rgba(0, 0, 0, 0.1), 0px 2px 4px 1px rgba(0, 0, 0, 0.2);
  animation-name: guarantee-avatar-animation;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes guarantee-avatar-animation {
  0% {
    transform: translateY(0) rotate(-.3deg);
  }

  100% {
    transform: translateY(7px) rotate(.6deg);
  }
}

/***********   Thoub Guarantee Ends   ************/

/***********   Thoub Privacy Starts   ************/

.thoub-privacy {
  padding: max(64px, min(7.5%)) 0;
  background: #111111;
  color: #ffffff;
}


.thoub-privacy .container {
  max-width: 1152px;
}

.thoub-privacy .privacy-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.thoub-privacy .privacy-head h2 {
    font-family: IBM-B;
  font-weight: 700;
  font-size: clamp(48px, 4.5vw, 68px);
  line-height: clamp(52.8px, 4.5vw, 73.44px);
  letter-spacing: -2.24399995803833px;
  color: #ffffff;
}

.thoub-privacy .privacy-head h2 span {
    font-family: IBM-B;
  font-weight: 700;
  background: linear-gradient(92.3deg, #960EFF 0%, #AF57FF 50%, #960EFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.thoub-privacy .privacy-head p {
  font-family: IBM-R;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 22px);
  line-height: clamp(26px, 3vw, 33px);
  color: #ffffff;
  opacity: .8;
  margin-top: 17.5px;
}

.thoub-privacy .privacy-head .create-btn a {
  margin-top: 32px;
  background: linear-gradient(92.3deg, #960EFF 0%, #AF57FF 50%, #960EFF 100%);
  padding: 14px 24px;
  border-radius: 1000px;
  display: inline-block;
    font-family: IBM-B;
  font-weight: 700;
  font-size: 17px;
  line-height: 17px;
  color: #FFFFFF;
  transition: .5s;
}

.thoub-privacy .privacy-head .create-btn a:hover {
  opacity: .8;
}

.thoub-privacy .privacy-cards {
  margin-top: 64px;
  /* display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 1.7361%;
  row-gap: 20px;
}

.thoub-privacy .privacy-card {
  border: 1px solid #B966FF29;
  border-radius: 22px;
  padding: 39.56px 0 0;
  position: relative;
  overflow: hidden;
  transition: transform 500ms ease, border 300ms ease;
  display: flex;
  flex-direction: column;
  width: 49.132%;
}

.thoub-privacy .privacy-card:hover {
  transform: scale(1.012);
  border: 1px solid #b966ff47;
}

.thoub-privacy .privacy-card .card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 23.1 / 9;
  position: relative;
  transition: transform 500ms ease;
}

.thoub-privacy .privacy-card:hover .card-icon {
  transform: scale(1.044);
}

.thoub-privacy .privacy-card .card-contents {
  text-align: center;
  padding: 40px 24px;
  background: linear-gradient(0deg, #111111 0%, #111111 50%, rgba(17, 17, 17, 0) 100%);
  position: relative;
  margin-top: auto;
}

.thoub-privacy .privacy-card .card-contents>div {
  max-width: 320px;
  margin: 0 auto;
}

.thoub-privacy .privacy-card.encryption .card-contents>div {
  max-width: 260px;
}

.thoub-privacy .privacy-card .card-contents h5 {
    font-family: IBM-B;
  font-weight: 700;
  font-size: 28px;
  line-height: 31px;
  color: #FFFFFF;
}

.thoub-privacy .privacy-card .card-contents p {
  font-family: IBM-R;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #FFFFFF;
  opacity: .7;
  margin-top: 12px;
  direction: rtl;
}

.thoub-privacy .privacy-card .card-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: transform 500ms ease;
}

.thoub-privacy .privacy-card:hover .card-bg {
  transform: scale(1.012);
}

.thoub-privacy .privacy-card .shuffle-text-animation {
  font-family: IBM-B;
  font-size: 17.02px;
  line-height: 28.8px;
  letter-spacing: 1.7999999523162842px;
  color: #A131FF;
  opacity: 0.08;
  word-break: break-all;
}

.thoub-privacy .privacy-card .blur-overlay {
  width: 50%;
  height: 50%;
  background: linear-gradient(104.05deg, #960EFF 0%, #AF57FF 100%);
  filter: blur(100px);
  border-radius: 40%;
  opacity: .3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -80%, 0px);
}

.thoub-privacy .privacy-testimonial {
  max-width: 384px;
  margin: 0 auto;
  margin-top: 64px;
}

.thoub-privacy .privacy-testimonial .testimonial-quote p {
    font-family: IBM-B;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.6000000238418579px;
  text-align: center;
  color: #FFFFFF;
}

.thoub-privacy .privacy-testimonial .testimonial-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.thoub-privacy .privacy-testimonial .testimonial-profile .name {
  opacity: 0.8;
}

.thoub-privacy .privacy-testimonial .testimonial-profile .name h5 {
  font-family: IBM-B;
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
}

.thoub-privacy .privacy-testimonial .testimonial-profile .name h6 {
  font-family: IBM-B;
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
}

.thoub-privacy .privacy-testimonial .testimonial-profile .name p {
  font-family: IBM-R;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
}


/***********   Thoub Privacy Ends   ************/

/***********   Thoub Faqs Starts   ************/

.thoub-faqs {
  padding: max(64px, min(7.5%)) 0;
}

.thoub-faqs .container {
  max-width: 1152px;
}

.thoub-faqs .faqs-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 32px;
}

.thoub-faqs .faqs-head {
  width: 22.6563%;
  text-align: left;
}

.thoub-faqs .faqs-head h2 {
    font-family: IBM-B;
  font-weight: 700;
  font-size: 48px;
  line-height: 52.8px;
  letter-spacing: -1.440000057220459px;
  color: #111111;
}

.thoub-faqs .faqs-head p {
  font-family: IBM-R;
  font-weight: 400;
  font-size: 19px;
  line-height: 28.5px;
  color: #111111;
  opacity: 0.7;
  margin-top: 15px;
  direction: rtl;
}

.thoub-faqs .faqs-head p a {
  color: #FF7940;
}

.thoub-faqs .faqs-head p a:hover {
  color: #000000;
  text-decoration: underline;
}

.thoub-faqs .faqs-accordion {
  width: 100%;
}

.thoub-faqs .faqs-accordion-item {
  border-bottom: 1px solid #EAEAEA
}

.thoub-faqs .accordion-tab {
  padding: 19px 16px 21px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
}

.thoub-faqs .accordion-toggle-icon {
  position: relative;
  top: 8.45px;
  flex: 0 0 13px;
  height: 13px;
}

.thoub-faqs .accordion-toggle-icon .line {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #ff7940;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.thoub-faqs .accordion-toggle-icon .open {
  transform: rotate(90deg);
}

.thoub-faqs .accordion-toggle-icon .close {
  transform: rotate(0deg);
}

.thoub-faqs .accordion-toggle-icon .line {
  transition: transform 0.3s ease;
}

.thoub-faqs .accordion-tab.active .accordion-toggle-icon .close {
  display: none;
}

.thoub-faqs .accordion-tab.active .accordion-toggle-icon .open {
  transform: rotate(0deg);
}

.thoub-faqs .faqs-accordion-item .accordion-tab h3 {
    font-family: IBM-B;
  font-weight: 700;
  font-size: 18px;
  line-height: 28.8px;
  color: #111111;
}

.thoub-faqs .faqs-accordion-item .accordion-panel {
  padding: 0 16px 20px;
  display: none;
}

.thoub-faqs .faqs-accordion-item .accordion-panel p {
  font-family: IBM-R;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #111111;
  opacity: .7;
}

/***********   Thoub Faqs Ends   ************/

/***********   Thoub Get-AI Starts   ************/

.thoub-get-ai {
  position: relative;
  overflow: hidden;
}

.thoub-get-ai .container {
  max-width: 1152px;
}

.thoub-get-ai::before {
  content: "";
  background: linear-gradient(98.07deg, #FF534B 0%, #F9B92D 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 24.21% 106.08%;
  opacity: 0.2;
  filter: blur(100px);
}

.thoub-get-ai .thoub-get-ai-container {
  display: flex;
  align-items: center;
}

.thoub-get-ai .get-ai-contents {
  max-width: 512px;
  margin: 0 auto;
  text-align: center;
}

.thoub-get-ai .get-ai-contents h2 {
    font-family: IBM-B;
  font-weight: 700;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: clamp(30.8px, 4.5vw, 70px);
  letter-spacing: -1.440000057220459px;
  color: #000000;
}

.thoub-get-ai .get-ai-contents h2 span {
    font-family: IBM-B;
  font-weight: 700;
  background: linear-gradient(93.92deg, #FF784B 0%, #F9A12D 50%, #FF784B 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.thoub-get-ai .get-ai-contents .create-btn a {
  margin-top: 24px;
  background: #000000;
  padding: 14px 24px;
  border-radius: 1000px;
  display: inline-block;
    font-family: IBM-B;
  font-weight: 700;
  font-size: 17px;
  line-height: 17px;
  letter-spacing: -0.16px;
  color: #FFFFFF;
  transition: .5s;
}

.thoub-get-ai .get-ai-contents .create-btn a:hover {
  background: linear-gradient(93.92deg, #FF784B 0%, #F9A12D 50%, #FF784B 100%);
}

.thoub-get-ai .get-ai-contents .create-btn a svg {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  transition: .5s;
}

.thoub-get-ai .get-ai-contents .create-btn a:hover svg {
  transform: translateX(10px);
}

.thoub-get-ai .gallery {
  display: flex;
  flex-direction: column;
  gap: 149px;
}

.thoub-get-ai .gallery .avatar {
  width: 124px;
  height: 142px;
}

.thoub-get-ai .gallery .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0px 4px 12px 6px rgba(0, 0, 0, 0.1), 0px 2px 4px 1px rgba(0, 0, 0, 0.2);
  animation-name: get-ai-avatar-animation;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes get-ai-avatar-animation {
  0% {
    transform: translateY(0) rotate(-.3deg);
  }

  100% {
    transform: translateY(7px) rotate(.6deg);
  }
}

/***********   Thoub Get-AI Ends   ************/


/***********   Thoub Login Starts   ************/

.thoub-login {
  height: 100vh;
  display: flex;
}

.thoub-login-left {
  width: 46%;
  height: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.thoub-login-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  position: absolute;
  top: -1rem;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.thoub-login-gallery .img-wrap {
  width: 100%;
  aspect-ratio: 2048 / 2560;
}

.thoub-login-gallery .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.thoub-login-testimonial {
  width: 100%;
  max-width: 576px;
  padding: calc(max(3.3333vw, 40px));
  border-radius: 12px;
  background: rgba(255, 255, 255, 1);
}

.thoub-login-testimonial .mailstone {
  text-align: center;
}

.thoub-login-testimonial .mailstone h2 {
  font-family: IBM-B;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  background: linear-gradient(92.46deg, #FF784B 0%, #F9A12D 50%, #FF784B 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.thoub-login-testimonial .mailstone p {
  font-family: IBM-R;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(9, 9, 11, 1);
}

.thoub-login-testimonial .slider {
  margin: 23px 0 16px;
}

.thoub-login-testimonial .slider .quote {
  font-family: IBM-R;
  font-size: 26px;
  font-weight: 400;
  line-height: 32px;
  color: rgba(23, 23, 26, 1);
  margin-bottom: 16px;
  direction: rtl;
  text-align: left;
}

.thoub-login-testimonial .slider .author {
  font-family: IBM-R;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  color: rgba(23, 23, 26, 1);
}

.thoub-login-right {
  padding: 20px;
  width: 54%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.thoub-login-credentials {
  width: 100%;
  max-width: 420px;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.thoub-login-credentials::-webkit-scrollbar {
  display: none;
}

.thoub-login-credentials-head .back-to-login {
  font-family: IBM-R;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(9, 9, 11, 1);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  display: none;
}

.thoub-login-credentials-head .back-to-login:hover {
  color: #FF784B;
}

.thoub-login-credentials-head .back-to-login:hover svg path {
  fill: #FF784B;
}

.thoub-login-credentials-head .back-to-login.show {
  display: flex;
}

.thoub-login-credentials-head .back-to-login .icon {
  display: flex;
}

.thoub-login-credentials-head .thoub-logo {
  margin-bottom: 20px;
  max-width: 60px;
}

.thoub-login-credentials-head .mailstone {
  display: none;
  margin-bottom: 15px;
}

.thoub-login-credentials-head .mailstone h2 {
  font-family: IBM-B;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.6000000238418579px;
  background: linear-gradient(92.46deg, #FF784B 0%, #F9A12D 50%, #FF784B 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.thoub-login-credentials-head .mailstone p {
  font-family: IBM-R;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(9, 9, 11, 1);
}

.thoub-login-credentials-body .title {
  font-family: IBM-R;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.64);
  margin-bottom: 24px;
}

.thoub-login-credentials-body .continue-btns button {
  width: 100%;
  padding: 12px 24px;
  background: rgba(55, 118, 239, 1);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-family: IBM-SB;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: rgba(255, 255, 255, 1);
}

.thoub-login-credentials-body .continue-btns button.email {
  border: 1px solid rgba(38, 55, 122, 0.06);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  background: rgba(38, 55, 122, 0.06);
  color: rgba(23, 23, 26, 1);
}

.thoub-login-credentials-body .continue-btns .or {
  margin: 40px 0 24px;
  display: flex;
  align-items: center;
}

.thoub-login-credentials-body .continue-btns .or .divider {
  width: 100%;
  height: 1px;
  background: rgba(231, 231, 232, 1);
}

.thoub-login-credentials-body .continue-btns .or span {
  font-family: IBM-SB;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  color: rgba(172, 172, 171, 1);
  padding: 0 16px;
}

.thoub-login-credentials-body .continue-btns.hide {
  display: none;
}

.thoub-login-credentials-body .email-verification-form {
  display: none;
}

.thoub-login-credentials-body .email-verification-form.show {
  display: block;
}

.thoub-login-credentials-body .email-verification-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.thoub-login-credentials-body .email-verification-form input {
  width: 100%;
  padding: 12px 24px;
  border: 1px solid rgba(38, 55, 122, 0.06);
  background: rgba(38, 55, 122, 0.06);
  color: rgba(23, 23, 26, 1);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-family: IBM-SB;
  font-size: 16px;
  line-height: 24px;
}

.thoub-login-credentials-body .email-verification-form button {
  width: 100%;
  padding: 12px 24px;
  border: 1px solid rgba(38, 55, 122, 0.06);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  background: rgba(38, 55, 122, 0.06);
  color: rgba(23, 23, 26, 1);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-family: IBM-SB;
  font-size: 16px;
  line-height: 24px;
}

.thoub-login-credentials-body .privacy-text {
  font-family: IBM-R;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.64);
  margin-top: 16px;
  direction: rtl;
  text-align: left;
}

.thoub-login-credentials-body .features {
  margin-top: 24px;
}

.thoub-login-credentials-body .features ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: IBM-R;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(71, 84, 103, 1);
  margin-bottom: 4px;
  direction: rtl;
}

.thoub-login-credentials-body .features ul li:last-child {
  margin: 0;
}

.thoub-login-credentials .slider {
  margin-top: 15px;
  display: none;
}

.thoub-login-credentials .slider .slider-contents {
  aspect-ratio: 16 / 20;
  padding: 53px 22px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  position: relative;
}

.thoub-login-credentials .slider .slider-contents::after {
  content: "";
  background: rgba(0, 0, 0, 0.28);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 6px;
}

.thoub-login-credentials .slider .slider-inner {
  position: relative;
  z-index: 1;
}

.thoub-login-credentials .slider .quote {
  font-family: IBM-B;
  font-size: 18px;
  font-weight: 700;
  line-height: 28.8px;
  color: #ffffff;
  direction: rtl;
  text-align: left;
}

.thoub-login-credentials .slider .slick-dots {
  display: flex;
  gap: 4px;
  position: absolute;
  bottom: 34px;
  left: 22px;
}

.thoub-login-credentials .slider .slick-dots li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  cursor: pointer;
}

.thoub-login-credentials .slider .slick-dots li.slick-active {
  background: rgba(255, 255, 255, 1);
}

.thoub-login-credentials .slider .slick-dots li button {
  display: none;
}


.thoub-login-credentials .email-verification-contents .check-email {
  font-family: IBM-B;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  background: linear-gradient(92.46deg, #FF784B 0%, #F9A12D 50%, #FF784B 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 16px;
}

.thoub-login-credentials .email-verification-contents .send-to-email {
  font-family: IBM-R;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.64);
  margin-top: 24px;
}

.thoub-login-credentials .email-verification-contents .send-to-email .email {
    font-family: IBM-B;
  font-weight: 700;
  color: #000000;
  margin-top: 16px;
}

.thoub-login-credentials .email-verification-contents .link-expire {
  font-family: IBM-R;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.64);
  margin-top: 24px;
}

.thoub-login-credentials .email-verification-contents .back-to-login {
  background: #F97316;
  color: #ffffff;
  border-radius: 12px;
  padding: 14px 24px;
    font-family: IBM-B;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  transition: .3s;
  margin-top: 24px;
}

.thoub-login-credentials .email-verification-contents .back-to-login:hover {
  background: #000000;
}

/***********   Thoub Login Ends   ************/

/***********   Thoub Welcome Starts   ************/

.login-navbar {
  padding: 16px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 99;
}

.login-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.login-body {
  padding-top: 55px;
  position: relative;
}

.login-body .back-button {
  font-family: IBM-B;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0.5600000023841858px;
  color: rgba(71, 84, 103, 1);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border: 2px solid rgba(235, 235, 235, 1);
  box-shadow: 0px 2px 12px 0px rgba(82, 88, 102, 0.08);
  padding: 15.5px 17.18px;
  border-radius: 8px;
}

.login-body .back-button:hover {
  background: #EBEBEB;
}

.thoub-welcome .container {
  max-width: 1082px;
}

.thoub-welcome .navbar-logo img {
  width: 60px;
}

.welcome-head {
  text-align: center;
  margin-top: 4px;
}

.welcome-head h2 {
    font-family: IBM-B;
  font-weight: 700;
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: clamp(36px, 4.5vw, 52.8px);
  letter-spacing: -1.440000057220459px;
  color: rgba(17, 17, 17, 1);
}

.welcome-head .star-icon img {
  margin: 0 auto;
}

.welcome-head p {
  font-family: IBM-R;
  font-size: 19px;
  font-weight: 400;
  line-height: 28.5px;
  color: rgba(17, 17, 17, 1);
  opacity: .7;
  max-width: 616px;
  margin: 0 auto;
  direction: rtl;
}

.welcome-body {
  margin: 49px 0 114px;
}

.welcome-sliders {
  display: flex;
  gap: 18.64px;
  max-width: 575px;
  height: 708px;
  margin: 0 auto;
  overflow: hidden;
  padding: 3px 0px 1px;
  position: relative;
  justify-content: center;
}

.welcome-sliders::before {
  content: "";
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  height: 61px;
  width: 100%;
  position: absolute;
  top: 0px;
  z-index: 1;
}

.welcome-sliders::after {
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  height: 61px;
  width: 100%;
  position: absolute;
  bottom: 0px;
  z-index: 1;
}

.welcome-slider {
  display: flex;
  flex-direction: column;
  gap: 18.64px;
}

.welcome-slider.animation {
  animation: welcome-slider-animate 20s linear infinite;
}

@keyframes welcome-slider-animate {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.welcome-slider.reverse-animation {
  animation: welcome-slider-reverse-animate 20s linear infinite;
}

@keyframes welcome-slider-reverse-animate {
  0% {
    transform: translateY(0%);
  }

  100% {
    transform: translateY(-100%);
  }
}

.welcome-slider .slide {
  width: 100%;
  height: 223.64px;
}

.welcome-slider .slide img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.login-footer {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px -4px 20px 0px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
  opacity: 0.9;
  padding: 15px 0 16px;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.login-footer .privacy-policy {
  font-family: IBM-M;
  font-size: 12px;
  font-weight: 500;
  line-height: 22px;
  color: rgba(71, 84, 103, 1);
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.login-footer .privacy-policy span {
  color: #e90b0b;
  font-family: IBM-SB;
}

.login-footer .privacy-policy a {
  color: rgba(71, 84, 103, 1);
  text-decoration: underline;
}

.login-footer .privacy-policy a:hover {
  color: #f97316;
}

.login-footer .privacy-policy input {
  width: 15px;
  height: 15px;
  border: 1px solid rgba(71, 84, 103, 1);
  border-radius: 2px;
}

.login-footer .submit-btn {
  text-align: center;
}

.login-footer .submit-btn button {
  background: linear-gradient(97.28deg, #FF534B 0%, #F9B92D 100%);
  border-radius: 1000px;
  padding: 14px 24px;
  font-family: IBM-B;
  font-size: 17px;
  font-weight: 700;
  line-height: 17px;
  color: rgba(255, 255, 255, 1);
  transition: background 0.3s ease-in-out;
  width: 199px;
}

.login-footer .submit-btn button:hover {
  background: linear-gradient(97.28deg, #F9B92D 0%, #FF534B 100%);
}

.whatsapp-chat {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: 0px 2px 32px 0px rgba(0, 0, 0, 0.16), 0px 1px 6px 0px rgba(0, 0, 0, 0.06);
}

.whatsapp-chat img {
  width: 100%;
  height: 100%;
}


/***********   Thoub Welcome Ends   ************/

/***********   Thoub Upload Starts   ************/

.thoub-upload .container {
  max-width: 1174px;
}

.thoub-upload .navbar-logo img {
  width: 60px;
}

.upload-body {
  margin: 29px 0 220px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.upload-body .upload-sec {
  width: 100%;
  max-width: 274px;
  margin: 0 auto;
}

.upload-body .upload-sec .head .avatar {
  margin-bottom: 22px;
  width: 24px;
  height: 24px;
}

.upload-body .upload-sec .head .avatar img {
  width: 100%;
  height: 100%;
}

.upload-body .upload-sec .head {
  padding-left: 2px;
  max-width: 300px;
}

.upload-body .upload-sec .head h2 {
  font-family: IBM-B;
  font-size: 16px;
  font-weight: 700;
  line-height: 17.6px;
  color: rgba(17, 17, 17, 1);
  margin-bottom: 7px;
}

.upload-body .upload-sec .head p {
  font-family: IBM-R;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(17, 17, 17, 1);
  direction: rtl;
  text-align: left;
}

.upload-body .file-upload {
  margin-top: 30px;
  padding: 17px 4px 20px;
  border: 2px dashed rgba(194, 195, 201, 1);
  border-radius: 12px;
}

.upload-body .file-upload button {
  background: rgba(249, 115, 22, 1);
  padding: 12.5px 21px 12.5px 28px;
  border-radius: 1000px;
  font-family: IBM-B;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}

.upload-body .file-upload button:hover {
  background: linear-gradient(97.28deg, #FF534B 0%, #F9B92D 100%);
}


.upload-body .file-upload button .icon {
  width: 16px;
  height: 16px;
}

.upload-body .file-upload button .icon img {
  width: 100%;
  height: 100%;
}

.upload-body .file-upload button .icon .loader {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #ffffff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: delete_spin 2s linear infinite;
  display: none;
}

@keyframes delete_spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.upload-body .file-upload-notes {
  font-family: IBM-R;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  color: rgba(17, 17, 17, 1);
  margin-top: 20px;
}

.upload-body .dowloading-notes {
  margin-top: 8px;
  padding-left: 12px;
  font-family: IBM-R;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -0.6000000238418579px;
  color: rgba(17, 17, 17, 1);
}

.upload-body .file-uploading {
  margin-top: 27px;
  padding: 4px 8px;
  border: 1px solid rgba(194, 195, 201, 1);
  border-radius: 6px;
}

.upload-body .file-uploading .contents {
  display: flex;
  align-items: center;
  gap: 7px;
}

.upload-body .file-uploading .uploading-img {
  flex: 0 0 21px;
  height: 26px;
  border-radius: 1.5px;
}

.upload-body .file-uploading .uploading-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5px;
}

.upload-body .file-uploading .file-name {
  font-family: IBM-R;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -0.6000000238418579px;
  color: rgba(17, 17, 17, 1);
  word-break: break-word;
}

.upload-body .file-uploading .progress-level {
  flex: 0 0 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid #FF784B;
  border-top: 3px solid #ffffff;
  margin-left: auto;
  animation: upload_progress 2s linear infinite;
}

@keyframes upload_progress {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.upload-body .uploaded-sec {
  width: 100%;
  border-left: 2px solid rgba(17, 17, 17, 0.1);
  padding-left: 28px;
}

.uploaded-accordion {
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: auto;
  height: 100%;
  scrollbar-width: none;
}

.uploaded-accordion .accordion-item {
  background: rgba(17, 17, 17, 0.05);
  border-radius: 12px;
  padding: 25px 30px 25px 20px;
}

.uploaded-accordion .accordion-item.uploaded .accordion-panel {
  padding-bottom: 25px;
}

.uploaded-accordion .accordion-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
}

.uploaded-accordion .accordion-title {
  font-family: IBM-B;
  font-size: 16px;
  font-weight: 700;
  line-height: 17.6px;
  color: rgba(17, 17, 17, 1);
  display: flex;
  align-items: center;
  gap: 7px;
}

.uploaded-accordion .accordion-tab.active .accordion-toggle-icon {
  transform: rotate(180deg);
}

.uploaded-accordion .accordion-panel {
  padding-top: 25px;
}

.uploaded-accordion .gallery-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 25px;
  row-gap: 35px;
}

.uploaded-accordion .gallery-card .card-img {
  aspect-ratio: 4 / 5;
  background-color: #fff;
  border-radius: 12px;
  position: relative;
}

.uploaded-accordion .gallery-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}


.uploaded-accordion .gallery-card .card-img .delete-photo {
  position: absolute;
  top: -15px;
  right: -15px;
}

.uploaded-accordion .gallery-card .card-img .delete-photo .icon {
  background-color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  border: 1px solid #111111;
  display: flex;
  justify-content: center;
  align-items: center;
}

.uploaded-accordion .gallery-card .card-img .delete-photo .icon svg {
  cursor: pointer;
}

.uploaded-accordion .gallery-card .card-img .delete-photo .icon:hover svg path {
  fill: #f97315;
}

.uploaded-accordion .gallery-card .card-img .delete-photo .loader {
  border: 2px solid #f3f3f3;
  border-top: 2px solid #555555;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  animation: delete_spin 2s linear infinite;
  display: none;
}

@keyframes delete_spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.uploaded-accordion .gallery-card .card-contents {
  font-family: IBM-R;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(17, 17, 17, 1);
  margin-top: 12px;
  direction: rtl;
}

.uploaded-accordion .accordion-item.requirements {
  background: rgba(39, 174, 96, .2);
}

.uploaded-accordion .accordion-item.requirements .accordion-title {
  color: rgba(129, 188, 6, 1);
}

.uploaded-accordion .accordion-item.restrictions {
  background: rgba(229, 67, 53, .2);
}

.uploaded-accordion .accordion-item.restrictions .accordion-title {
  color: rgba(229, 67, 53, 1);
}


/***********   Thoub Upload Ends   ************/

/***********   Thoub Payment Starts   ************/

.thoub-payment {
  padding: calc(max(7.8125vw, 58px)) calc(max(2.1354vw, 15px)) 250px;
  display: flex;
  justify-content: center;
  gap: calc(max(2.8125vw, 30px));
  position: relative;
  min-height: 100vh;
}

.thoub-payment .close-btn {
  position: absolute;
  top: 26px;
  right: 30px;
  width: 24px;
}

.thoub-payment .pricing {
  width: 100%;
  max-width: 1151px;
  border-right: 1px solid rgba(17, 17, 17, 0.1);
  padding: 0px 34px 0px 2px;
}

.thoub-payment .pricing .head .title {
    font-family: IBM-B;
  font-weight: 700;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: clamp(30.8px, 4.5vw, 52.8px);
  letter-spacing: -1.440000057220459px;
  color: rgba(17, 17, 17, 1);
}

.thoub-payment .pricing .head .select-package {
  font-family: IBM-B;
  font-size: 16px;
  font-weight: 700;
  line-height: 17.6px;
  color: rgba(17, 17, 17, 1);
  margin-top: 27px;
}

.thoub-payment .pricing .head .offer {
  font-family: IBM-R;
  font-size: 19px;
  font-weight: 400;
  line-height: 28.5px;
  color: rgba(17, 17, 17, 1);
  margin-top: 7px;
}

.thoub-payment .pricing .head .money-back {
  display: flex;
  gap: 4px;
  margin-top: 7px;
}

.thoub-payment .pricing .head .money-back span {
  font-family: IBM-R;
  font-size: 19px;
  font-weight: 400;
  line-height: 28.5px;
  background: linear-gradient(103deg, #4067EF 0%, #1AA4EE 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  direction: rtl;
  text-align: left;
  opacity: .7;
}

.thoub-payment .plans {
  margin-top: 33px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 2.1548%;
  row-gap: 48px;
}

.thoub-payment .plans .plan {
  width: 31.8968%;
  max-width: 400px;
  border: 1px solid #11111114;
  border-radius: 22px;
  padding: calc(max(2.5vw, 18px)) calc(max(2.5vw, 18px)) calc(max(1.3021vw, 18px));
  position: relative;
  transition: .5s ease;
}

.thoub-payment .plans .plan:hover {
  transform: scale(1.018);
  border: 1px solid transparent;
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(90.61deg, #FF784B 0%, #F9A12D 50%, #FF784B 100%) border-box;
}

.thoub-payment .plan .plan-highlight {
  background-color: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 9999px;
  padding: 5px 17px;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.thoub-payment .plan .plan-highlight>div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.thoub-payment .plan .plan-highlight span {
    font-family: IBM-B;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
  background: linear-gradient(90.61deg, #FF784B 0%, #F9A12D 50%, #FF784B 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.thoub-payment .plan.premium .plan-highlight span {
  background: linear-gradient(103deg, #4067EF 0%, #1AA4EE 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.thoub-payment .plan .plan-name {
    font-family: IBM-B;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.6399999856948853px;
  color: #11111180;
  text-align: center;
}

.thoub-payment .plan .plan-price {
  text-align: center;
  margin-top: 15px;
}

.thoub-payment .plan .plan-price .actual {
  font-family: IBM-B;
  font-size: 32px;
  line-height: 39px;
  letter-spacing: -0.800000011920929px;
  color: rgb(17, 17, 17);
  text-decoration: line-through;
  opacity: .2;
}

.thoub-payment .plan .plan-price .current {
  font-family: IBM-B;
  font-size: clamp(40px, 5.5vw, 40px);
  line-height: clamp(60px, 5.5vw, 60px);
  letter-spacing: -4px;
  color: #111111;
  margin-top: -7px;
}

.thoub-payment .plan.basic .plan-price .current {
  background: linear-gradient(90.61deg, #FF784B 0%, #F9A12D 50%, #FF784B 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.thoub-payment .plan .plan-includes ul {
  margin-top: 36px;
}

.thoub-payment .plan .plan-includes ul li {
  font-family: IBM-R;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #111111B2;
  margin-bottom: 12px;
  display: flex;
  gap: 5px;
}

.thoub-payment .plan .plan-includes ul li .icon {
  flex: 0 0 22px;
}

.thoub-payment .plan .plan-includes ul li:last-child {
  margin-bottom: 0;
}

.thoub-payment .testimonial {
  width: 27.666%;
  max-width: 509px;
  padding-top: 2.721%;
}

.thoub-payment .testimonial-head {
  text-align: center;
  max-width: 448px;
  margin: 0 auto;
}

.thoub-payment .testimonial-head h2 {
  font-family: IBM-B;
  font-size: 30px;
  line-height: 36px;
  background: linear-gradient(90.84deg, #FF784B 0%, #F9A12D 50%, #FF784B 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.thoub-payment .testimonial-head p {
  font-family: IBM-M;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: rgba(9, 9, 11, 1);
}

.thoub-payment .testimonial-gallery {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.thoub-payment .gallery-image {
  aspect-ratio: 2048 / 2560;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.thoub-payment .gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.thoub-payment .testimonial-rating-star {
  margin-top: 1px;
  display: none;
}

.thoub-payment .testimonial-rating-star img {
  margin: 0 auto;
}

.thoub-payment .testimonial-slider {
  text-align: center;
  max-width: 448px;
  margin: 38px auto 0;
}

.thoub-payment .testimonial-slider .quote-icon img {
  margin: 0 auto;
}

.thoub-payment .testimonial-slider .slider {
  margin-top: 12px;
}

.thoub-payment .testimonial-slider .slider .quote {
  font-family: IBM-R;
  font-size: 26px;
  font-weight: 400;
  line-height: 32px;
  color: rgba(23, 23, 26, 1);
  margin-bottom: 16px;
  direction: rtl;
}

.thoub-payment .testimonial-slider .slider .author {
  font-family: IBM-R;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(23, 23, 26, 1);
}

/***********   Thoub Payment Ends   ************/

/***********   Thoub Payment Starts   ************/

.thoub-dashboard {
  height: 100vh;
  overflow: hidden;
  display: flex;
  direction: rtl;
}

.thoub-dashboard .dashboard-sidebar {
  width: 100%;
  max-width: 400px;
}

.dashboard-sidebar .navbar .container {
  max-width: 100%;
  width: 100%;
  flex-direction: column;
}

.thoub-dashboard .navbar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 23px 24px 19px;
  border-bottom: 1px solid #1111111A;
  position: sticky;
  top: 0;
  background-color: #ffffff;
}

.thoub-dashboard .navbar-header .navbar-logo img {
  width: 60px;
}

.thoub-dashboard .navbar .navbar-collapse {
  width: 100%;
  padding-top: 10px;
  height: calc(100vh - 62px);
  overflow: auto;
  scrollbar-width: none;
  align-items: normal;
}

.thoub-dashboard .navbar .navbar-collapse>div {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.dashboard-sidebar .navbar .navbar-nav {
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.dashboard-sidebar .navbar .navbar-nav .nav-link {
  background: transparent;
  border-radius: 4px;
  font-family: IBM-M;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  color: #111111;
  padding: 7.5px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.dashboard-sidebar .navbar .navbar-nav .nav-link:hover {
  background: #FF794033;
}

.dashboard-sidebar .navbar .navbar-nav .dropdown-toggle {
  font-family: IBM-M;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  text-transform: uppercase;
  color: #475467;
  padding: 0 22px;
  background: transparent !important;
  display: flex;
  align-items: center;
  gap: 7px;
}

.dashboard-sidebar .navbar .navbar-nav .dropdown-menu {
  position: static;
  padding: 0;
  border: none;
  margin: 14px 0 0;
}

.dashboard-sidebar .navbar .navbar-nav .dropdown-menu .dropdown-item {
  background: transparent;
  border-radius: 4px;
  font-family: IBM-M;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  color: #111111;
  padding: 7.5px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.dashboard-sidebar .navbar .navbar-nav .dropdown-menu .dropdown-item:hover {
  background: #FF794033;
}

.dashboard-sidebar .navbar .navbar-nav .dropdown-menu .dropdown-item .icon img {
  filter: brightness(0) invert(0);
}

.dashboard-sidebar .navbar .navbar-nav .dropdown-menu .dropdown-item:hover .icon img {
  filter: none;
}

.dashboard-sidebar .navbar .navbar-nav .dropdown-menu .dropdown-item.logout:hover {
  color: #fb0000;
}

.dashboard-sidebar .navbar .navbar-nav .dropdown-menu .dropdown-item.logout:hover .icon img {
  filter: sepia(1) saturate(10000%) hue-rotate(0deg) brightness(1);
}

.dashboard-sidebar .navbar .navbar-nav .dropdown-menu li {
  margin-bottom: 9px;
  padding: 0 24px 0 23px;
  border-left: 2px solid #ffffff;
}

.dashboard-sidebar .navbar .navbar-nav .dropdown-menu li:last-child {
  margin-bottom: 0;
}

.dashboard-sidebar .navbar .navbar-nav .dropdown-menu li.active {
  border-left: 2px solid #FF784B;
}

.dashboard-sidebar .navbar .navbar-nav .dropdown-menu li.active .dropdown-item {
  background: #FF794033;
}

.dashboard-sidebar .navbar .navbar-nav .dropdown-menu li.active .dropdown-item .icon img {
  filter: none;
}

.dashboard-sidebar .navbar .navbar-nav .nav-item {
  padding: 0 24px;
}

.dashboard-sidebar .navbar .navbar-nav .nav-item.active {
  border-left: 2px solid #FF784B;
}

.dashboard-sidebar .navbar .navbar-nav .nav-item.active .nav-link {
  background: #FF794033;
}

.dashboard-sidebar .navbar {
  padding: 0;
  flex-direction: column;
}

.dashboard-sidebar .navbar .dropdown-toggle::after {
  display: none;
}

.thoub-dashboard .dashboard-panel {
  width: 100%;
  overflow: auto;
  scrollbar-width: none;
  /* padding: 62px 70px 62px 57px; */
  padding: 3.2292vw 3.6458vw 3.2292vw 2.9688vw;
  border-right: 1px solid #1111111A;
}

.thoub-dashboard .dashboard-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.thoub-dashboard .dashboard-panel-header .title h1 {
  font-family: IBM-SB;
  font-size: 24px;
  line-height: 36px;
  color: #000000;
}

.thoub-dashboard .dashboard-panel-header .title p {
  font-family: IBM-M;
  font-size: 14px;
  line-height: 22.4px;
  color: #475467;
  margin-top: 3px;
  direction: ltr;
}

.thoub-dashboard .dashboard-panel-header .create-btn a {
  background: linear-gradient(97.28deg, #FF534B 0%, #F9B92D 100%);
  padding: 14px 24px;
  border-radius: 1000px;
  font-family: IBM-B;
  font-size: 17px;
  font-weight: 700;
  line-height: 17px;
  letter-spacing: .0223px;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  transition: 0.3s ease;
}

.thoub-dashboard .dashboard-panel-header .create-btn a:hover {
  background: linear-gradient(97.28deg, #F9B92D 0%, #FF534B 100%);
}

.thoub-dashboard .dashboard-panel-header .create-btn a svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

.dashboard-sidebar .navbar .menu-fixed {
  margin-top: 42px;
  background-color: #ffffff;
  position: sticky;
  bottom: 0;
}

.dashboard-sidebar .navbar .navbar-nav.profile {
  display: block;
}

.dashboard-sidebar .navbar .navbar-nav.profile .profile-picture {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #34A353;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-sidebar .navbar .navbar-nav.profile .profile-picture span {
  font-family: IBM-B;
  font-size: 16px;
  line-height: 18px;
  color: #FFFFFF;
}

.dashboard-sidebar .navbar .navbar-nav.profile .dropdown-toggle {
  font-family: IBM-M;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  text-transform: lowercase;
  color: #111111;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #1111111A;
  border-bottom: 1px solid #1111111A;
  border-radius: 0;
  padding: 14px 8px 17px;
}

.dashboard-sidebar .navbar .navbar-nav.profile .dropdown-icon {
  transform: rotate(90deg);
  margin-left: auto;
  flex: 0 0 12px;
}

.dashboard-sidebar .navbar .navbar-nav.profile .dropdown-menu {
  position: absolute;
  padding: 10px;
  margin: 10px 0 0;
  border: none;
  width: 100%;
  /* max-width: 322px; */
  box-shadow: 0px 2px 12px 0px #52586614;
}

.dashboard-sidebar .navbar .navbar-nav.profile .dropdown-menu li {
  margin-bottom: 9px;
  padding: 0;
}

.dashboard-sidebar .navbar .navbar-nav.profile .dropdown-menu li:last-child {
  margin-bottom: 0;
}

.thoub-dashboard .dashboard-panel-body .welcoming {
  text-align: center;
  margin-top: 16.0417vh;
}

.thoub-dashboard .dashboard-panel-body .welcoming h2 {
  font-family: IBM-SB;
  font-size: 24px;
  line-height: 36px;
  color: #000000;
  margin-top: 6px;
}

.thoub-dashboard .dashboard-panel-body .welcoming p {
  font-family: IBM-M;
  font-size: 16px;
  line-height: 22.4px;
  color: #475467;
  margin-top: 6px;
}

.thoub-dashboard .dashboard-panel-body .welcoming .create-btn a {
  background: #F97316;
  padding: 17.5px 24px;
  border-radius: 12px;
  font-family: IBM-B;
  font-size: 17px;
  font-weight: 700;
  line-height: 17px;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
}

.thoub-dashboard .dashboard-panel-body .welcoming .create-btn a:hover {
  background: #000000;
}

.thoub-dashboard .dashboard-panel-body .welcoming .create-btn a svg {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}

.thoub-dashboard .dashboard-panel-body .albums {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
}

.thoub-dashboard .dashboard-panel-body .albums .album {
  background-color: #ffffff;
  padding: 12px 12px 9px;
  border: 2px solid #EBEBEB;
  border-radius: 12px;
  box-shadow: 0px 11px 8.9px 0px #C1C1C126;
}

.thoub-dashboard .dashboard-panel-body .albums .album-deatils {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.thoub-dashboard .dashboard-panel-body .albums .album-deatils>div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2px;
  font-family: IBM-M;
  font-size: 12px;
  line-height: 18px;
  color: #111111;
}

.thoub-dashboard .dashboard-panel-body .albums .album-deatils>div .icon {
  display: flex;
  width: 16px;
  height: 16px;
}

.thoub-dashboard .dashboard-panel-body .albums .album-deatils>div .icon img {
  width: 100%;
  height: 100%;
}

.thoub-dashboard .dashboard-panel-body .albums .album-grid {
  display: grid;
  grid-template-columns: 44.8819% 23.0315% 23.0315%;
  grid-column-gap: 4.5276%;
  grid-row-gap: 3.1496%;
  position: relative;
}
.thoub-dashboard .dashboard-panel-body .albums .album-grid .album-loader {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
}


.thoub-dashboard .dashboard-panel-body .albums .album-grid .loader-contents {
  bottom: 40%;
}

.thoub-dashboard .dashboard-panel-body .albums .feat-img {
  width: 100%;
  position: relative;
}

.thoub-dashboard .dashboard-panel-body .albums .feat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.album-grid .feat-img:nth-child(1) {
  grid-row: span 2 / span 1;
  height: 158px;
}

.album-grid .feat-img:nth-child(2),
.album-grid .feat-img:nth-child(3) {
  height: 70px;
}

.album-grid .feat-img:nth-child(4) {
  grid-column: span 2 / span 1;
  height: 80px;
}

.thoub-dashboard .dashboard-panel-body .albums .new-album {
  background: #F97316;
  border-radius: 4px;
  padding: 1px 7px 2px;
  font-family: IBM-B;
  font-size: 12px;
  font-weight: 700;
  line-height: 17px;
  color: #FFFFFF;
  position: absolute;
  top: 5px;
  left: 5px;
}

.thoub-dashboard .dashboard-panel-body .albums .album-loader {
  height: 158px;
  position: relative;
}

.thoub-dashboard .dashboard-panel-body .albums .loader-background {
  width: 100%;
  height: 100%;
}

.thoub-dashboard .dashboard-panel-body .albums .loader-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.thoub-dashboard .dashboard-panel-body .albums .loader-contents {
  max-width: 215px;
  margin: 0 auto;
  position: absolute;
  width: 100%;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 10px;
}

.thoub-dashboard .dashboard-panel-body .albums .loader-message {
  font-family: IBM-B;
  font-size: 16px;
  line-height: 21px;
  color: #ffffff;
  margin-top: 19px;
  text-align: center;
}

.thoub-dashboard .dashboard-panel-body .albums .loader-bar {
  width: 100%;
  height: 22px;
  border-radius: 100px;
  background: #EBEBEB80;
  margin: 0 4.5px;
  margin: 0 auto;
}

.thoub-dashboard .dashboard-panel-body .albums .loader-mouse {
  width: 0%;
  height: 100%;
  background: linear-gradient(90.61deg, #FF784B 0%, #F9A12D 50%, #FF784B 100%);
  border-radius: 100px;
  animation: load 3s linear infinite;
}

@keyframes load {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}


.thoub-upload .upload-modal {
  background-color: rgba(0, 0, 0, .5);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  display: none;
}

.thoub-upload .upload-modal-dialog {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.thoub-upload .upload-modal-contents {
  background: #fff;
  border-radius: 20px;
  max-width: 85%;
  width: 720px;
  max-height: 75vh;
  overflow-y: scroll;
  scrollbar-width: none;
  padding: 30px 20px;
  position: relative;
}

.thoub-upload .upload-modal .close-modal {
  width: 32px;
  height: 32px;
  background: #d9d9d9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 15px;
}

.thoub-upload .upload-modal-body {
  text-align: center;
  max-width: 550px;
  margin: 0 auto;
}

.thoub-upload .upload-modal-body h2 {
  font-family: IBM-B;
  font-size: 24px;
  line-height: 32px;
}

.thoub-upload .upload-modal-body p {
  font-family: IBM-M;
  font-size: 16px;
  line-height: 24px;
  margin-top: 16px;
  direction: rtl;
}

.thoub-upload .upload-modal-body p span.red {
  color: #ff0000;
}

.thoub-upload .upload-modal-body p span.green {
  color: #008000;
}

.thoub-upload .upload-modal-body .submit-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.thoub-upload .upload-modal-body .submit-btns button {
  background: #F97316;
  color: #ffffff;
  border-radius: 12px;
  padding: 14px 24px;
  font-family: IBM-M;
  font-size: 16px;
  line-height: 18px;
  transition: .3s;
}

.thoub-upload .upload-modal-body .submit-btns button:hover {
  background: #000000;
}

.thoub-upload .upload-modal-body .submit-btns button.black {
  background: #000000;
}

.thoub-upload .upload-modal-body .submit-btns button.black:hover {
  background: #F97316;
}

.thoub-dashboard .dashboard-panel-body .account-settings {
  max-width: 800px;
  margin: 16px 0 56px;
}

.thoub-dashboard .dashboard-panel-body .profile-information {
  padding: 16px 32px;
  border: 1px solid #cacfd8;
  border-radius: 8px;
}

.thoub-dashboard .dashboard-panel-body .profile-information .title h3 {
  font-family: IBM-SB;
  font-size: 20px;
  line-height: 28px;
  color: #000000;
}

.thoub-dashboard .dashboard-panel-body .profile-information .form {
  padding: 16px 0;
}

.thoub-dashboard .dashboard-panel-body .profile-information .form .form-field {
  max-width: 420px;
}

.thoub-dashboard .dashboard-panel-body .profile-information .form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.thoub-dashboard .dashboard-panel-body .profile-information .form .form-field-submit {
  text-align: end;
}

.form .form-field label {
  width: 100%;
  font-family: IBM-M;
  font-size: 13px;
  line-height: 21px;
  color: #000000;
  margin-bottom: 8px;
}

.form .form-field input {
  width: 100%;
  background: rgba(38, 55, 122, 0.06);
  border: 1px solid rgba(38, 55, 122, 0.06);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: IBM-M;
  font-size: 13px;
  line-height: 21px;
  color: #000000;
}

.form .form-field input:focus {
  border: 1px solid #F97316;
}

.form .form-field-submit button {
  background: #F97316;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: IBM-M;
  font-size: 13px;
  line-height: 21px;
  color: #ffffff;
}

.form .form-field-submit button:disabled {
  opacity: .6;
}

.thoub-legal {
  padding: 64px 0 96px;
}

.thoub-legal .container {
  max-width: 960px;
}

.thoub-legal .legal-contents {
  font-family: IBM-R;
  font-size: 14px;
  line-height: 24px;
  color: #111111;
}

.thoub-legal .legal-contents h1 {
  text-align: center;
  font-family: IBM-B;
  font-size: 32px;
  line-height: 38px;
  color: #111111;
  margin-bottom: 48px;
}

.thoub-legal .legal-contents h3 {
  font-family: IBM-B;
  font-size: 22px;
  line-height: 28px;
  color: #111111;
  margin: 28px 0 14px;
}

.thoub-legal .legal-contents p {
  margin: 16px 0;
}

.thoub-legal .legal-contents p a {
  color: #F97316;
}

.thoub-legal .legal-contents p a:hover {
  text-decoration: underline;
}

.thoub-legal .legal-contents ul {
  list-style: disc;
  padding-left: 32px;
}

.thoub-legal .legal-contents ol {
  margin: 20px 0;
  padding-left: 16px;
  counter-reset: item;
  list-style: none;
}

.thoub-legal .legal-contents ol li {
  margin-top: 32px;
  display: block;
  padding-left: 32px;
  text-indent: -32px;
}

.thoub-legal .legal-contents ol li:first-child {
  margin-top: 8px;
}

.thoub-legal .legal-contents ol li:before {
  content: counters(item, ".") ". ";
  counter-increment: item;
  margin-right: .5rem;
}

.thoub-legal .legal-contents ol ol {
  counter-reset: item;
}

.thoub-legal .legal-contents table {
  width: 100%;
  table-layout: fixed;
  margin-top: 48px;
  margin-bottom: 48px;
}

.thoub-legal .legal-contents table td, .thoub-legal .legal-contents table th {
  border: 1px solid #000;
  padding: 8px;
}

.thoub-legal .legal-contents table thead th {
  background-color: #eee;
}

.thoub-legal .legal-contents table td ul {
  padding-left: 16px;
}
.thoub-payment .plans .plan.active {
  transform: scale(1.018);
  border: 1px solid transparent;
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(90.61deg, #FF784B 0%, #F9A12D 50%, #FF784B 100%) border-box;
}
.profile-picture  {
  text-transform: capitalize !important;
}
.refund-policy,.privacy-policy.shake {
  animation: shake .5s;
  animation-iteration-count: infinite;
}
@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}

.show-error {
  color: red;
  font-size: 0.9rem;
  display: block;
}
.invalid-feedback {
  margin-top: -10px;
  margin-left: 10px;
}
.thoub-login-credentials-body .email-verification-form input.show-error {
  border: 1px solid red;
}


.thoub-dashboard .dashboard-panel-header .options {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 12px;
}


.thoub-dashboard .dashboard-panel-header .options .option {
  font-family: IBM-M;
  font-size: 14px;
  line-height: 22.4px;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.thoub-dashboard .dashboard-panel-header .options .option:hover {
  color: #F97316;
}

.thoub-dashboard .dashboard-panel-header .options .option:hover svg {
  stroke: #F97316;
}

.thoub-dashboard .dashboard-panel .back-button {
  font-family: IBM-B;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0.5600000023841858px;
  color: rgba(71, 84, 103, 1);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border: 2px solid rgba(235, 235, 235, 1);
  box-shadow: 0px 2px 12px 0px rgba(82, 88, 102, 0.08);
  padding: 15.5px 17.18px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.thoub-dashboard .dashboard-panel .back-button:hover {
  background: #EBEBEB;
}

.thoub-dashboard .dashboard-panel-body .photos {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
}

.thoub-dashboard .dashboard-panel-body .photos .photo {
  aspect-ratio: 4 / 5;
}

.thoub-dashboard .dashboard-panel-body .photos .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.fancybox-caption {
  display: none;
}

.download-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:rgb(0, 0, 0, .4);
  z-index: 999;
}

.download-loader .element {
  width: 60px;
  height: 60px;
  background: #F97316;
  position: absolute;
  left: 50%;
  margin-left: -25px;
  top: 50%;
  margin-top: -25px;
}

@-webkit-keyframes translateIn {
  30% {
    -webkit-transform: rotateX(60deg) rotateY(0deg) rotateZ(45deg) translateZ(20px) scale(0.95);
    opacity: 0.75;
  }
  100% {
    -webkit-transform: rotateX(65deg) rotateY(0deg) rotateZ(45deg) translateZ(0px) scale(0.85);
    opacity: 0;
  }
}

@keyframes translateIn {
  30% {
    -webkit-transform: rotateX(60deg) rotateY(0deg) rotateZ(45deg) translateZ(20px) scale(0.95);
    transform: rotateX(60deg) rotateY(0deg) rotateZ(45deg) translateZ(20px) scale(0.95);
    opacity: 0.75;
  }
  100% {
    -webkit-transform: rotateX(65deg) rotateY(0deg) rotateZ(45deg) translateZ(0px) scale(0.85);
    transform: rotateX(65deg) rotateY(0deg) rotateZ(45deg) translateZ(0px) scale(0.85);
    opacity: 0;
  }
}

.download-loader .element {
  opacity: 0;
  &:nth-of-type(1) {
    -webkit-transform: rotateX(70deg) rotateY(0deg) rotateZ(45deg) translateZ(30px);
    transform: rotateX(70deg) rotateY(0deg) rotateZ(45deg) translateZ(30px);
    -webkit-animation: translateIn 1.5s ease-in infinite 500ms;
    animation: translateIn 1.5s ease-in infinite 500ms;
  }
  &:nth-of-type(2) {
    -webkit-transform: rotateX(70deg) rotateY(0deg) rotateZ(45deg) translateZ(60px);
    transform: rotateX(70deg) rotateY(0deg) rotateZ(45deg) translateZ(60px);
    -webkit-animation: translateIn 1.5s ease-in infinite 700ms;
    animation: translateIn 1.5s ease-in infinite 700ms;
  }
  &:nth-of-type(3) {
    -webkit-transform: rotateX(70deg) rotateY(0deg) rotateZ(45deg) translateZ(90px);
    transform: rotateX(70deg) rotateY(0deg) rotateZ(45deg) translateZ(90px);
    -webkit-animation: translateIn 1.5s ease-in infinite 800ms;
    animation: translateIn 1.5s ease-in infinite 800ms;
  }
}

@-webkit-keyframes scaleIn {
  80% {
    -webkit-transform: rotateX(65deg) rotateY(0deg) rotateZ(45deg) scale(1.25);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: rotateX(65deg) rotateY(0deg) rotateZ(45deg) scale(1);
    opacity: 0;
  }
}

@keyframes scaleIn {
  80% {
    -webkit-transform: rotateX(65deg) rotateY(0deg) rotateZ(45deg) scale(1.25);
    transform: rotateX(65deg) rotateY(0deg) rotateZ(45deg) scale(1.25);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: rotateX(65deg) rotateY(0deg) rotateZ(45deg) scale(1);
    transform: rotateX(65deg) rotateY(0deg) rotateZ(45deg) scale(1);
    opacity: 0;
  }
}

.download-loader .large-square {
  width: 80px;
  height: 80px;
  background: #F97316;
  position: absolute;
  left: 50%;
  margin-left: -35px;
  top: 50%;
  margin-top: -35px;
  -webkit-transform: rotateX(60deg) rotateY(0deg) rotateZ(45deg)scale(0);
  transform: rotateX(60deg) rotateY(0deg) rotateZ(45deg) scale(0);
  opacity: 0;
  -webkit-animation: scaleIn 3s linear infinite 500ms;
  animation: scaleIn 3s linear infinite 500ms;
}


.thoub-dashboard .dashboard-panel-body  .photos .photo {
  position: relative;
}

.thoub-dashboard .dashboard-panel-body  .photos .photo-loader-outer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #d8d8d8;
  border-radius: 12px;
  display: block;
}
.thoub-dashboard .dashboard-panel-body  .photos .photo-loader-outer.loaded {
  display: none;
}

.thoub-dashboard .dashboard-panel-body  .photos .photo-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.thoub-dashboard .dashboard-panel-body  .photos .photo-loader .line {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  background-color: #F97316;
}

.thoub-dashboard .dashboard-panel-body  .photos .photo-loader .line:nth-last-child(1) {
  animation: loadingA 1.5s 1s infinite;
}
.thoub-dashboard .dashboard-panel-body  .photos .photo-loader .line:nth-last-child(2) {
  animation: loadingA 1.5s 0.5s infinite;
}
.thoub-dashboard .dashboard-panel-body  .photos .photo-loader .line:nth-last-child(3) {
  animation: loadingA 1.5s 0s infinite;
}


@keyframes loadingA {
  0% {
    height: 15px;
  }
  50% {
    height: 35px;
  }
  100% {
    height: 15px;
  }
}

.image-container {
  position: relative;
  display: block;
}

.icon-overlay {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  background: #000;
  border-radius: 0 8px;
  padding: 5px;
}

.icon-overlay svg {
  filter: invert(30);
}




.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-overlay::before {
  content: '';
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 5px solid #ccc;
  border-top-color: #333;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}