@font-face {
  font-family: "PingAR";
  src: url("../fonts/PingAR/PingAR_LT_Medium.woff2");
  font-weight: 700;
}
@font-face {
  font-family: "PingAR";
  src: url("../fonts/PingAR/PingAR_LT_Regular.woff2");
  font-weight: 500;
}
@font-face {
  font-family: "PingAR";
  src: url("../fonts/PingAR/PingAR_LT_Bold.woff2");
  font-weight: 900;
}
* {
  margin: 0px;
  box-sizing: border-box;
  font-family: "PingAR", sans-serif;
  scroll-behavior: smooth;
}
*::-moz-selection {
  background-color: var(--primary-color);
  color: var(--light-color);
}
*::selection {
  background-color: var(--primary-color);
  color: var(--light-color);
}
*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track {
  background-color: var(--light-color);
}
*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #3B8C67, #fff);
  border-radius: 8px;
}
*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #fff, #3B8C67);
}

.overflowNone {
  overflow: hidden;
}

.btn:focus,
button:focus,
input:focus,
.form-control:focus {
  outline-width: 0px !important;
  outline-color: transparent !important;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

a {
  text-decoration: none !important;
}

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

button {
  outline: none !important;
  border: 0px !important;
}

.swiper-button-next, .swiper-button-prev {
  top: unset;
  transform: translateY(0px);
  width: 50px;
  height: 50px;
  border: 1px solid rgba(59, 140, 103, 0.2);
  background-color: var(--light);
  background-color: rgba(59, 140, 103, 0.1);
  border-radius: 50%;
  bottom: 0;
}
.swiper-button-next::before, .swiper-button-prev::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: all 0.3s linear;
  border-radius: 50%;
  transform: scale(0);
}
.swiper-button-next::after, .swiper-button-prev::after {
  position: absolute;
  width: 24px;
  height: 24px;
  top: calc(50% - 12px);
  left: calc(50% - 12px);
  z-index: 9;
  background: url("../images/icons/arrow.svg") center/15px 15px no-repeat;
  color: transparent;
  filter: var(--primary-filter);
}
.swiper-button-next:hover::before, .swiper-button-prev:hover::before {
  transform: scale(1);
}
.swiper-button-next:hover::after, .swiper-button-prev:hover::after {
  filter: var(--light-filter);
}

.swiper-button-prev {
  left: calc(50% - 55px) !important;
  right: unset !important;
}
.swiper-button-prev::after {
  transform: scaleX(-1);
}

.swiper-button-next {
  left: unset !important;
  right: calc(50% - 55px) !important;
}

.swiper-pagination {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 33px;
  height: 3px;
  background-color: rgba(91, 165, 14, 0.5);
  border-radius: 2px;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background-color: var(--primary-color);
}

