/* *************************
sohaib styling starts here
************************* */
.cookie-container {
  padding: 1rem 2rem;
  position: fixed;
  bottom: 0;
  gap: 2rem;
  z-index: 1;
  width: 100%;
}
.cookie-container .btn {
  width: 150px;
}
.cookie-container .cookie-text a {
  color: #FFF;
  text-decoration: underline;
  font-weight: bold;
}
.cookie-container.hide {
  display: none !important;
}

@media (max-width: 430px) {
  .cookie-container {
    flex-direction: column;
    gap: 0;
  }
}
.chat-button {
  border: none;
  padding: 0;
  height: 50px;
  width: 50px;
  background-color: #7B68EE;
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  border-radius: 50%;
  animation: pulse-animation-primary 2s infinite alternate;
  transition: all 0.5s ease-in;
  cursor: pointer;
  z-index: 2;
}
.chat-button svg {
  width: 30px;
}
.chat-button.hidden {
  bottom: -300rem;
}

@keyframes pulse-animation-primary {
  0% {
    box-shadow: 0 0 0 0px rgba(123, 104, 238, 0.2);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(123, 104, 238, 0.2);
  }
}
@keyframes pulse-animation-green {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 255, 4, 0.5);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 155, 4, 0);
  }
}
@keyframes pulse-animation-red {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 0, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(255, 0, 0, 0);
  }
}
.enquiry-form {
  width: 400px;
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  border: 1px solid #CCCCCC;
  border-radius: 8px;
  background: #FFF;
  z-index: 2;
  box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: all 0.3s ease-in;
}
.enquiry-form.hidden {
  right: -300rem;
}
.enquiry-form .header {
  background-color: #7B68EE;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: #FFF;
  padding: 1rem;
}
.enquiry-form .header h5 {
  font-size: 1.25rem;
  margin: 0;
}
.enquiry-form .header button {
  padding: 0;
  margin: 0;
  border: none;
  background-color: transparent;
  color: #FFF;
  cursor: pointer;
}
.enquiry-form .body {
  padding: 1rem;
}
.enquiry-form .body label {
  font-size: 0.875rem;
  color: #555555;
  font-weight: 500;
  margin-bottom: 12px;
}
.enquiry-form .body input {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  color: #777;
  border: 1px solid #DCD9EA;
  transition: all 0.3s ease-in;
  margin-bottom: 1rem;
}
.enquiry-form .body input:focus {
  border-color: #7B68EE;
  box-shadow: none;
}
.enquiry-form .body textarea {
  border: 1px solid #DCD9EA;
  border-radius: 10px;
  transition: all 0.3s ease-in;
  font-size: 0.875rem;
  color: #777;
}
.enquiry-form .body textarea:focus {
  border-color: #7B68EE;
  box-shadow: none;
}
.enquiry-form .body .success .pulse {
  width: 50px;
  height: 50px;
  background-color: rgb(14, 167, 22);
  color: #FFF;
  border-radius: 50%;
  animation: pulse-animation-green 2s infinite;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto 2rem;
}
.enquiry-form .body .success p {
  margin-bottom: 2rem;
  color: #555555;
}
.enquiry-form .body .danger .pulse {
  width: 50px;
  height: 50px;
  background-color: rgb(245, 34, 34);
  color: #FFF;
  border-radius: 50%;
  animation: pulse-animation-red 2s infinite;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto 2rem;
}
.enquiry-form .body .danger p {
  margin-bottom: 2rem;
  color: #555555;
}
.enquiry-form .footer {
  display: flex;
  justify-content: center;
  padding: 1rem;
}
.enquiry-form .footer .btn {
  width: 200px;
}

@media (max-width: 430px) {
  .chat-button {
    right: 1.5rem;
    bottom: 1.5rem;
  }
  .enquiry-form {
    right: 1.5rem;
    bottom: 1.5rem;
    width: 320px;
  }
}
.joiner-container,
.testimonial-mini-container {
  position: fixed;
  left: 3rem;
  bottom: 3rem;
  box-shadow: 0px -1px 40px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 3rem 1rem 1rem;
  border-radius: 10px;
  z-index: 1;
  background-color: #FFF;
  transition: all 1s ease-in;
}
.joiner-container.hidden,
.testimonial-mini-container.hidden {
  bottom: -500rem;
}
.joiner-container .header,
.testimonial-mini-container .header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 1rem;
}
.joiner-container .header .icon,
.testimonial-mini-container .header .icon {
  background-color: rgba(255, 127, 0, 0.25);
  border-radius: 50%;
  height: 25px;
  width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.joiner-container .header .icon i,
.testimonial-mini-container .header .icon i {
  color: #7B68EE;
}
.joiner-container .body,
.testimonial-mini-container .body {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.joiner-container .body .stars,
.testimonial-mini-container .body .stars {
  color: rgb(255, 183, 0);
}
.joiner-container .body .image,
.testimonial-mini-container .body .image {
  background-color: rgba(255, 127, 0, 0.25);
  border-radius: 10px;
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.joiner-container .body .image i,
.testimonial-mini-container .body .image i {
  color: #7B68EE;
  font-size: 60px;
}

@media (max-width: 430px) {
  .joiner-container {
    padding: 1rem;
    left: 1rem;
    bottom: 1rem;
    width: 280px;
  }
  .joiner-container .body .image {
    width: 60px;
    height: 60px;
  }
  .joiner-container .body .image i {
    font-size: 30px;
  }
}
body {
  font-size: 16px;
  line-height: 19px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #555555;
}

.circle-left {
  width: 105rem;
  height: 105rem;
  position: fixed;
  background-color: #7B68EE;
  border-radius: 50%;
  top: -85rem;
  left: -45rem;
}

.circle-right {
  width: 105rem;
  height: 105rem;
  position: fixed;
  background-color: #D93BBD;
  border-radius: 50%;
  bottom: -85rem;
  right: -45rem;
}

.yellow-text {
  color: #FFC800;
}
.yellow-text:hover {
  color: #FFC800;
}

.primary-text {
  color: #7B68EE;
}
.primary-text:hover {
  color: #7B68EE;
}

.yellow-bg {
  background-color: #FFC800;
  color: #111;
}

.primary-bg {
  background-color: #7B68EE;
  color: #FFFFFF;
}

.so-rounded {
  border-radius: 100px;
}

.so-form {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.so-form .card {
  background: #FFFFFF;
  box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  width: 36.25rem;
  padding: 3.75rem 4.0625rem;
  transition: all 0.3s ease-in;
  margin: 0;
}
.so-form .card:hover {
  cursor: pointer;
  box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.15);
}
.so-form .card .logo {
  margin: 0 auto 2.5rem;
  width: 8rem;
}
.so-form .card h1 {
  margin-bottom: 0.625rem;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: #111;
}
.so-form .card .actionForm {
  margin: 2.25rem 0 1rem 0;
}
.so-form .card .actionForm label {
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
  font-style: normal;
}
.so-form .card .actionForm .form-control {
  border-radius: 10px;
  border: 1px solid #DCD9EA;
  height: 50px;
  padding: 17px 25px;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease-in;
}
.so-form .card .actionForm .form-control:focus {
  border-color: #7B68EE;
  box-shadow: none;
}
.so-form .card .actionForm select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAUCAMAAACtdX32AAAAdVBMVEUAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhMdQaAAAAJ3RSTlMAAAECAwQGBwsOFBwkJTg5RUZ4eYCHkJefpaytrsXGy8zW3+Do8vNn0bsyAAAAYElEQVR42tXROwJDQAAA0Ymw1p9kiT+L5P5HVEi3qJn2lcPjtIuzUIJ/rhIGy762N3XaThqMN1ZPALsZPEzG1x8LrFL77DHBnEMxBewz0fJ6LyFHTPL7xhwzWYrJ9z22AqmQBV757MHfAAAAAElFTkSuQmCC);
  background-position: 100%;
  background-repeat: no-repeat;
  padding: 0 !important;
  padding-left: 25px !important;
}
.so-form .card .actionForm .specs label {
  color: #555555;
}
.so-form .card .actionForm .specs a {
  text-decoration: underline;
  font-size: 0.875rem;
  transition: all 0.3s ease-in;
}
.so-form .card .actionForm .specs a:hover {
  text-decoration: none;
}
.so-form .card .actionForm .specs .custom-checkbox {
  font-size: 0.875rem;
}
.so-form .card .actionForm .specs .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #7B68EE;
}
.so-form .card .actionForm .specs .custom-checkbox .custom-control-label::before {
  box-shadow: none !important;
  top: 0.16rem;
}
.so-form .card .actionForm .btn-submit {
  height: 50px;
  transition: all 0.3s ease-in;
  margin-top: 15px;
  font-weight: bold;
  font-size: 0.9rem;
  border-radius: 10px;
  background: linear-gradient(90deg, #7B68EE 0%, #D93BBD 100%);
  color: #fff;
  box-shadow: 0px 7px 20px 0px #DCD9EA;
  border: none;
}
.so-form .card .actionForm .btn-submit:hover {
  transform: scale(1.04);
}
.so-form .card .so-signup {
  margin-top: 10px;
  font-size: 0.875rem;
  transition: all 0.3s ease-in;
}
.so-form .card .so-signup a {
  text-decoration: underline;
}
.so-form .card .so-signup a:hover {
  text-decoration: none;
}
.so-form .signin-video {
  flex-direction: row;
  gap: 20px;
  padding: 3rem;
}
.so-form .signin-video h4 {
  color: #111;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0px;
}

.modal-dialog {
  max-width: 70%;
  width: 80%;
}

#my-video {
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  /* 16:9 aspect ratio (9 / 16 = 0.5625 or 56.25%) */
  height: 0;
  overflow: hidden;
}
#my-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* Optional: Adjust the object-fit property to fit your specific needs */
}