@keyframes bounce-in-fwd {
  0% {
    transform: scale(0);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: scale(1);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: scale(0.7);
    animation-timing-function: ease-in;
  }
  72% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
  81% {
    transform: scale(0.84);
    animation-timing-function: ease-in;
  }
  89% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
  95% {
    transform: scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-top {
  0% {
    transform: translateY(-50px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateY(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateY(-20px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateY(-15px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateY(-4px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-left {
  0% {
    transform: translateX(-30px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateX(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateX(-20px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateX(-10px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateX(-4px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
}
@keyframes pulse-shadow {
  100% {
    box-shadow: 0 0 0 10px rgba(255, 194, 88, 0.3), 0 0 0 20px rgba(255, 194, 88, 0.2);
  }
}
@keyframes spinner {
  0% {
    transform: rotate(0deg) scale3d(1, 1, 1);
  }
  100% {
    transform: rotate(10deg) scale3d(1.5, 1.5, 1.5);
  }
}
@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
    opacity: 0;
  }
  50% {
    transform: scale3d(0.8, 0.8, 0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
/*dropdown animation*/
@keyframes dropdown-animate {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  50% {
    transform: rotateX(20deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes wave {
  0%, 100% {
    -webkit-clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
  }
  50% {
    -webkit-clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
  }
}
@keyframes niceAnimate {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes translation {
  0% {
    transform: translateZ(0%);
  }
  100% {
    transform: translateZ(10%);
  }
}
@keyframes rotate-scale-up {
  0% {
    transform: scale(1) rotateZ(0);
  }
  50% {
    transform: scale(2) rotateZ(180deg);
  }
  100% {
    transform: scale(1) rotateZ(360deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes vibrate {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-10px, 10px);
  }
  40% {
    transform: translate(-10px, -10px);
  }
  60% {
    transform: translate(10px, 10px);
  }
  80% {
    transform: translate(10px, -10px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes translateX {
  0%, 100% {
    transform: translateX(2px);
  }
  50% {
    transform: translateX(-2px);
  }
}
@keyframes translateY {
  0%, 100% {
    transform: translateY(2px);
  }
  50% {
    transform: translateY(-2px);
  }
}
@keyframes flip-in-hor-bottom {
  0% {
    transform: rotateX(80deg) translate(-50%, -50%);
    opacity: 0;
  }
  100% {
    transform: rotateX(0) translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes shadow {
  0% {
    box-shadow: 0px 0px 35px -4px #00a4e6;
    opacity: 0 !important;
  }
  100% {
    box-shadow: 0px 0px 35px -4px rgba(0, 164, 230, 0);
  }
}
@keyframes rotate {
  0% {
    border-radius: 50% 60% 55% 40%;
  }
  25% {
    border-radius: 30% 10% 70% 20%;
  }
  50% {
    border-radius: 20% 40% 30% 60%;
  }
  75% {
    border-radius: 70% 20% 50% 30%;
  }
  100% {
    border-radius: 50% 60% 55% 40%;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateX(30px);
  }
  67% {
    opacity: 1;
    transform: translateX(40px);
  }
  100% {
    opacity: 0;
    transform: translateX(55px) scale3d(0.5, 0.5, 0.5);
  }
}
@keyframes clip {
  0% {
    -webkit-clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
            clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
            clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
            clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
  }
}
@keyframes sideClip {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes sideClip_2 {
  0% {
    -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
            clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
  }
  50% {
    -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
            clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
            clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
  }
}
@keyframes toRightFromLeft {
  49% {
    transform: translate(100%);
  }
  50% {
    opacity: 0;
    transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes topBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes bottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes storm {
  0% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
  25% {
    transform: translate3d(4px, 0, 0) translateZ(0);
  }
  50% {
    transform: translate3d(-3px, 0, 0) translateZ(0);
  }
  75% {
    transform: translate3d(2px, 0, 0) translateZ(0);
  }
  100% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
}
@keyframes movePattern {
  0% {
    background-position-y: 0px;
  }
  100% {
    background-position-y: 1000px;
  }
}
@keyframes movePatternX {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: 1000px;
  }
}
:root {
  --primary-color: #3b8c67;
  --secondary-color: #ffc258;
  --dark-color: #000;
  --light-color: #fff;
  --gray-color: #808080;
  --primary-filter: invert(48%) sepia(7%) saturate(4005%) hue-rotate(101deg)
      brightness(93%) contrast(60%);
  --light-filter: invert(92%) sepia(100%) saturate(23%) hue-rotate(251deg)
      brightness(108%) contrast(100%);
  --gray-filter: invert(58%) sepia(0%) saturate(3400%) hue-rotate(13deg)
      brightness(87%) contrast(97%);
}

html[dir=ltr] header .swiper-button-prev {
  right: unset !important;
  left: 0px !important;
}
html[dir=ltr] header .swiper-button-next {
  left: 60px !important;
  right: unset !important;
}
html[dir=ltr] .questions .card .card-header .btn::after {
  left: unset;
  right: 24px;
}
html[dir=ltr] .contact-us .contact-data .contact-form .form-contain .form-data .form-group img {
  left: 18px;
  right: unset;
}
html[dir=ltr] .contact-us .contact-data .contact-form .form-contain .form-data .error::after {
  left: 0px;
  right: unset;
}
html[dir=ltr] .contact-us .contact-data .contact-info .contact .image-content {
  width: 70px;
  height: 70px;
}
html[dir=ltr] .contact-us .contact-data .contact-info .contact .data {
  width: calc(100% - 80px);
}
html[dir=ltr] .questions .heading::after {
  left: 50px;
  right: unset;
}
html[dir=ltr] .fixed-icons {
  right: 10px;
  left: unset;
}

.custom-btn {
  width: 150px;
  height: 50px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 50px;
  position: relative;
  z-index: 9;
  background-color: var(--primary-color);
  overflow: hidden;
}
.custom-btn::after, .custom-btn::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  bottom: 0;
  z-index: -1;
  background-color: #d6e7df;
  transition: all 0.3s linear;
}
.custom-btn::before {
  left: 0px;
}
.custom-btn::after {
  right: 0px;
}
.custom-btn span {
  color: var(--light-color);
  font-size: 16px;
  font-weight: 700;
}
.custom-btn:hover::after, .custom-btn:hover::before {
  width: 50%;
}
.custom-btn:hover span {
  animation: storm 0.5s linear;
  color: var(--primary-color);
  font-weight: 900;
}

.app-button-contain {
  display: flex;
  align-items: center;
  align-content: center;
}
.app-button-contain .download-btn {
  width: 150px;
  height: 50px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  transition: all 0.3s linear;
}
.app-button-contain .download-btn:last-child {
  -webkit-margin-end: 0px;
          margin-inline-end: 0px;
}
.app-button-contain .download-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.app-button-contain .download-btn:hover {
  transform: translateY(-10px);
}

.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 29px 0px;
  background-color: var(--light-color);
  transition: all 0.3s linear;
}
.navbar.scrolled {
  padding: 15px 0px;
  box-shadow: 0px 0px 10px rgba(59, 140, 103, 0.1);
}
.navbar .contain {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.navbar .contain .hamburger {
  display: none;
}
.navbar .contain .hamburger .line {
  width: 30px;
  height: 3px;
  background: var(--primary-color);
  display: block;
  margin: 8px auto;
  transition: all 0.3s ease-in-out;
}
.navbar .contain .hamburger.active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}
.navbar .contain .hamburger.active .line:nth-child(2) {
  width: 0px;
}
.navbar .contain .hamburger.active .line:nth-child(1), .navbar .contain .hamburger.active .line:nth-child(3) {
  transition-delay: 0.3s;
}
.navbar .contain .hamburger.active .line:nth-child(1) {
  transform: translateY(6.5px);
}
.navbar .contain .hamburger.active .line:nth-child(3) {
  transform: translateY(-15px) rotate(90deg);
}
.navbar .contain .brand-name img {
  width: 144px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.navbar .contain .navbar-nav {
  flex-direction: row;
}
.navbar .contain .navbar-nav .nav-item {
  -webkit-margin-end: 24px;
          margin-inline-end: 24px;
}
.navbar .contain .navbar-nav .nav-item:last-child {
  -webkit-margin-end: 0px;
          margin-inline-end: 0px;
}
.navbar .contain .navbar-nav .nav-item .nav-link {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-color);
  position: relative;
  z-index: 9;
}
.navbar .contain .navbar-nav .nav-item .nav-link::after, .navbar .contain .navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 1px;
  background-color: var(--primary-color);
  bottom: 0;
  transition: all 0.3s linear;
  z-index: -1;
}
.navbar .contain .navbar-nav .nav-item .nav-link::after {
  left: 0;
}
.navbar .contain .navbar-nav .nav-item .nav-link::before {
  right: 0;
}
.navbar .contain .navbar-nav .nav-item .nav-link:hover, .navbar .contain .navbar-nav .nav-item .nav-link.active {
  color: var(--primary-color);
}
.navbar .contain .navbar-nav .nav-item .nav-link:hover::after, .navbar .contain .navbar-nav .nav-item .nav-link:hover::before, .navbar .contain .navbar-nav .nav-item .nav-link.active::after, .navbar .contain .navbar-nav .nav-item .nav-link.active::before {
  width: 50%;
}
.navbar .contain .navbar-nav .socail-media {
  width: 100%;
  display: none;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}
.navbar .contain .navbar-nav .socail-media li a {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #3b8c67;
}
.navbar .contain .navbar-nav .socail-media li a img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.navbar .contain .navbar-nav .socail-media li a:hover {
  background-color: var(--light-color);
}
.navbar .contain .navbar-nav .socail-media li a:hover img {
  animation: fadeInLeft 0.4s linear;
}
.navbar .contain .flex-data {
  display: flex;
  align-items: center;
  align-content: center;
}
.navbar .contain .flex-data .lang {
  width: 50px;
  height: 50px;
  background-color: #d6e7df;
  border-radius: 50%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  overflow: hidden;
}
.navbar .contain .flex-data .lang span {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 700;
}
.navbar .contain .flex-data .lang:hover span {
  animation: fadeInLeft 0.4s linear;
}

header {
  width: 100%;
  padding: 168px 0px 80px;
  position: relative;
  z-index: 9;
  background-color: var(--light-color);
}
header .swiper-wrapper {
  padding: 100px 0px 157px;
}
header .swiper-button-prev {
  right: 60px !important;
  left: unset !important;
}
header .swiper-button-next {
  left: unset !important;
  right: 0px !important;
}
header .contain {
  width: 55%;
}
header .contain h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--dark-color);
  margin: 0px;
}
header .contain h1 span {
  color: var(--primary-color);
  font-size: 40px;
  font-weight: 900;
}
header .contain p {
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 500;
  margin: 30px 0px;
}
header .image-content {
  width: 100%;
  height: 582px;
  position: relative;
  z-index: 9;
}
header .image-content .screen-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin: auto;
  animation: translateX 1.5s linear infinite alternate;
}
header .image-content .logo-contain {
  width: 100%;
  height: 120px;
  position: absolute;
  top: 111px;
  left: 0;
  z-index: 9;
  animation: translateY 2s linear infinite;
  display: flex;
  align-items: center;
  align-content: center;
  background-color: #d6e7df;
  justify-content: center;
  border-radius: 24px;
}
header .image-content .logo-contain img {
  width: 212px;
  height: 77px;
  -o-object-fit: contain;
     object-fit: contain;
}

.numbers {
  width: 100%;
  position: relative;
  z-index: 9;
}
.numbers .data-contain {
  width: 100%;
  padding: 70px 30px;
  background-color: var(--primary-color);
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  z-index: 9;
}
.numbers .data-contain::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/brand/pattern-wave.png") top right/contain repeat-x;
  top: 0;
  left: 0;
  z-index: -1;
  animation: movePatternX 20s linear infinite;
  filter: var(--light-filter);
  opacity: 0.15;
}
.numbers .data-contain .heading {
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
}
.numbers .data-contain .heading h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--light-color);
  margin-bottom: 20px;
}
.numbers .data-contain .heading p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 500;
  margin: 0px;
}
.numbers .data-contain .box {
  width: 100%;
  padding: 0px 80px;
  text-align: center;
  transition: all 0.3s linear;
}
.numbers .data-contain .box p {
  color: var(--secondary-color);
  font-size: 70px;
  font-weight: 900;
  margin-bottom: 20px;
}
.numbers .data-contain .box p .count {
  color: var(--secondary-color);
  font-size: 70px;
  font-weight: 900;
}
.numbers .data-contain .box h2 {
  color: var(--light-color);
  font-size: 20px;
  font-weight: 500;
  margin: 0px;
}
.numbers .data-contain .box img {
  transition: all 0.3s linear;
}
.numbers .data-contain .box img:hover {
  transform: translateY(-10px);
}
.numbers .data-contain .border-contain {
  -webkit-border-start: 1px solid rgba(255, 255, 255, 0.15);
          border-inline-start: 1px solid rgba(255, 255, 255, 0.15);
  -webkit-border-end: 1px solid rgba(255, 255, 255, 0.15);
          border-inline-end: 1px solid rgba(255, 255, 255, 0.15);
}

.about {
  width: 100%;
  padding: 80px 0px 0px;
  position: relative;
  z-index: 9;
}
.about .image-content {
  width: 100%;
  height: 500px;
}
.about .image-content img {
  width: 100%;
  height: 100%;
  -o-object-position: right;
     object-position: right;
  -o-object-fit: contain;
     object-fit: contain;
}
.about .contain {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about .contain h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--dark-color);
  margin-bottom: 0px;
}
.about .contain h1 span {
  color: var(--primary-color);
  font-size: 40px;
  font-weight: 900;
}
.about .contain p {
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 500;
  margin: 40px 0px;
}

.plan {
  width: 100%;
  position: relative;
  z-index: 9;
  padding-top: 60px;
}
.plan .heading {
  width: 100%;
  padding: 70px 0px 60px;
  margin-bottom: 40px;
  background-color: #f9f9f9;
  position: relative;
  z-index: 9;
  border-radius: 40px;
  overflow: hidden;
  text-align: center;
}
.plan .heading::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/brand/pattern-wave.png") top right/contain repeat-x;
  top: 0;
  left: 0;
  z-index: -1;
  animation: movePatternX 20s linear infinite;
  filter: var(--primary-filter);
  opacity: 0.15;
}
.plan .heading h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--dark-color);
  margin-bottom: 20px;
}
.plan .heading p {
  color: var(--gray-color);
  font-size: 16px;
  font-weight: 500;
  margin: 0px;
}
.plan .swiper-wrapper {
  padding: 20px 0px 90px;
}
.plan .box {
  width: 100%;
  transition: all 0.3s linear;
  position: relative;
  z-index: 9;
  background-color: #fff;
  border: 1px solid rgba(30, 92, 89, 0.10);
  border-radius: 32px;
  padding: 14px 14px 0px;
  box-shadow: 0 18px 40px rgba(30, 92, 89, 0.08);
  overflow: hidden;
}
.plan .box .image-content {
  width: 100%;
  height: 400px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,253,247,1) 0%, rgba(247,250,249,1) 100%);
}
.plan .box .image-content::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 90px;
  background: url("../images/brand/pattern-wave.png") center bottom/220px auto repeat-x;
  opacity: 0.08;
  pointer-events: none;
}
.plan .box .image-content .brand-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  background: rgba(255,253,247,0.96);
  border: 1px solid rgba(30, 92, 89, 0.12);
  border-radius: 18px;
  padding: 8px 12px;
  box-shadow: 0 10px 25px rgba(30, 92, 89, 0.10);
}
.plan .box .image-content .brand-badge img {
  width: 120px;
  height: auto;
  object-fit: contain;
}

.plan .box .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.plan .box .contain {
  width: 100%;
  padding: 24px 22px 24px;
  position: relative;
  z-index: 9;
  text-align: center;
}
.plan .box .contain .identity-divider {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.plan .box .contain .identity-divider img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  opacity: 0.92;
}

.plan .box .contain h2 {
  margin: 0px;
  font-size: 30px;
  line-height: 1.5;
  font-weight: 800;
  color: var(--dark-color);
}
.plan .box .contain .number {
  display: none !important;
}
.plan .box:hover {
  transform: translateY(-10px);
}
.plan .box:hover h2 {
  color: var(--primary-color);
}
.plan .box::before {
  content: "";
  position: absolute;
  inset-inline-end: -15px;
  top: -10px;
  width: 94px;
  height: 94px;
  background: url("../images/brand/pattern-grid.png") center/contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}


.why {
  width: 100%;
  padding: 80px 0px 0px;
  position: relative;
  z-index: 9;
}
.why .heading {
  width: 100%;
  margin-bottom: 60px;
  text-align: center;
}
.why .heading h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--dark-color);
  margin-bottom: 20px;
}
.why .heading p {
  color: var(--gray-color);
  font-size: 16px;
  font-weight: 500;
  margin: 0px;
}
.why .box {
  width: 100%;
  padding: 38px 50px;
  border: 1px solid rgba(59, 140, 103, 0.3);
  border-radius: 30px;
  text-align: center;
  transition: all 0.3s linear;
}
.why .box .image-content {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: var(--primary-color);
  position: relative;
  z-index: 9;
  margin: 0px auto;
  border-radius: 50%;
  overflow: hidden;
}
.why .box .image-content::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scale(0);
  border-radius: 50%;
  top: 0;
  left: 0;
  background-color: var(--secondary-color);
  z-index: -1;
  transition: all 0.3s linear;
}
.why .box .image-content img {
  width: 50%;
  height: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}
.why .box h2 {
  font-size: 16px;
  font-weight: 900;
  color: var(--dark-color);
  margin: 20px 0px 0px;
}
.why .box:hover {
  transform: translateY(-10px);
}
.why .box:hover .image-content::after {
  transform: scale(1);
}
.why .box:hover .image-content img {
  animation: fadeInLeft 0.4s linear;
}
.why .box:hover h2 {
  color: var(--primary-color);
}

.testimonials {
  width: 100%;
  position: relative;
  z-index: 9;
  padding-top: 80px;
}
.testimonials .heading {
  width: 100%;
  margin-bottom: 40px;
  text-align: center;
}
.testimonials .heading h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--dark-color);
  margin-bottom: 20px;
}
.testimonials .heading p {
  color: var(--gray-color);
  font-size: 16px;
  font-weight: 500;
  margin: 0px;
}
.testimonials .swiper-wrapper {
  padding: 20px 0px 90px;
}
.testimonials .box {
  width: 100%;
  padding: 50px 40px;
  position: relative;
  z-index: 9;
  background-color: var(--primary-color);
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  transition: all 0.4s linear;
}
.testimonials .box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/testimonials/pattern.svg") top right/cover no-repeat;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.3s linear;
}
.testimonials .box .image-content {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonials .box .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials .box .contain {
  width: calc(100% - 138px);
}
.testimonials .box .contain p {
  color: var(--light-color);
  font-size: 16px;
  font-weight: 900;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.testimonials .box .contain .flex-data {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.testimonials .box .contain .flex-data .data {
  width: calc(100% - 100px);
}
.testimonials .box .contain .flex-data .data h2 {
  font-size: 16px;
  font-weight: 900;
  color: var(--secondary-color);
  margin-bottom: 15px;
}
.testimonials .box .contain .flex-data .data span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
}
.testimonials .box .contain .flex-data .qoute {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}
.testimonials .box:hover {
  transform: translateY(-10px);
}
.testimonials .box:hover::after {
  transform: scale(1.2);
}
.testimonials .box:hover .qoute {
  animation: storm 0.4s linear alternate;
}

.questions {
  width: 100%;
  padding: 80px 0px 0px;
  position: relative;
  z-index: 9;
}
.questions .heading {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 9;
}
.questions .heading::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 194, 88, 0.2);
  top: 0;
  right: 50px;
  z-index: -1;
}
.questions .heading .head-contain {
  width: -moz-fit-content;
  width: fit-content;
  padding: 25px 0px;
  background-color: var(--light-color);
  position: relative;
  z-index: 9;
}
.questions .heading .head-contain .image-content {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: rgba(255, 194, 88, 0.2);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  animation: pulse-shadow 3s linear infinite alternate;
}
.questions .heading .head-contain .image-content img {
  width: 50%;
  height: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}
.questions .heading .head-contain h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--dark-color);
  margin: 20px 0px;
}
.questions .heading .head-contain p {
  color: var(--gray-color);
  font-size: 16px;
  font-weight: 500;
  margin: 0px;
}
.questions .card {
  width: 100%;
  border: 0px;
  background-color: transparent;
  padding: 0px;
  margin-bottom: 10px;
}
.questions .card:last-child {
  margin-bottom: 0px;
}
.questions .card .card-header {
  width: 100%;
  padding: 0px;
  background-color: transparent;
  border: 0px;
}
.questions .card .card-header .btn {
  width: 100%;
  padding: 20px 24px 15px;
  -webkit-padding-end: 50px;
          padding-inline-end: 50px;
  border-radius: 30px;
  position: relative;
  display: flex;
  color: var(--light-color);
  background-color: #959595;
  font-size: 16px;
  font-weight: 900;
  z-index: 9;
  text-decoration: none;
  text-align: start !important;
  overflow: hidden;
}
.questions .card .card-header .btn::after, .questions .card .card-header .btn::before {
  content: "";
  position: absolute;
  transition: all 0.3s linear;
}
.questions .card .card-header .btn::after {
  width: 15px;
  height: 20px;
  background: url("../images/questions/down_arrow.svg") center/contain no-repeat;
  top: calc(50% - 10px);
  left: 24px;
  z-index: -1;
}
.questions .card .card-header .btn::before {
  width: 0px;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -2;
  background-color: var(--primary-color);
}
.questions .card .card-header .btn:hover::after {
  animation: translateY 1s linear;
}
.questions .card .card-header .btn:hover::before {
  width: 100%;
}
.questions .card .card-header .btn[aria-expanded=true]::after {
  transform: rotate(180deg);
}
.questions .card .card-header .btn[aria-expanded=true]::before {
  width: 100%;
}
.questions .card .card-header .btn[aria-expanded=true]:hover::after {
  animation: none;
}
.questions .card .card-body {
  width: 100%;
  padding: 50px 30px;
  border-radius: 20px;
  margin-top: 10px;
  overflow: hidden;
  position: relative;
  z-index: 9;
  border: 0px;
  background-color: rgba(59, 140, 103, 0.06);
}
.questions .card .card-body::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/brand/ornament-rosette.png") center/contain no-repeat;
  animation: spin 5s linear infinite;
  top: 0;
  left: 0;
  z-index: -1;
  filter: var(--primary-filter);
  opacity: 0.06;
}
.questions .card .card-body p {
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 500;
  margin: 0px;
}

.contact-us {
  width: 100%;
  position: relative;
  z-index: 9;
  padding-top: 60px;
  margin-bottom: -366px;
}
.contact-us .contact-data {
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
}
.contact-us .contact-data .contact-form {
  width: 100%;
  padding: 70px 100px 40px;
  position: relative;
  z-index: 9;
  background-color: #364a51;
}
.contact-us .contact-data .contact-form::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/brand/ornament-rosette.png") center/contain no-repeat;
  animation: spin 7s linear infinite;
  top: 0;
  left: 0;
  z-index: -1;
  filter: var(--light-filter);
  opacity: 0.06;
}
.contact-us .contact-data .contact-form .heading {
  width: 100%;
  margin-bottom: 60px;
  text-align: center;
}
.contact-us .contact-data .contact-form .heading h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--light-color);
  margin-bottom: 20px;
}
.contact-us .contact-data .contact-form .heading p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 500;
  margin: 0px;
}
.contact-us .contact-data .contact-form .iframe-contain {
  width: 100%;
  height: 330px;
  border-radius: 30px;
  overflow: hidden;
}
.contact-us .contact-data .contact-form .iframe-contain iframe {
  width: 100%;
  height: 100%;
}
.contact-us .contact-data .contact-form .form-contain {
  width: 100%;
}
.contact-us .contact-data .contact-form .form-contain .form-data {
  width: 100%;
  margin-bottom: 10px;
}
.contact-us .contact-data .contact-form .form-contain .form-data .form-group {
  width: 100%;
  height: 50px;
  position: relative;
  z-index: 9;
  overflow: hidden;
  border-radius: 25px;
}
.contact-us .contact-data .contact-form .form-contain .form-data .form-group img {
  width: 16px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: calc(50% - 10px);
  right: 18px;
}
.contact-us .contact-data .contact-form .form-contain .form-data .form-group .form-control {
  width: 100%;
  height: 100%;
  background-color: var(--light-color);
  -webkit-padding-start: 43px;
          padding-inline-start: 43px;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-color);
}
.contact-us .contact-data .contact-form .form-contain .form-data .form-group .form-control::-moz-placeholder {
  color: var(--gray-color);
  font-size: 16px;
  font-weight: 500;
}
.contact-us .contact-data .contact-form .form-contain .form-data .form-group .form-control::placeholder {
  color: var(--gray-color);
  font-size: 16px;
  font-weight: 500;
}
.contact-us .contact-data .contact-form .form-contain .form-data .form-group.textarea {
  height: 100px;
}
.contact-us .contact-data .contact-form .form-contain .form-data .form-group.textarea .form-control {
  padding-top: 12px;
  border-radius: 15px;
  resize: none;
}
.contact-us .contact-data .contact-form .form-contain .form-data .form-group.textarea img {
  top: 15px;
  width: 24px;
  height: 20px;
}
.contact-us .contact-data .contact-form .form-contain .form-data .error {
  color: #e92e2e;
  font-size: 15px;
  font-weight: 500;
  margin-top: 15px;
  position: relative;
  z-index: 9;
  -webkit-padding-start: 30px;
          padding-inline-start: 30px;
}
.contact-us .contact-data .contact-form .form-contain .form-data .error::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("../images/contact/error.svg") center/contain no-repeat;
  top: calc(50% - 12px);
  right: 0px;
  z-index: -1;
}
.contact-us .contact-data .contact-form .form-contain .custom-btn {
  width: 100%;
  margin-top: 15px;
}
.contact-us .contact-data .contact-info {
  width: 100%;
  padding: 37px 100px 20px;
  background-color: #2f4147;
  position: relative;
  z-index: 9;
}
.contact-us .contact-data .contact-info .contact {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  transition: all 0.3s linear;
}
.contact-us .contact-data .contact-info .contact .image-content {
  width: 75px;
  height: 75px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: hidden;
}
.contact-us .contact-data .contact-info .contact .image-content img {
  width: 50%;
  height: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact-us .contact-data .contact-info .contact .data {
  width: calc(100% - 90px);
}
.contact-us .contact-data .contact-info .contact .data h2 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-us .contact-data .contact-info .contact .data .link {
  font-size: 20px;
  font-weight: 900;
  color: var(--light-color);
}
.contact-us .contact-data .contact-info .contact .data span {
  font-size: 20px;
  font-weight: 900;
  color: var(--light-color);
  margin: 0px 10px;
}
.contact-us .contact-data .contact-info .contact:hover {
  transform: translateY(-10px);
}
.contact-us .contact-data .contact-info .contact:hover .image-content img {
  animation: fadeInLeft 0.4s linear both;
}
.contact-us .contact-data .contact-info .contact:hover h2 {
  color: var(--primary-color);
}

footer {
  width: 100%;
  padding: 443px 0px 0px;
  position: relative;
  z-index: 8;
  background-color: var(--primary-color);
  overflow: hidden;
}
footer::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/testimonials/pattern.svg") top right/cover no-repeat;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.3s linear;
  animation: spinner 10s linear infinite alternate;
}
footer .contain {
  width: 100%;
}
footer .contain.padding-contain {
  -webkit-padding-start: 60px;
          padding-inline-start: 60px;
}
footer .contain .brand-name img {
  width: 192px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .contain p {
  color: var(--light-color);
  font-size: 16px;
  font-weight: 500;
  margin: 30px 0px;
}
footer .contain .socail-media {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}
footer .contain .socail-media li a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
footer .contain .socail-media li a img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .contain .socail-media li a:hover {
  background-color: var(--light-color);
}
footer .contain .socail-media li a:hover img {
  animation: fadeInLeft 0.4s linear;
}
footer .contain h1 {
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 40px;
  color: var(--secondary-color);
}
footer .contain .links {
  width: 60%;
}
footer .contain .links li {
  width: 100%;
  padding: 20px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
footer .contain .links li a {
  width: 100%;
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  transition: all 0.3s linear;
}
footer .contain .links li a:hover {
  -webkit-padding-start: 15px;
          padding-inline-start: 15px;
}
footer .contain .links li:last-child {
  padding-bottom: 0px;
  border-bottom: 0px;
}
footer .contain .links li:first-child {
  padding-top: 0px;
}
footer .copyrights {
  width: 100%;
  padding: 10px 0px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
footer .copyrights p,
footer .copyrights span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0px;
}
footer .copyrights .techno {
  display: flex;
  align-items: center;
  align-content: center;
}
footer .copyrights .techno img {
  width: 92px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-start: 10px;
          margin-inline-start: 10px;
}

.modal-dialog {
  width: 100%;
  border: 0px;
  padding: 0px;
  border-radius: 0px;
}
.modal-dialog.big-modal {
  min-width: 700px;
}
.modal-dialog .modal-content {
  width: 100%;
  border: 0px;
  padding: 0px;
  border-radius: 20px !important;
}
.modal-dialog .modal-content .modal-body {
  width: 100%;
  border: 0px;
  padding: 0px;
  border-radius: 20px !important;
}
.modal-dialog .modal-content .modal-body .contain {
  width: 100%;
  padding: 70px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  border-radius: 20px !important;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
.modal-dialog .modal-content .modal-body .contain::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: url("../images/brand/ornament-rosette.png") center/contain no-repeat;
  animation: spin 7s linear infinite;
  bottom: 0;
  left: 0;
  z-index: -1;
  filter: var(--primary-filter);
  opacity: 0.06;
}
.modal-dialog .modal-content .modal-body .contain img {
  width: 85px;
  height: 85px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}
.modal-dialog .modal-content .modal-body .contain .brand-name {
  width: 190px;
  height: 50px;
  margin: 0px auto 30px;
}
.modal-dialog .modal-content .modal-body .contain .brand-name img {
  width: 100% !important;
  height: 100% !important;
  margin-bottom: 0px;
  -o-object-fit: contain;
     object-fit: contain;
}
.modal-dialog .modal-content .modal-body .contain h1 {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark-color);
  margin: 0px;
}
.modal-dialog .modal-content .modal-body .contain p {
  color: var(--dark-color);
  font-size: 15px;
  font-weight: 500;
  margin-top: 20px;
}

.fixed-icons {
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 99;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 25px;
}
.fixed-icons .fixed-icon {
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  animation: pulse-shadow 4s linear infinite alternate;
}
.fixed-icons .fixed-icon.primary-color {
  background-color: var(--primary-color);
}
.fixed-icons .fixed-icon.secondary-color {
  background-color: #2f4147;
}
.fixed-icons .fixed-icon img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.fixed-icons .fixed-icon:hover img {
  animation: fadeInLeft 0.4s linear;
}

.input-country-select-cust {
  border-radius: 0px 50px 50px 0px !important;
}

[dir=ltr] .input-country-select-cust {
  order: 2;
  direction: ltr;
}

[dir=rtl] .form-grouping-cust {
  position: relative;
}
[dir=rtl] .form-grouping-cust img {
  width: 16px;
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: calc(50% - 10px);
  right: 18px;
}

[dir=ltr] .form-grouping-cust img {
  display: none;
}

[dir=rtl] .form-grouping-cust .form-control {
  width: 100%;
  height: 100%;
  background-color: var(--light-color);
  -webkit-padding-start: 43px;
  padding-inline-start: 43px;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-color);
}

@media (max-width: 1100px) and (min-width: 1000px) {
  footer .contain.padding-contain {
    -webkit-padding-start: 13px;
            padding-inline-start: 13px;
  }
  .numbers .data-contain .box {
    padding: 0px;
  }
  header .contain {
    width: 75%;
  }
  .contact-us .contact-data .contact-info {
    padding: 37px 40px 30px;
  }
  .contact-us .contact-data .links {
    font-size: 17px;
  }
  .contact-us .contact-data .contact-info .contact .data .link {
    font-size: 17px !important;
  }
}
@media (max-width: 999px) {
  .navbar.scrolled .navbar-nav {
    top: 75px;
  }
  .navbar .brand-name img {
    width: 109px !important;
  }
  .navbar .hamburger {
    display: block !important;
  }
  .navbar .custom-btn {
    width: 123px !important;
  }
  .navbar .navbar-nav {
    width: 100%;
    position: absolute;
    top: 84px;
    right: -100%;
    height: 100vh;
    background-color: var(--light-color);
    flex-direction: column !important;
    justify-content: flex-start;
    padding: 40px 20px;
    z-index: 999;
    transition: all 0.3s linear;
  }
  .navbar .navbar-nav::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: url("../images/brand/ornament-rosette.png") center/contain no-repeat;
    bottom: 100px;
    left: 20px;
    z-index: -1;
    animation: spin 5s linear infinite;
    filter: var(--primary-filter);
    opacity: 0.15;
  }
  .navbar .navbar-nav .nav-item {
    -webkit-margin-end: 0px !important;
            margin-inline-end: 0px !important;
    padding: 10px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .navbar .navbar-nav .nav-item:last-child {
    border-bottom: 0px !important;
  }
  .navbar .navbar-nav .nav-item a {
    width: -moz-fit-content;
    width: fit-content;
  }
  .navbar .navbar-nav .socail-media {
    display: flex !important;
    margin-top: 20px;
  }
  .navbar .navbar-nav.active-nav {
    right: 0px !important;
  }
  html[dir=ltr] .navbar .navbar-nav {
    left: -100%;
    right: unset;
  }
  html[dir=ltr] .navbar .navbar-nav.active-nav {
    left: 0px;
    right: unset;
  }
  header .swiper-wrapper {
    padding-bottom: 90px;
  }
  header .contain {
    width: 100%;
  }
  header .contain h1 {
    font-size: 25px;
  }
  header .contain h1 span {
    font-size: 25px;
  }
  header .image-content {
    margin-top: 20px;
    height: 460px;
  }
  header .image-content .logo-contain {
    top: 87px;
  }
  .numbers .data-contain {
    padding: 30px 20px;
  }
  .numbers .data-contain .box {
    padding: 20px 0px;
  }
  .numbers .data-contain .box p,
  .numbers .data-contain .box span {
    font-size: 30px !important;
  }
  .numbers .data-contain .heading {
    margin-bottom: 30px;
  }
  .about {
    padding: 85px 0px 0px;
  }
  .about h1,
  .about span {
    font-size: 25px !important;
  }
  .plan {
    padding-top: 85px;
  }
  .plan .heading {
    padding: 30px 0px;
    margin-bottom: 40px;
  }
  .plan .box .image-content {
    height: 350px;
  }
  .why {
    padding: 85px 0px 0px;
  }
  .why .heading {
    margin-bottom: 30px;
  }
  .why .heading h1 {
    font-size: 25px;
  }
  .testimonials {
    padding-top: 85px;
  }
  .testimonials .heading {
    margin-bottom: 30px;
  }
  .testimonials .box {
    flex-direction: column;
    justify-content: center;
    padding: 20px 10px;
  }
  .testimonials .box .contain {
    width: 100%;
    margin-top: 20px;
  }
  .questions {
    padding: 85px 0px 0px;
  }
  .questions .heading {
    margin-bottom: 20px;
  }
  .questions .heading::after {
    display: none;
  }
  .questions .heading .head-contain {
    padding: 0px;
  }
  .questions .card .card-header .btn {
    font-size: 14px;
  }
  .questions .card .card-body {
    padding: 30px 10px;
  }
  .questions .card .card-body::after {
    background-size: 70% 70%;
  }
  .contact-us {
    margin-bottom: -313px !important;
    padding-top: 80px;
  }
  .contact-us .contact-data {
    border-radius: 30px;
  }
  .contact-us .contact-data .contact-form {
    padding: 40px 15px;
  }
  .contact-us .contact-data .contact-info {
    padding: 20px 15px;
  }
  .contact-us .contact-data .contact-info .link {
    font-size: 14px !important;
  }
  footer {
    padding-top: 350px !important;
  }
  footer .contain.padding-contain {
    padding: 0px;
  }
  footer .links {
    width: 100% !important;
  }
  footer h1 {
    margin-bottom: 20px;
  }
  footer .copyrights {
    margin-top: 25px;
    justify-content: center;
    align-items: center;
    align-content: center;
  }
  .modal-dialog.big-modal {
    min-width: 90% !important;
    margin: 0px;
  }
  .modal-dialog.big-modal .contain {
    padding: 60px 15px !important;
  }
}
@media (max-width: 600px) {
  header {
    padding-top: 70px;
  }
  header .swiper-wrapper {
    padding-bottom: 90px;
  }
  header .contain {
    width: 100%;
  }
  header .contain h1 {
    font-size: 25px;
  }
  header .contain h1 span {
    font-size: 25px;
  }
  header .image-content {
    margin-top: 20px;
    height: 460px;
  }
  header .image-content .logo-contain {
    top: 87px;
  }
  .order-mobile-1 {
    order: 1;
  }
  .order-mobile-0 {
    order: 0;
  }
  .numbers .data-contain {
    padding: 30px 20px;
  }
  .numbers .data-contain .box {
    padding: 20px 0px;
  }
  .numbers .data-contain .box p,
  .numbers .data-contain .box span {
    font-size: 30px !important;
  }
  .numbers .data-contain .border-contain {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    -webkit-border-end: 0px;
            border-inline-end: 0px;
    -webkit-border-start: 0px;
            border-inline-start: 0px;
  }
  .numbers .data-contain .heading {
    margin-bottom: 30px;
  }
  .about .image-content {
    height: 300px;
  }
  .about .image-content img {
    -o-object-position: center;
       object-position: center;
  }
  .img-soc-media {
    flex-direction: column !important;
    gap: 2rem;
  }
}
@media (max-width: 360px) {
  .country-select {
    width: 12rem;
  }
}/*# sourceMappingURL=style.css.map */
@media (max-width: 999px) {
  .plan .box .image-content { height: 360px; }
  .plan .box .contain h2 { font-size: 24px; }
  .plan .box .image-content .brand-badge img { width: 100px; }
}
@media (max-width: 575px) {
  .plan .heading .identity-mark img { max-width: 150px; height: 56px; }
  .plan .box { border-radius: 24px; padding: 10px 10px 0px; }
  .plan .box .image-content { height: 320px; border-radius: 18px; }
  .plan .box .contain { padding: 18px 14px 20px; }
  .plan .box .contain h2 { font-size: 21px; }
  .plan .box .image-content .brand-badge { top: 12px; left: 12px; padding: 7px 10px; }
  .plan .box .image-content .brand-badge img { width: 84px; }
}