.header {
  background-color: transparent;
  position: relative;
  z-index: 1;
}
.header .navbar a {
  font-size: 1rem !important;
  font-weight: 400 !important;
  color: #fff;
}
.header .navbar a:hover {
  color: #FFC800 !important;
}
.header .navbar .btn-login-signup a {
  border-radius: 10px;
  background: #FFF;
  padding: 0 2rem;
  box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  color: #111;
  padding: 10px 20px;
}
.header .navbar .btn-login-signup a:hover {
  transform: scale(1.1);
  color: #111 !important;
}
.header .navbar li.active a {
  color: #FFC800 !important;
  font-weight: 600 !important;
}
.header .navbar .sign-up,
.header .navbar .stats {
  width: 7rem;
}
.header .navbar .sign-up:hover,
.header .navbar .stats:hover {
  color: #FFF !important;
}
.header .navbar .stats {
  width: 10rem;
}

#home {
  margin-top: -80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 100px 0;
  background: linear-gradient(245deg, #D93BBD 32.94%, #7B68EE 72.73%);
  position: relative;
  height: 800px;
}
#home img {
  position: absolute;
  bottom: 75px;
  right: 17%;
}
#home .elementor-shape {
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  direction: ltr;
  z-index: 2;
  pointer-events: none;
  bottom: -15px;
}
#home .elementor-shape svg {
  width: calc(160% + 1.3px);
  height: 1270px;
  transform: translateX(-50%) rotateY(180deg);
  position: relative;
  left: 50%;
  display: block;
  fill: #F8F7FE;
}
#home h1 {
  font-size: 4.5rem;
  color: #FFF;
  margin-bottom: 2rem;
}
#home p {
  margin-bottom: 2rem;
  color: #FFF;
}
#home .btn {
  padding: 0;
  box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
#home .btn a {
  padding: 1rem 2rem;
  font-weight: bold;
  transition: all ease-in 0.3s;
}
#home .btn a:hover {
  color: #FFFFFF !important;
  transform: scale(1.05);
}
#home .video-btn {
  margin-top: 5rem;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  cursor: pointer;
}
#home .video-btn .text {
  font-size: 1rem;
}
#home .video-btn .text span {
  display: block;
  text-decoration: underline;
}