/* 2.0.7 hero cleanup: the phone artwork now contains the approved logo. */
header#intro .app-button-contain,
header#intro .logo-contain {
  display: none !important;
}


/* 2.2.1 - official Dar Rawdah Al-Quran identity */
.navbar .contain > .brand-name {
  flex: 0 0 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.navbar .contain > .brand-name img {
  width: 58px !important;
  height: 76px !important;
  object-fit: contain !important;
}
.navbar.scrolled .contain > .brand-name img {
  width: 50px !important;
  height: 64px !important;
}
header#intro .image-content .logo-contain {
  display: none !important;
}
footer .contain .brand-name img {
  width: 185px !important;
  height: 185px !important;
  object-fit: contain !important;
}
.modal-dialog .modal-content .modal-body .contain .brand-name {
  width: 92px !important;
  height: 132px !important;
}
.modal-dialog .modal-content .modal-body .contain .brand-name img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}
@media (max-width: 999px) {
  .navbar .contain > .brand-name {
    flex-basis: 58px;
  }
  .navbar .contain > .brand-name img {
    width: 48px !important;
    height: 64px !important;
  }
}

/* 2.2.4 fallback — larger official logo and centered collapsed header. */
.navbar .contain > .brand-name img {
  width: auto !important;
  height: 118px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
}
.navbar.scrolled .contain > .brand-name img { height: 100px !important; }
@media (max-width: 999px) {
  .navbar .contain { position: relative !important; justify-content: center !important; min-height: 112px !important; }
  .navbar .contain > .brand-name { position: absolute !important; left: 50% !important; right: auto !important; top: 50% !important; transform: translate(-50%, -50%) !important; margin: 0 !important; z-index: 1002 !important; }
  .navbar .contain > .brand-name img,
  .navbar.scrolled .contain > .brand-name img { width: auto !important; height: 105px !important; max-width: none !important; max-height: none !important; }
  .navbar .contain > .hamburger { display: block !important; position: absolute !important; left: 18px !important; right: auto !important; top: 50% !important; width: 38px !important; height: 44px !important; margin: 0 !important; transform: translateY(-50%) !important; z-index: 1003 !important; }
  .navbar .contain > .hamburger.active { transform: translateY(-50%) rotate(45deg) !important; }
  .navbar .contain > .flex-data { display: none !important; }
  .navbar .navbar-nav { top: calc(100% + 7px) !important; height: calc(100vh - 100px) !important; }
}

/* 2.2.7 — phone-only hero artwork: remove decorative panels behind the device. */
header#intro .image-content {
  isolation: isolate;
}
header#intro .image-content::before {
  content: none !important;
  display: none !important;
}
header#intro .image-content .screen-img {
  position: relative;
  z-index: 2;
}

/* Rawdah 2.3.0 — journey/contact CTA tabs */
.custom-btn.rawdah-journey-nav {
  width: auto;
  min-width: 250px;
  padding: 0 22px;
}
.custom-btn.rawdah-journey-nav span {
  white-space: nowrap;
}
.rawdah-action-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.numbers .data-contain .box.rawdah-action-tabs {
  padding: 0 20px;
}
.rawdah-action-tab {
  min-width: 190px;
  min-height: 56px;
  padding: 12px 24px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 800;
  text-decoration: none !important;
  border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .10);
}
.rawdah-action-tab:hover {
  transform: translateY(-4px);
  text-decoration: none !important;
}
.rawdah-contact-tab {
  background: var(--light-color, #fff);
  color: var(--primary-color, #3b8c67) !important;
  border-color: rgba(255,255,255,.78);
}
.rawdah-register-tab {
  background: var(--secondary-color, #ffc258);
  color: #183b2c !important;
  border-color: var(--secondary-color, #ffc258);
}
.rawdah-action-tabs-inline {
  justify-content: flex-start;
  margin-top: 24px;
}
.rawdah-action-tabs-inline .rawdah-contact-tab {
  border-color: var(--primary-color, #3b8c67);
}
.rawdah-action-tabs-footer {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.rawdah-action-tabs-footer .rawdah-action-tab {
  width: 220px;
  min-width: 0;
}
@media (max-width: 991px) {
  .custom-btn.rawdah-journey-nav {
    min-width: 0;
    width: auto;
    padding: 0 16px;
  }
  .custom-btn.rawdah-journey-nav span {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .rawdah-action-tabs,
  .rawdah-action-tabs-inline,
  .rawdah-action-tabs-footer {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .rawdah-action-tab,
  .rawdah-action-tabs-footer .rawdah-action-tab {
    width: 100%;
    min-width: 0;
  }
  .numbers .data-contain .box.rawdah-action-tabs {
    padding: 0 12px;
  }
}


/* Rawdah 2.3.8 — perfectly center the email card between phone and location. */
.contact-us .contact-data .contact-info > .row {
  align-items: center;
}
.contact-us .contact-data .contact-info a[href^="mailto:"].contact {
  justify-content: center;
  gap: 14px;
  text-align: center;
}
.contact-us .contact-data .contact-info a[href^="mailto:"].contact .image-content {
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  margin: 0;
}
.contact-us .contact-data .contact-info a[href^="mailto:"].contact .data {
  width: auto;
  min-width: 0;
  text-align: center;
}
.contact-us .contact-data .contact-info a[href^="mailto:"].contact .data h2 {
  text-align: center;
  margin-bottom: 8px;
}
.contact-us .contact-data .contact-info a[href^="mailto:"] .data .link {
  font-size: 16px !important;
  line-height: 1.45;
  text-align: center;
  margin: 0;
}
@media (max-width: 999px) {
  .contact-us .contact-data .contact-info a[href^="mailto:"] .data .link {
    font-size: 15px !important;
  }
}
@media (max-width: 575px) {
  .contact-us .contact-data .contact-info a[href^="mailto:"].contact {
    justify-content: center;
  }
  .contact-us .contact-data .contact-info a[href^="mailto:"] .data .link {
    font-size: 14px !important;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}


/* v2.3.12 testimonial/logo refinements */
.testimonials .box .image-content {
  background: #fff;
  border: 2px solid rgba(216, 170, 62, .9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials .box .image-content img.rawdah-testimonial-avatar-logo {
  width: 100%; height: 100%; object-fit: contain; object-position: center; border-radius: 0;
}
footer .copyrights img.rawdah-mg-logo {
  display: block; width: 54px; height: 35px; margin-inline-start: 10px; object-fit: contain;
  border: 0; border-radius: 0; background: transparent; transition: transform .25s ease, filter .25s ease;
}
footer .copyrights .rawdah-mg-credit:hover img.rawdah-mg-logo {
  transform: translateY(-2px) scale(1.04); filter: drop-shadow(0 5px 9px rgba(0,0,0,.18));
}


/* v2.3.14 — requested MOBILE-ONLY alignment fixes */
@media only screen and (max-width: 767.98px) {
  /* FAQ heading: icon exactly centered, then title immediately below it. */
  #questions .rawdah-faq-mobile-heading,
  #questions .rawdah-faq-mobile-heading .head-contain {
    width: 100% !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }
  #questions .rawdah-faq-mobile-heading .image-content {
    flex: 0 0 auto !important;
    margin: 0 auto 12px !important;
    align-self: center !important;
  }
  #questions .rawdah-faq-mobile-heading h1 {
    width: 100% !important;
    margin: 0 0 14px !important;
    padding: 0 !important;
    text-align: center !important;
  }
  #questions .rawdah-faq-mobile-heading p {
    width: 100% !important;
    max-width: 370px !important;
    margin: 0 auto !important;
    padding: 0 8px !important;
    text-align: center !important;
  }

  /* Email card: envelope centered above the email title/address. */
  #contact .rawdah-mobile-email {
    width: 100% !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    margin: 0 auto !important;
    text-align: center !important;
  }
  #contact .rawdah-mobile-email .image-content {
    flex: 0 0 75px !important;
    width: 75px !important;
    height: 75px !important;
    margin: 0 auto !important;
    align-self: center !important;
  }
  #contact .rawdah-mobile-email .data {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
  }
  #contact .rawdah-mobile-email .data h2,
  #contact .rawdah-mobile-email .data .link {
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
  #contact .rawdah-mobile-email .data h2 {
    margin-top: 0 !important;
    margin-bottom: 6px !important;
  }
  #contact .rawdah-mobile-email .data .link {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  /* Main Dar Rawdah footer logo: centered and only slightly larger on phones. */
  footer.rawdah-home-footer .rawdah-home-footer-brand {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    text-align: center !important;
  }
  footer.rawdah-home-footer .rawdah-home-footer-brand img {
    display: block !important;
    width: 150px !important;
    height: 185px !important;
    max-width: 150px !important;
    max-height: 185px !important;
    margin: 0 auto !important;
    object-fit: contain !important;
  }
}


/* v2.3.15 — logo sizing refinement + mobile email alignment fix */
body.rawdah-original-source-home header .image-content .logo-contain {
  width: 156px !important;
  height: 192px !important;
  margin-left: -78px !important;
  top: 90px !important;
  padding: 16px !important;
}
body.rawdah-original-source-home header .image-content .logo-contain img {
  width: 112px !important;
  height: 154px !important;
  max-width: 100% !important;
  object-fit: contain !important;
}
body.rawdah-original-source-home footer.rawdah-home-footer .rawdah-home-footer-brand img,
body.rawdah-original-source-home footer.rawdah-footer-original .contain .brand-name img {
  width: 168px !important;
  max-width: 168px !important;
  height: auto !important;
}

@media only screen and (max-width: 767.98px) {
  body.rawdah-original-source-home header .image-content .logo-contain {
    width: 122px !important;
    height: 154px !important;
    margin-left: -61px !important;
    top: 96px !important;
    padding: 13px !important;
  }
  body.rawdah-original-source-home header .image-content .logo-contain img {
    width: 88px !important;
    height: 126px !important;
  }

  body.rawdah-original-source-home #contact .rawdah-mobile-email {
    width: 100% !important;
    height: auto !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 15px !important;
    margin: 0 !important;
    text-align: right !important;
  }
  body.rawdah-original-source-home #contact .rawdah-mobile-email .image-content {
    flex: 0 0 60px !important;
    width: 60px !important;
    height: 60px !important;
    margin: 0 !important;
    align-self: auto !important;
  }
  body.rawdah-original-source-home #contact .rawdah-mobile-email .data {
    flex: 1 1 auto !important;
    width: calc(100% - 75px) !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: right !important;
  }
  body.rawdah-original-source-home #contact .rawdah-mobile-email .data h2,
  body.rawdah-original-source-home #contact .rawdah-mobile-email .data .link {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: right !important;
  }
  body.rawdah-original-source-home #contact .rawdah-mobile-email .data h2 {
    margin-top: 0 !important;
    margin-bottom: 6px !important;
  }
  body.rawdah-original-source-home #contact .rawdah-mobile-email .data .link {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
  }

  body.rawdah-original-source-home footer.rawdah-home-footer .rawdah-home-footer-brand img,
  body.rawdah-original-source-home footer.rawdah-footer-original .contain .brand-name img {
    width: 160px !important;
    max-width: 160px !important;
    max-height: 198px !important;
    height: auto !important;
  }
}