.faqs img {
  bottom: 95px !important;
}
.faqs .elementor-shape svg {
  fill: #FFF !important;
}

#other-pages .toggle-cards {
  box-shadow: unset;
}
#other-pages .toggle-cards .card-header {
  border-radius: 10px;
  border: 1px solid #7B68EE;
  color: #111;
  background: #FFF;
  cursor: pointer;
}
#other-pages .toggle-cards .card-header .card-title {
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: capitalize;
}
#other-pages .toggle-cards .card-header .card-options a {
  color: #7B68EE;
}
#other-pages .toggle-cards:not(.card-collapsed) {
  border-radius: 10px;
  background-color: #7B68EE;
}
#other-pages .toggle-cards:not(.card-collapsed) .card-header {
  color: #fff;
  background-color: #7B68EE;
}
#other-pages .toggle-cards:not(.card-collapsed) .card-header .card-options a {
  color: #fff;
}
#other-pages .toggle-cards:not(.card-collapsed) .card-body {
  padding-top: 0;
}
#other-pages .toggle-cards:not(.card-collapsed) .card-body p {
  color: #FFF;
}
#other-pages .container {
  min-height: 40vh;
  padding-top: 5rem;
}
#other-pages .container .row > div:last-child .card {
  margin-bottom: 0;
}
#other-pages .container .row h2 {
  font-size: 2rem;
}
#other-pages .container #terms-conditions {
  padding: 3rem 0;
}
#other-pages .container #terms-conditions h2 {
  color: #111;
  font-weight: 700;
  font-size: 1.625rem;
}
#other-pages .container #terms-conditions h4 {
  color: #7B68EE;
  font-weight: 800;
}
#other-pages .container #terms-conditions strong {
  color: #111;
  font-weight: 700;
}

.stored-testimonials {
  margin: 0 auto 100px;
  background-color: #F8F7FE;
  padding: 100px 0;
  position: relative;
}
.stored-testimonials .elementor-shape {
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  direction: ltr;
  z-index: 0;
  pointer-events: none;
  bottom: -5px;
}
.stored-testimonials .elementor-shape svg {
  width: calc(100% + 1.3px);
  height: 195px;
  transform: translateX(-50%) rotateY(180deg);
  position: relative;
  left: 50%;
  display: block;
  fill: #fff;
}
.stored-testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #111;
  font-weight: 700;
}
.stored-testimonials small {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 3.4rem;
  display: block;
}
.stored-testimonials .slider-section {
  position: relative;
}
.stored-testimonials .slider-section .reviews {
  overflow: hidden;
  padding: 1rem 0;
}
.stored-testimonials .slider-section .swiper-wrapper {
  height: auto;
}
.stored-testimonials .slider-section .slide {
  position: relative;
  z-index: 1;
  background-color: #FFF;
  box-shadow: 0px 7px 30px 0px rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  margin: 0 auto;
  gap: 1rem;
  padding: 2rem 1.875rem;
}
.stored-testimonials .slider-section .slide .user {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
.stored-testimonials .slider-section .slide .stars {
  color: #FFC800;
  margin-bottom: 1rem;
}
.stored-testimonials .slider-section .slide .name {
  font-weight: 700;
  color: #111;
}
.stored-testimonials .slider-section .slide .img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  overflow: hidden;
}
.stored-testimonials .slider-section .slide .img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.stored-testimonials .slider-section .slide .review p {
  font-size: 1rem;
  line-height: 1.5em;
}

.swiper {
  height: 460px;
}
.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  background-color: #7B68EE;
  color: #FFF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.swiper .swiper-button-prev i,
.swiper .swiper-button-next i {
  font-weight: bold;
  font-size: 30px;
}