/* v2.3.16 — cleanup fixed icon / metricool removal support / country list visibility */
body.rawdah-original-source-home .fixed-icons .secondary-color {
  display: none !important;
}

body.rawdah-original-source-home .form-data,
body.rawdah-original-source-home .form-grouping-cust,
body.rawdah-original-source-home .country-select {
  overflow: visible !important;
}
body.rawdah-original-source-home .country-select {
  min-width: 140px !important;
}
body.rawdah-original-source-home .country-select .country-list {
  z-index: 99999 !important;
  max-height: 280px !important;
  overflow-y: auto !important;
}

@media only screen and (max-width: 767.98px) {
  body.rawdah-original-source-home #contact .contact-info .image-content,
  body.rawdah-original-source-home #contact .rawdah-mobile-email .image-content {
    flex: 0 0 60px !important;
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
  }
}


/* v2.3.17 — reliable mobile country-code dropdown */
body.rawdah-original-source-home #contact .form-grouping-cust {
  position: relative !important;
  overflow: visible !important;
  z-index: 30 !important;
}
body.rawdah-original-source-home #contact .country-select {
  position: relative !important;
  display: flex !important;
  flex: 0 0 145px !important;
  width: 145px !important;
  min-width: 145px !important;
  overflow: visible !important;
  z-index: 40 !important;
}
body.rawdah-original-source-home #contact .country-select .flag-dropdown {
  z-index: 60 !important;
}
body.rawdah-original-source-home #contact .country-select .country-list {
  z-index: 999999 !important;
  width: 285px !important;
  max-width: min(285px, 88vw) !important;
  max-height: 300px !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  background: #fff !important;
  color: #183f3d !important;
  box-shadow: 0 14px 35px rgba(0,0,0,.22) !important;
}
body.rawdah-original-source-home #contact .country-select .country-list .country {
  min-height: 36px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}
@media only screen and (max-width: 767.98px) {
  body.rawdah-original-source-home #contact .country-select {
    flex-basis: 132px !important;
    width: 132px !important;
    min-width: 132px !important;
  }
  body.rawdah-original-source-home #contact .country-select .country-list {
    position: absolute !important;
    left: 0 !important;
    right: auto !important;
    width: 280px !important;
    max-width: calc(100vw - 34px) !important;
  }
  body.rawdah-original-source-home #contact .contact-info .image-content,
  body.rawdah-original-source-home #contact .rawdah-mobile-email .image-content {
    flex: 0 0 60px !important;
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
  }
}


/* v2.3.18 — full-theme country picker + mobile contact icon finalization */
body.rawdah-original-source-home #contact .form-grouping-cust,
body.rawdah-original-source-home #contact .form-data {
  overflow: visible !important;
}
body.rawdah-original-source-home #contact .country-select {
  position: relative !important;
  overflow: visible !important;
  z-index: 100 !important;
}
body.rawdah-original-source-home #contact .country-select .flag-dropdown {
  z-index: 120 !important;
}
body.rawdah-original-source-home #contact .country-select .country-list {
  z-index: 1000000 !important;
  width: 300px !important;
  max-width: calc(100vw - 32px) !important;
  max-height: 320px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  background: #fff !important;
  color: #173f3d !important;
  direction: ltr !important;
}
body.rawdah-original-source-home #contact .country-select .country-list .country {
  min-height: 38px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}