.guarantee {
  margin: 100px auto;
}
.guarantee h2 {
  font-size: 2.5rem;
  margin-bottom: 2.75rem;
  color: #111;
  font-weight: 700;
}
.guarantee .border {
  margin-bottom: 1.8rem;
  padding: 0 50px;
  display: flex;
  align-items: center;
  gap: 2rem;
  border-radius: 8px;
  border: 1px solid #DCD9EA;
  transition: all ease-in 0.3s;
  height: 240px;
}
.guarantee .border:hover {
  border-color: #7B68EE !important;
  transform: scale(1.02);
}
.guarantee .border svg {
  margin-bottom: 20px;
}
.guarantee .border h3 {
  margin-bottom: 14px;
  font-size: 1.5rem;
  color: #111;
  font-weight: 700;
}
.guarantee .border p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5em;
}
.guarantee .pink-border {
  border-color: #D93BBD !important;
}
.guarantee .purple-border {
  border-color: #7B68EE !important;
}
.guarantee .yellow-border {
  border-color: #FFC800 !important;
}
.guarantee .green-border {
  border-color: #00B884 !important;
}

.packages {
  padding: 5.625rem 0;
  background-color: #F8F7FE;
}
.packages:hover {
  transform: unset;
}
.packages h2 {
  font-size: 2.5rem;
  margin-bottom: 2.75rem;
  color: #111;
  font-weight: 700;
}
.packages .child-card {
  background: #FFFFFF;
  border: 1px solid #7B68EE;
  border-radius: 10px;
  box-shadow: unset;
  padding: 0;
  margin: 0;
  position: relative;
  min-height: 675px;
}
.packages .child-card .popular {
  background-color: #D93BBD;
  border-radius: 5px;
  box-shadow: 0px 8px 10px 0px rgba(123, 104, 238, 0.2);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  position: absolute;
  padding: 5px 30px;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.packages .child-card .card-header {
  background-color: #7B68EE;
  color: #FFF;
  padding: 1rem 0;
  gap: 5px;
  font-weight: 700;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.packages .child-card .card-header svg {
  background-color: #F8F7FE;
  position: absolute;
  left: -1px;
  top: -1px;
  z-index: 9;
  border-bottom-right-radius: 10px;
}
.packages .child-card .so-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.packages .child-card .name h4 {
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
  font-weight: 700;
}
.packages .child-card .saving {
  gap: 10px;
  margin-bottom: 0.75rem;
}
.packages .child-card .saving p {
  font-size: 0.75rem;
  color: #111;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}
.packages .child-card .saving .save {
  color: #7B68EE;
  text-transform: capitalize;
  background-color: #F8F7FE;
  border-radius: 100px;
  padding: 2px 10px;
}
.packages .child-card .actual-price {
  text-align: center;
  margin-bottom: 0.75rem;
}
.packages .child-card .actual-price h5 {
  margin: 0;
  color: #7B68EE;
  font-size: 2.2rem;
  font-weight: 700;
}
.packages .child-card .add-to-cart {
  text-align: center;
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  padding: 1.625rem 1.875rem 0;
  transform: translateX(-50%);
  width: 100%;
  box-sizing: border-box;
}
.packages .child-card .add-to-cart a {
  padding: 0.5rem 4rem;
  transition: all 0.3s ease-in;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0px 20px 30px 0px rgba(123, 104, 238, 0.2);
  border-radius: 10px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.packages .child-card .add-to-cart a:hover {
  color: #FFFFFF;
  transform: scale(1.05);
}
.packages .child-card .services {
  margin-bottom: 5rem;
  padding: 0 1.875rem 0;
}
.packages .child-card .services > div:not(:last-child) {
  border-bottom: 1px solid rgba(123, 104, 238, 0.2);
}
.packages .child-card .services h5 {
  margin: 0;
  padding: 1rem 0;
  line-height: 1.5em;
  font-size: 1rem;
  font-weight: 400;
  flex: 1 1;
}
.packages .child-card .services .text-primary {
  color: #7B68EE !important;
  font-weight: 600;
}
.packages .child-card .services p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 400;
}
.packages .child-card .services p strong {
  color: #7B68EE;
}
.packages .child-card .delivery {
  margin: 0;
  position: relative;
}
.packages .child-card .delivery .vs {
  position: absolute;
  left: 45.5%;
  top: 35%;
  font-size: 0.875rem;
  background-color: #FFFFFF;
  border-radius: 50%;
  font-weight: 700;
  margin: 0;
  color: #111;
  padding: 4px;
}
.packages .child-card .delivery h4 {
  text-align: center;
  font-size: 1.125rem;
  color: #111;
  margin-bottom: 0.75rem;
}
.packages .child-card .delivery .so-table {
  border: 1px solid #CCCCCC;
  box-shadow: 0px 10px 20px rgba(255, 127, 0, 0.15);
  border-radius: 6px;
}
.packages .child-card .delivery .so-table .header {
  text-align: center;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 700;
}
.packages .child-card .delivery .so-table .header .first {
  width: 49.5%;
  background-color: #7B68EE;
  padding: 10px;
  border-radius: 6px 0px 0px 0px;
}
.packages .child-card .delivery .so-table .header .second {
  background-color: #111;
  width: 49.5%;
  padding: 10px;
  border-radius: 0px 6px 0px 0px;
}
.packages .child-card .delivery .so-table .body {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
}
.packages .child-card .delivery .so-table .body div {
  width: 49%;
  padding: 10px;
}
.packages .popular-card {
  background: rgba(255, 127, 0, 0.1);
  border: 1px solid #FF7F00;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.join {
  height: 30vh;
  background: linear-gradient(90deg, #7B68EE 0%, #D93BBD 100%);
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  justify-content: center;
  color: #FFF;
}
.join h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.join a {
  padding: 1rem 2rem;
  color: #7B68EE !important;
  font-size: 1rem;
  transition: all 0.3s ease-in;
  cursor: pointer;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.1);
}
.join a:hover {
  transform: scale(1.05);
}

footer {
  padding: 3.75rem 0;
}
footer ul {
  padding: 0;
  list-style: none;
  margin-bottom: 0;
  gap: 2rem;
}
footer ul li a {
  padding: 0;
  font-size: 1.2rem;
  color: #555555;
}
footer ul li a:hover {
  color: #7B68EE !important;
  text-decoration: none;
}
footer .links {
  margin: 2rem 0;
}

@media (max-width: 1440px) {
  #home img {
    right: 5%;
  }
}
@media (max-width: 430px) {
  #home img {
    display: none;
  }
  .so-form {
    padding: 2rem 0;
    height: auto;
  }
  .so-form .card {
    padding: 4rem 2rem;
    width: 90%;
  }
  .header {
    background: linear-gradient(245deg, #D93BBD 32.94%, #7B68EE 72.73%);
  }
  .header .navbar a {
    color: #fff;
  }
  #home h1 {
    font-size: 3rem;
  }
  #home .elementor-shape {
    bottom: 0;
  }
  #home .elementor-shape svg {
    height: 300px;
  }
  #home .first svg {
    width: 100px;
  }
  .btn-login-signup {
    justify-content: center !important;
  }
  .packages {
    overflow: hidden;
    width: 100%;
  }
  .packages .child-card {
    margin-bottom: 2rem;
  }
  .packages .child-card .add-to-cart a {
    width: 100%;
  }
  .guarantee {
    overflow: hidden;
    width: 100%;
  }
  .guarantee .border {
    margin-bottom: 1rem;
    height: 300px;
  }
  .stored-testimonials .slider-section .reviews {
    height: auto;
    width: 100%;
  }
  .stored-testimonials .slider-section .slider-btns {
    width: 100%;
  }
  .stored-testimonials .top-right {
    top: 0;
    right: 5rem;
  }
  .stored-testimonials .top-right .small-circle {
    margin-top: 0;
  }
  .stored-testimonials .bottom-left {
    left: 3rem;
    bottom: 0rem;
  }
  .modal-dialog {
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
  }
  .join .links {
    flex-wrap: wrap;
    padding: 0 2rem;
  }
  footer {
    padding: 4rem 2rem;
  }
}/*# sourceMappingURL=custom.css.map */