@media only screen and (max-width: 767.98px) {
  body.rawdah-original-source-home #contact .contact-info .contact .image-content,
  body.rawdah-original-source-home #contact .rawdah-mobile-email .image-content {
    flex: 0 0 60px !important;
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
  }
  body.rawdah-original-source-home #contact .country-select {
    flex: 0 0 132px !important;
    width: 132px !important;
    min-width: 132px !important;
  }
  body.rawdah-original-source-home #contact .country-select .country-list {
    left: 0 !important;
    right: auto !important;
  }
}


/* v2.3.19 — requested contact email sizing/alignment + country-code UX */
body.rawdah-original-source-home #contact .country-select,
body.rawdah-original-source-home #contact .country-select * {
  box-sizing: border-box;
}
body.rawdah-original-source-home #contact .country-select {
  cursor: pointer !important;
}
body.rawdah-original-source-home #contact .country-select.inside #country-input,
body.rawdah-original-source-home #contact #country-input {
  cursor: pointer !important;
  text-align: center !important;
  direction: ltr !important;
  font-weight: 800 !important;
  padding-right: 10px !important;
  padding-left: 48px !important;
  user-select: none !important;
}
body.rawdah-original-source-home #contact .country-select .selected-flag {
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
}
body.rawdah-original-source-home #contact .country-select .country-list .country-name {
  direction: ltr !important;
  unicode-bidi: plaintext !important;
  white-space: nowrap !important;
}

@media only screen and (min-width: 768px) {
  body.rawdah-original-source-home #contact .rawdah-mobile-email .image-content {
    position: relative !important;
    right: 10px !important;
  }
}

@media only screen and (max-width: 767.98px) {
  body.rawdah-original-source-home #contact .rawdah-mobile-email .image-content {
    flex: 0 0 68px !important;
    width: 68px !important;
    height: 68px !important;
    min-width: 68px !important;
    min-height: 68px !important;
  }
  body.rawdah-original-source-home #contact .rawdah-mobile-email .image-content img {
    width: 36px !important;
    height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    object-fit: contain !important;
  }
  body.rawdah-original-source-home #contact .rawdah-mobile-email .data {
    width: calc(100% - 83px) !important;
  }
  body.rawdah-original-source-home #contact .country-select {
    flex: 0 0 128px !important;
    width: 128px !important;
    min-width: 128px !important;
  }
  body.rawdah-original-source-home #contact .country-select .country-list {
    width: 300px !important;
    max-width: calc(100vw - 32px) !important;
  }
}


/* v2.3.20 — reliable country-code tap target */
body.rawdah-original-source-home #contact .country-select #country-input {
  position: relative !important;
  z-index: 2 !important;
  pointer-events: auto !important;
  touch-action: manipulation !important;
}
body.rawdah-original-source-home #contact .country-select .flag-dropdown {
  pointer-events: auto !important;
}
body.rawdah-original-source-home #contact .country-select .country-list:not(.hide) {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* v2.3.22 — larger animated Islamic rosette behind the hero phone only. */
body.rawdah-original-source-home header#intro .image-content {
  isolation: isolate;
  overflow: visible;
}
body.rawdah-original-source-home header#intro .image-content::before {
  content: "" !important;
  display: block !important;
  position: absolute;
  width: min(132%, 560px);
  height: min(132%, 560px);
  top: 50%;
  left: 50%;
  z-index: 0;
  pointer-events: none;
  background: url("../images/brand/ornament-rosette.png") center / contain no-repeat;
  filter: var(--primary-filter);
  opacity: 0.14;
  transform-origin: center center;
  transform: translate(-50%, -50%) rotate(0deg) scale(1.02);
  animation: rawdahHeroRosetteSpin 14s linear infinite;
  will-change: transform, opacity;
}
body.rawdah-original-source-home header#intro .image-content .screen-img,
body.rawdah-original-source-home header#intro .image-content .logo-contain {
  position: relative;
  z-index: 2;
}
@keyframes rawdahHeroRosetteSpin {
  0%   { transform: translate(-50%, -50%) rotate(0deg) scale(1.02); opacity: 0.12; }
  50%  { transform: translate(-50%, -50%) rotate(180deg) scale(1.08); opacity: 0.16; }
  100% { transform: translate(-50%, -50%) rotate(360deg) scale(1.02); opacity: 0.12; }
}
@media only screen and (max-width: 991.98px) {
  body.rawdah-original-source-home header#intro .image-content::before {
    width: min(126%, 470px);
    height: min(126%, 470px);
    opacity: 0.13;
    animation-duration: 16s;
  }
}
@media only screen and (max-width: 767.98px) {
  body.rawdah-original-source-home header#intro .image-content::before {
    width: min(138%, 400px);
    height: min(138%, 400px);
    opacity: 0.115;
    animation-duration: 18s;
  }
}
@media (prefers-reduced-motion: reduce) {
  body.rawdah-original-source-home header#intro .image-content::before {
    animation: none;
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.12;
  }
}
