@font-face {
  font-family: "DinNext";
  src: url("../fonts/DinNext/ArbFONTS-DINNextLTArabic-Medium-2.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "DinNext";
  src: url("../fonts/DinNext/ArbFONTS-DINNextLTArabic-Regular-2.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "DinNext";
  src: url("../fonts/DinNext/ArbFONTS-DINNextLTArabic-Bold-4.ttf");
  font-weight: 900;
}
* {
  margin: 0px;
  box-sizing: border-box;
  font-family: "DinNext", sans-serif;
  scroll-behavior: smooth;
}
*::-moz-selection {
  background-color: var(--primary-color);
  color: #fff;
}
*::selection {
  background-color: var(--primary-color);
  color: #fff;
}
*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track {
  background-color: #ccc;
}
*::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 8px;
}
*::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

.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-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(99, 188, 184, 0.5);
  border-radius: 2px;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background-color: var(--primary-color);
}

input[type=date] {
  padding-right: 8px !important;
}

input[type=date] {
  padding-left: 10px !important;
}

input[type=date]::-webkit-calendar-picker-indicator {
  background: url("../images/contact/date.svg") center/contain no-repeat;
  border: 0px;
  filter: var(--light-filter);
  width: 15px;
  height: 15px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@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, 102, 0, 0), 0 0 0 20px rgba(255, 102, 0, 0);
  }
}
@keyframes spinner {
  0% {
    transform: scale3d(1, 1, 1);
  }
  100% {
    transform: scale(1.4);
  }
}
@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 moving {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: -10000px;
  }
}
:root {
  --primary-color: #141414;
  --secondary-color: #5482c1;
  --dark-color: #000;
  --light-color: #fff;
  --gray-color: #808080;
  --primary-filter: invert(0%) sepia(44%) saturate(5451%) hue-rotate(36deg)
    brightness(106%) contrast(84%);
  --secondary-filter: invert(48%) sepia(9%) saturate(2495%) hue-rotate(175deg)
    brightness(100%) contrast(94%);
  --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%);
}

body {
  background-color: var(--primary-color);
}

.custom-btn {
  width: 160px;
  height: 50px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 50px;
  position: relative;
  z-index: 9;
  overflow: hidden;
  transition: all 0.3s linear;
  gap: 10px;
}
.custom-btn img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.custom-btn.light-btn {
  border: 1px solid var(--light-color);
  background-color: var(--light-color);
}
.custom-btn.light-btn span {
  color: var(--primary-color);
}
.custom-btn.light-btn img {
  filter: var(--primary-filter);
}
.custom-btn.light-btn:hover {
  background-color: #202020;
  border-color: var(--light-color);
}
.custom-btn.light-btn:hover span {
  color: var(--light-color);
}
.custom-btn.light-btn:hover img {
  filter: var(--light-filter);
}
.custom-btn.dark-btn {
  background-color: #202020;
  border: 1px solid #2b2b2b;
}
.custom-btn.dark-btn span {
  color: var(--light-color);
}
.custom-btn.dark-btn img {
  filter: var(--light-filter);
}
.custom-btn.dark-btn:hover {
  border: 1px solid var(--dark-color);
  background-color: var(--light-color);
}
.custom-btn.dark-btn:hover span {
  color: var(--primary-color);
}
.custom-btn.dark-btn:hover img {
  filter: var(--primary-filter);
}

.general-section {
  width: 100%;
  padding: 100px 0px;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
@media (max-width: 992px) {
  .general-section {
    padding: 40px 0px;
  }
}

.navbar {
  width: 100%;
  padding: 20px 0px;
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.3s linear;
  z-index: 999;
}
.navbar.scrolled {
  padding: 10px 0px;
  background-color: var(--primary-color);
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.05);
}
@media (max-width: 992px) {
  .navbar.scrolled .navbar-nav {
    top: 69px !important;
  }
}
.navbar .contain {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.navbar .contain .hamburger {
  display: none;
}
@media (max-width: 992px) {
  .navbar .contain .hamburger {
    display: block;
  }
}
.navbar .contain .hamburger .line {
  width: 30px;
  height: 3px;
  background: var(--light-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 .brand-img {
  width: 170px;
  height: 52px;
  -o-object-fit: contain;
     object-fit: contain;
}
.navbar .contain .navbar-nav {
  flex-direction: row;
  gap: 10px;
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav {
    width: 100%;
    height: 100vh;
    top: 92px;
    right: -100%;
    position: absolute;
    background-color: var(--primary-color);
    flex-direction: column;
    gap: 0px;
    padding: 20px 10px;
    transition: all 0.3s linear;
    justify-content: flex-start;
  }
  .navbar .contain .navbar-nav.active-nav {
    right: 0px;
  }
  html[dir=ltr] .navbar .contain .navbar-nav.active-nav {
    left: 0px;
    right: unset;
  }
  html[dir=ltr] .navbar .contain .navbar-nav {
    right: unset;
    left: -100%;
  }
}
.navbar .contain .navbar-nav .nav-item {
  padding: 0px;
  margin: 0px;
}
.navbar .contain .navbar-nav .nav-item.mobile-only {
  display: none;
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav .nav-item.mobile-only {
    display: flex;
  }
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav .nav-item {
    width: 100%;
    padding: 15px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .navbar .contain .navbar-nav .nav-item:first-child {
    padding-top: 0px;
  }
  .navbar .contain .navbar-nav .nav-item:last-child {
    padding-bottom: 0px;
    border-bottom: 0px;
  }
}
.navbar .contain .navbar-nav .nav-item .nav-link {
  padding: 5px 16px;
  color: #e5e7e7;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  z-index: 9;
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav .nav-item .nav-link {
    padding: 0px;
  }
}
.navbar .contain .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--light-color);
  bottom: 0;
  left: 0;
  z-index: -1;
  transform: scaleX(0);
  transition: all 0.3s linear;
}
@media (max-width: 992px) {
  .navbar .contain .navbar-nav .nav-item .nav-link::after {
    display: none;
  }
}
.navbar .contain .navbar-nav .nav-item .nav-link:hover::after, .navbar .contain .navbar-nav .nav-item .nav-link.active::after {
  transform: scaleX(1);
}
.navbar .contain .button-contain {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 992px) {
  .navbar .contain .button-contain.mobile-hidden {
    display: none;
  }
}
.navbar .contain .button-contain .lang {
  width: 100px;
  height: 50px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  background-color: #202020;
  border-radius: 50px;
  overflow: hidden;
}
.navbar .contain .button-contain .lang span {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--light-color);
  font-size: 15px;
  font-weight: 700;
}
.navbar .contain .button-contain .lang span.active {
  background-color: var(--light-color);
  color: var(--dark-color);
}

header {
  width: 100%;
  position: relative;
  z-index: 9;
  padding: 260px 0px 150px;
  background: url("../images/intro/intro.svg") top center/cover no-repeat;
  overflow: hidden;
}
@media (max-width: 992px) {
  header {
    padding: 150px 0px 0px;
  }
}
header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/intro/global.svg") top center/contain no-repeat;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.1;
  animation: spinner 50s linear infinite;
}
header #particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  top: 0;
  left: 0;
}
header .contain {
  width: 100%;
  text-align: center;
}
header .contain h1 {
  font-size: 60px;
  font-weight: 900;
  color: var(--light-color);
  margin: 0px;
  line-height: 100px;
}
@media (max-width: 992px) {
  header .contain h1 {
    font-size: 20px;
    line-height: unset;
  }
}
header .contain p {
  color: #e5e7e7;
  font-size: 20px;
  font-weight: 500;
  margin: 50px 0px;
}
@media (max-width: 992px) {
  header .contain p {
    font-size: 15px;
    margin: 20px 0px;
  }
}
header .contain .button-contain {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 992px) {
  header .contain .button-contain .custom-btn {
    width: calc(50% - 20px);
  }
}

.sub-header {
  width: 100%;
  padding: 160px 0px 50px;
  position: relative;
  z-index: 9;
  background: url("../images/support/support_pattern.svg") top center/cover no-repeat;
}
.sub-header .contain {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.sub-header .contain h1 {
  font-size: 50px;
  font-weight: 900;
  color: var(--light-color);
  margin-bottom: 40px;
}
.sub-header .contain p {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0px;
  opacity: 0.76;
}
.sub-header .contain .form-search .form-icon {
  width: 100%;
  height: 50px;
  position: relative;
  z-index: 9;
}
.sub-header .contain .form-search .form-icon img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: calc(50% - 12px);
  left: 16px;
  z-index: -1;
}
html[dir=rtl] .sub-header .contain .form-search .form-icon img {
  left: unset;
  right: 16px;
}
.sub-header .contain .form-search .form-icon .form-control {
  width: 100%;
  height: 100%;
  border-radius: 50px;
  padding-inline-start: 50px;
  border: 1px solid var(--light-color);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--light-color);
}
.sub-header .contain .form-search .form-icon .form-control::-moz-placeholder {
  color: #c6c6c6;
  font-size: 15px;
  font-weight: 500;
}
.sub-header .contain .form-search .form-icon .form-control::placeholder {
  color: #c6c6c6;
  font-size: 15px;
  font-weight: 500;
}

.support {
  background: url("../images/support/support_pattern.svg") top center/cover no-repeat;
}
.support #particles-js-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  top: 0;
  left: 0;
}
.support .contain {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.support .contain h1 {
  font-size: 36px;
  font-weight: 900;
  color: var(--light-color);
  line-height: 40px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .support .contain h1 {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: unset;
  }
}
.support .contain p {
  color: #e5e7e7;
  font-weight: 500;
  font-size: 15px;
  margin: 0px;
}
.support .box {
  width: 100%;
  padding: 16px 16px 40px;
  border: 1px solid rgba(253, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  position: relative;
  z-index: 9;
  transition: all 0.3s linear;
}
.support .box.padding-bottom-data {
  padding-bottom: 20px;
}
.support .box img {
  width: 44px;
  height: 44px;
  -o-object-fit: contain;
     object-fit: contain;
}
.support .box h2 {
  color: var(--light-color);
  font-size: 20px;
  font-weight: 700;
  margin: 14px 0px;
}
.support .box p {
  color: #e5e7e7;
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
}
.support .box .button-contain {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}
.support .box .button-contain .custom-btn {
  width: calc(50% - 5px);
}
.support .box .button-contain .custom-btn span {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  font-size: 18px;
}
.support .box .count {
  font-size: 20px;
  font-weight: 500;
  color: #a4a4a4;
  position: absolute;
  bottom: 15px;
  right: 15px;
}
.support .box:hover {
  transform: translateY(-10px);
  background-color: transparent;
}

.support-projects::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/support/support_pattern.svg") top center/cover no-repeat;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scaleY(-1);
}
.support-projects .contain {
  width: 100%;
  text-align: center;
}
.support-projects .contain h1 {
  font-size: 36px;
  font-weight: 900;
  color: var(--light-color);
  line-height: 40px;
}
@media (max-width: 992px) {
  .support-projects .contain h1 {
    font-size: 20px;
    line-height: unset;
  }
}
.support-projects .contain p {
  color: #e5e7e7;
  font-weight: 500;
  font-size: 15px;
  margin: 40px 0px;
}
@media (max-width: 992px) {
  .support-projects .contain p {
    margin: 20px 0px;
  }
}
.support-projects .contain img {
  width: 100%;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: all 0.3s linear;
}
.support-projects .contain img.service-img {
  height: 140px;
}
@media (max-width: 992px) {
  .support-projects .contain img.service-img {
    height: 100px;
  }
}
.support-projects .contain img:hover {
  transform: scale(0.95);
}
.support-projects .button-contain {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
}

.news .contain {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.news .contain h1 {
  font-size: 36px;
  font-weight: 900;
  color: var(--light-color);
  line-height: 40px;
}
@media (max-width: 992px) {
  .news .contain h1 {
    font-size: 20px;
    line-height: unset;
  }
}
.news .contain p {
  color: #e5e7e7;
  font-weight: 500;
  font-size: 15px;
  margin: 30px 0px;
}
@media (max-width: 992px) {
  .news .contain p {
    margin: 15px 0px;
  }
}
.news .swiper-wrapper {
  padding: 20px 0px 80px;
}
@media (max-width: 992px) {
  .news .swiper-wrapper {
    padding-bottom: 50px;
  }
}
.news .swiper-pagination-bullet {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  color: var(--light-color);
  opacity: 1;
  background: rgba(253, 255, 255, 0.1);
}
@media (max-width: 992px) {
  .news .swiper-pagination-bullet {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}
.news .swiper-pagination-bullet-active {
  color: var(--primary-color);
  background: var(--light-color) !important;
}
.news .blogs-box {
  width: 100%;
  height: 380px;
  position: relative;
  z-index: 9;
  overflow: hidden;
  border-radius: 20px;
  transition: all 0.3s linear;
  display: flex;
  justify-content: center;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 15px;
}
@media (max-width: 992px) {
  .news .blogs-box {
    height: 250px;
  }
}
.news .blogs-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.news .blogs-box .data h2 {
  font-size: 20px;
  font-weight: 900;
  color: var(--light-color);
  margin-bottom: 10px;
}
.news .blogs-box .data p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
}
.news .blogs-box:hover {
  transform: translateY(-10px);
}

footer {
  width: 100%;
  padding: 50px 0px 10px;
  background-color: #202020;
  position: relative;
  z-index: 9;
}
footer::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/footer/footer.svg") center/contain repeat-x;
  top: 0;
  left: 0;
  z-index: -1;
  animation: moving 200s linear infinite alternate;
}
@media (min-width: 992px) {
  footer .contain.padding-shape {
    padding-inline-start: 100px;
  }
}
footer .contain .brand-name img {
  width: 170px;
  height: 52px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .contain p {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
  margin: 20px 0px;
}
@media (max-width: 992px) {
  footer .contain p {
    margin: 15px 0px;
  }
}
footer .contain .social-media {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}
footer .contain .social-media li a {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  transition: all 0.3s linear;
}
footer .contain .social-media li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .contain .social-media li a:hover {
  transform: scale(0.9);
}
footer .contain h2 {
  font-size: 18px;
  font-weight: 700;
  color: #e5e7e7;
  margin-bottom: 20px;
}
footer .contain .links {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
footer .contain .links li a {
  font-size: 15px;
  font-weight: 500;
  color: var(--light-color);
  transition: all 0.3s linear;
}
footer .contain .links li a:hover {
  padding-inline-start: 15px;
}
footer .copyrights {
  width: 100%;
  margin-top: 40px;
  padding-top: 10px;
  border-top: 1px solid #303030;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
footer .copyrights ul {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}
footer .copyrights ul li img {
  width: 80px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.signin {
  width: 100%;
  min-height: 100vh;
  background: url("../images/singin/singin.svg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  z-index: 9;
  padding: 40px 0px;
}
.signin.no-background .buttons-data-contain {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  justify-content: space-between;
}
.signin.no-background .buttons-data-contain .btn-auth-shape {
  width: 200px;
  height: 68px;
  display: flex;
  align-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .signin.no-background .buttons-data-contain .btn-auth-shape {
    width: 140px;
    height: 50px;
  }
}
.signin.no-background .buttons-data-contain .btn-auth-shape img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.signin.no-background .buttons-data-contain .arrow {
  font-size: 15px;
  font-weight: 500;
  color: var(--light-color);
}
.signin.no-background .buttons-data-contain .custom-btn {
  width: calc(50% - 10px);
  margin: 0px !important;
}
.signin.no-background .form-contain {
  margin-top: 40px;
  padding: 40px 25px !important;
}
.signin.no-background .center-contain {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  align-content: center;
}
@media (max-width: 992px) {
  .signin.no-background .center-contain {
    gap: 20px;
  }
}
.signin.no-background .center-contain .icon {
  width: 160px;
  height: 160px;
  background-color: rgba(253, 255, 255, 0.05);
  border-radius: 50%;
}
.signin.no-background .center-contain .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.signin.no-background .center-contain p {
  color: var(--light-color);
  font-size: 24px;
  font-weight: 500;
  margin: 0px;
}
@media (max-width: 992px) {
  .signin.no-background .center-contain p {
    font-size: 18px;
  }
}
.signin::-webkit-scrollbar-track {
  background-color: transparent;
}
.signin .must-data {
  text-align: start;
  width: 100%;
}
.signin .must-data h3 {
  font-size: 20px;
  font-weight: 500;
  color: #f01e29;
  margin-bottom: 12px;
}
.signin .must-data ul {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 0px;
}
.signin .must-data ul li {
  font-size: 16px;
  font-weight: 500;
  color: #fdffff;
}
.signin .back-btn {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 16px;
  justify-content: flex-start !important;
  width: 100%;
  margin-bottom: 32px;
}
.signin .back-btn img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.signin .back-btn span {
  font-size: 16px;
  font-weight: 500;
  color: var(--light-color);
}
.signin .contain {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  align-content: center;
  text-align: center;
  width: 100%;
}
.signin .contain .brand-name img {
  width: 193px;
  height: 60px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 32px;
}
.signin .contain .form-contain {
  width: 100%;
  padding: 25px 40px;
  border-radius: 32px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(253, 255, 255, 0.1);
}
@media (max-width: 992px) {
  .signin .contain .form-contain {
    padding: 15px 10px;
  }
}
.signin .contain .form-contain .form-group {
  margin-bottom: 16px;
}
.signin .contain .form-contain .form-group label {
  margin-bottom: 5px !important;
  padding-inline-start: 5px;
}
.signin .contain .form-contain .form-group .form-icon .form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(253, 255, 255, 0.1);
}
.signin .contain h2 {
  color: var(--light-color);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 28px;
}
@media (max-width: 992px) {
  .signin .contain h2 {
    margin-bottom: 15px;
  }
}
.signin .contain p {
  color: var(--light-color);
  font-size: 20px;
  font-weight: 500;
  margin: 0px 0px 20px;
}
@media (max-width: 992px) {
  .signin .contain p {
    margin: 0px 0px 15px;
  }
}
.signin .contain .custom-btn {
  width: 100%;
  margin: 15px 0px 15px;
}
.signin .contain .buttons-contain {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
.signin .contain .buttons-contain .btn-shape {
  width: calc(33.3333333333% - 10px);
  height: 60px;
  display: flex;
  align-content: center;
  align-items: center;
  margin-bottom: 24px;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(253, 255, 255, 0.1);
  border-radius: 60px;
  padding: 10px;
  transition: all 0.3s linear;
}
@media (max-width: 992px) {
  .signin .contain .buttons-contain .btn-shape {
    flex-direction: column;
    height: -moz-fit-content;
    height: fit-content;
    padding: 10px;
    border-radius: 10px;
    gap: 0px;
  }
}
.signin .contain .buttons-contain .btn-shape img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.signin .contain .buttons-contain .btn-shape span {
  color: var(--light-color);
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 992px) {
  .signin .contain .buttons-contain .btn-shape span {
    font-size: 15px;
  }
}
.signin .contain .buttons-contain .btn-shape:hover {
  background-color: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(253, 255, 255, 0.3);
}
.signin .contain .link-data {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 2px;
  color: #e5e7e7;
  font-size: 16px;
  font-weight: 500;
}
.signin .contain .link-data span {
  font-size: 16px;
  font-weight: 700;
  color: var(--light-color);
}

.question .heading {
  width: 100%;
  margin-bottom: 40px;
}
.question .heading h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--light-color);
  margin: 0px;
}
.question .card {
  border: 0px;
  padding: 0px;
  margin-bottom: 20px;
  outline: none;
  background-color: #202020;
  border-radius: 12px;
}
.question .card .card-header {
  width: 100%;
  padding: 0px;
  margin-bottom: 0px;
  border: 0px;
  background-color: transparent;
}
.question .card .card-header .btn {
  width: 100%;
  padding: 12px;
  background-color: transparent;
  position: relative;
  border-radius: 0px;
  z-index: 9;
  border: 1px solid #2b2b2b;
  color: var(--light-color);
  font-size: 18px;
  font-weight: 700;
  text-align: start;
}
.question .card .card-header .btn::after {
  content: "+";
  position: absolute;
  font-size: 20px;
  font-weight: 900;
  top: 50%;
  right: 20px;
  z-index: -1;
  transform: translateY(-50%);
  transition: all 0.3s linear;
}
html[dir=rtl] .question .card .card-header .btn::after {
  left: 20px;
  right: unset;
}
.question .card .card-header .btn[aria-expanded=true]::after {
  content: "-";
}
.question .card .card-body {
  padding: 10px 15px;
}
.question .card .card-body p {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
}

.pagination-list {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.pagination-list li {
  font-size: 15px;
  font-weight: 500;
  color: var(--light-color);
}
.pagination-list li a {
  width: 50px;
  height: 50px;
  background-color: rgba(253, 255, 255, 0.05);
  border: 1px solid rgba(253, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  color: var(--light-color);
}
.pagination-list li a.active, .pagination-list li a:hover {
  background-color: var(--light-color);
  color: var(--primary-color);
}

.single-blog .image-contain {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}
.single-blog .image-contain.large-img {
  height: 400px;
}
.single-blog .image-contain.small-img {
  height: 140px;
}
.single-blog .image-contain img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-blog .contain h1,
.single-blog .contain p {
  color: var(--light-color);
}
.single-blog .contain h1 {
  font-weight: 900;
  color: var(--light-color);
  margin-bottom: 20px;
}
.single-blog .contain p {
  font-size: 15px;
  font-weight: 500;
}

.tickets .heading {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  width: 100%;
}
.tickets .heading img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.tickets .heading h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--light-color);
  margin: 0px;
}
.tickets .flex-data {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 10px;
  border-bottom: 1px solid #2b2b2b;
  margin-bottom: 40px;
}
.tickets .flex-data .nav {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  border: 0px;
  padding: 0px;
  margin: 0px;
}
.tickets .flex-data .nav .nav-item {
  padding: 0px;
  margin: 0px;
  border: 0px;
}
.tickets .flex-data .nav .nav-item .nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--light-color);
  display: flex;
  align-content: center;
  align-items: center;
  gap: 5px;
  border: 0px;
}
.tickets .flex-data .nav .nav-item .nav-link .badge {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  padding: 0px;
  display: flex;
  align-content: center;
  align-items: center;
}
.tickets .flex-data .nav .nav-item .nav-link .badge.dark {
  background-color: #303030;
}
.tickets .flex-data .nav .nav-item .nav-link .badge.white {
  background-color: var(--light-color);
}
.tickets .flex-data .nav .nav-item .nav-link .badge.green {
  background-color: #f01e29;
}
.tickets .flex-data .nav .nav-item .nav-link .badge.blue {
  background-color: #006a95;
}
.tickets .flex-data .nav .nav-item .nav-link.active {
  background-color: transparent;
}
.tickets .flex-data .custom-btn {
  width: 200px;
}
.tickets .box {
  width: 100%;
  padding: 16px;
  background-color: #202020;
  border-radius: 16px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  transition: all 0.3s linear;
  border-inline-start: 3px solid;
}
.tickets .box.Processing {
  border-color: var(--light-color);
}
.tickets .box.Answered {
  border-color: #f01e29;
}
.tickets .box.Closed {
  border-color: #006a95;
}
.tickets .box .data {
  width: calc(100% - 250px);
}
@media (max-width: 992px) {
  .tickets .box .data {
    width: 100%;
  }
}
.tickets .box .data h2 {
  color: var(--light-color);
  font-size: 20px;
  margin-bottom: 10px;
}
.tickets .box .data p {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
  opacity: 0.75;
  margin: 0px;
}
.tickets .box:hover {
  transform: translateY(-10px);
}

.form-contain .form-group {
  width: 100%;
  margin-bottom: 20px;
}
.form-contain .form-group label {
  font-size: 16px;
  font-weight: 500;
  color: var(--light-color);
  display: block;
  margin-bottom: 12px;
}
.form-contain .form-group label .red {
  color: #e22900;
}
.form-contain .form-group .form-icon,
.form-contain .form-group .show_hide_password {
  width: 100%;
  height: 50px;
  position: relative;
  z-index: 9;
}
.form-contain .form-group .form-icon.no-padding .form-control,
.form-contain .form-group .show_hide_password.no-padding .form-control {
  padding-inline-start: 15px !important;
}
.form-contain .form-group .form-icon .number,
.form-contain .form-group .show_hide_password .number {
  font-size: 15px;
  font-weight: 500;
  color: var(--light-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  z-index: 9;
}
.form-contain .form-group .form-icon .show-pass,
.form-contain .form-group .show_hide_password .show-pass {
  width: 24px;
  height: 24px;
  position: absolute;
  top: calc(50% - 12px);
  right: 15px;
  z-index: 9;
  cursor: pointer;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
html[dir=rtl] .form-contain .form-group .form-icon .show-pass,
html[dir=rtl] .form-contain .form-group .show_hide_password .show-pass {
  right: unset;
  left: 15px !important;
}
.form-contain .form-group .form-icon .show-pass.active .icon,
.form-contain .form-group .show_hide_password .show-pass.active .icon {
  display: none;
}
.form-contain .form-group .form-icon .show-pass.active .slash-icon,
.form-contain .form-group .show_hide_password .show-pass.active .slash-icon {
  display: block;
}
.form-contain .form-group .form-icon .show-pass img,
.form-contain .form-group .show_hide_password .show-pass img {
  width: 100%;
  height: 100%;
  filter: var(--light-filter);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  position: relative;
  top: unset !important;
  left: unset !important;
  right: unset !important;
}
.form-contain .form-group .form-icon .show-pass img.icon,
.form-contain .form-group .show_hide_password .show-pass img.icon {
  display: block;
}
.form-contain .form-group .form-icon .show-pass img.slash-icon,
.form-contain .form-group .show_hide_password .show-pass img.slash-icon {
  display: none;
}
.form-contain .form-group .form-icon.form-phone,
.form-contain .form-group .show_hide_password.form-phone {
  z-index: 99;
}
.form-contain .form-group .form-icon.form-phone li,
.form-contain .form-group .show_hide_password.form-phone li {
  color: var(--dark-color) !important;
}
.form-contain .form-group .form-icon.text-area,
.form-contain .form-group .show_hide_password.text-area {
  height: 100px;
}
.form-contain .form-group .form-icon.text-area img,
.form-contain .form-group .form-icon.text-area .icon,
.form-contain .form-group .show_hide_password.text-area img,
.form-contain .form-group .show_hide_password.text-area .icon {
  top: 16px;
}
.form-contain .form-group .form-icon.text-area .form-control,
.form-contain .form-group .show_hide_password.text-area .form-control {
  padding-top: 16px;
  resize: none;
}
.form-contain .form-group .form-icon.select-data::after,
.form-contain .form-group .show_hide_password.select-data::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("../images/icons/down_arrow.svg") center/contain no-repeat;
  top: calc(50% - 12px);
  right: 16px;
  filter: var(--light-filter);
  z-index: 2;
  pointer-events: none;
  transition: all 0.2s linear;
}
html[dir=rtl] .form-contain .form-group .form-icon.select-data::after,
html[dir=rtl] .form-contain .form-group .show_hide_password.select-data::after {
  left: 16px;
  right: unset;
}
.form-contain .form-group .form-icon.select-data:hover::after,
.form-contain .form-group .show_hide_password.select-data:hover::after {
  transform: rotate(180deg);
}
.form-contain .form-group .form-icon.select-data .form-control,
.form-contain .form-group .show_hide_password.select-data .form-control {
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  color: #7f7f7f;
}
.form-contain .form-group .form-icon .icon,
.form-contain .form-group .show_hide_password .icon {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: calc(50% - 12px);
  left: 16px;
  z-index: 2;
  filter: var(--light-filter);
  pointer-events: none;
}
html[dir=rtl] .form-contain .form-group .form-icon .icon,
html[dir=rtl] .form-contain .form-group .show_hide_password .icon {
  left: unset;
  right: 16px;
}
.form-contain .form-group .form-icon .data,
.form-contain .form-group .show_hide_password .data {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 12px);
  left: 12px;
  color: var(--primary-color);
  z-index: 9;
  pointer-events: none;
}
.form-contain .form-group .form-icon.full-round .form-control,
.form-contain .form-group .show_hide_password.full-round .form-control {
  border-radius: 100px;
}
.form-contain .form-group .form-icon .select2-container--default .select2-selection--single,
.form-contain .form-group .form-icon .form-control,
.form-contain .form-group .form-icon #Specialization,
.form-contain .form-group .form-icon .iti.iti--allow-dropdown,
.form-contain .form-group .show_hide_password .select2-container--default .select2-selection--single,
.form-contain .form-group .show_hide_password .form-control,
.form-contain .form-group .show_hide_password #Specialization,
.form-contain .form-group .show_hide_password .iti.iti--allow-dropdown {
  width: 100%;
  height: 100%;
  border: 1px solid #e5e7e7;
  position: relative;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding-inline-start: 50px;
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
}
.form-contain .form-group .form-icon .select2-container--default .select2-selection--single::-moz-placeholder, .form-contain .form-group .form-icon .form-control::-moz-placeholder, .form-contain .form-group .form-icon #Specialization::-moz-placeholder, .form-contain .form-group .form-icon .iti.iti--allow-dropdown::-moz-placeholder, .form-contain .form-group .show_hide_password .select2-container--default .select2-selection--single::-moz-placeholder, .form-contain .form-group .show_hide_password .form-control::-moz-placeholder, .form-contain .form-group .show_hide_password #Specialization::-moz-placeholder, .form-contain .form-group .show_hide_password .iti.iti--allow-dropdown::-moz-placeholder {
  color: #f7f7f7;
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
}
.form-contain .form-group .form-icon .select2-container--default .select2-selection--single::placeholder,
.form-contain .form-group .form-icon .form-control::placeholder,
.form-contain .form-group .form-icon #Specialization::placeholder,
.form-contain .form-group .form-icon .iti.iti--allow-dropdown::placeholder,
.form-contain .form-group .show_hide_password .select2-container--default .select2-selection--single::placeholder,
.form-contain .form-group .show_hide_password .form-control::placeholder,
.form-contain .form-group .show_hide_password #Specialization::placeholder,
.form-contain .form-group .show_hide_password .iti.iti--allow-dropdown::placeholder {
  color: #f7f7f7;
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
}
.form-contain .form-group .form-icon .select2-container--default .select2-selection--single:hover,
.form-contain .form-group .form-icon .form-control:hover,
.form-contain .form-group .form-icon #Specialization:hover,
.form-contain .form-group .form-icon .iti.iti--allow-dropdown:hover,
.form-contain .form-group .show_hide_password .select2-container--default .select2-selection--single:hover,
.form-contain .form-group .show_hide_password .form-control:hover,
.form-contain .form-group .show_hide_password #Specialization:hover,
.form-contain .form-group .show_hide_password .iti.iti--allow-dropdown:hover {
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
}
.form-contain .form-group .form-icon:hover .form-control,
.form-contain .form-group .show_hide_password:hover .form-control {
  border-color: var(--light-color) !important;
}
.form-contain .form-group .icon-contain {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 5px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 20px);
  left: 8px;
  z-index: 99;
}
.form-contain .form-group .icon-contain img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  top: unset;
  left: unset;
  filter: var(--light-filter);
}
.form-contain .flex-data {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  margin: 10px 0px 0px;
}
.form-contain .data-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-color);
}
@media (max-width: 992px) {
  .form-contain .data-link {
    font-size: 12px;
  }
}
.form-contain .data-link span {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 900;
  text-decoration: underline;
}
@media (max-width: 992px) {
  .form-contain .data-link span {
    font-size: 12px;
  }
}
.form-contain .data-link.center-data {
  display: block;
  text-align: center;
  margin: 24px 0px 0px;
}
.form-contain .wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  gap: 10px;
}
.form-contain .wrapper .radio-check {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--light-color) !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 9;
}
.form-contain .wrapper .radio-check.radio-circle {
  border-radius: 50%;
}
.form-contain .wrapper .radio-check.radio-circle::before {
  background: var(--light-color);
  border-radius: 50%;
}
.form-contain .wrapper .radio-check.radio-circle::after {
  background-color: var(--light-color);
}
.form-contain .wrapper .radio-check::after, .form-contain .wrapper .radio-check::before {
  content: "";
  position: absolute;
  transition: all 0.2s linear;
}
.form-contain .wrapper .radio-check::before {
  background: url("../images/icons/check.svg") center/contain no-repeat;
  transform: scale(0);
  filter: var(--dark-color);
  z-index: -1;
  width: 14px;
  height: 14px;
  top: calc(50% - 7px);
  left: calc(50% - 7px);
}
.form-contain .wrapper .radio-check::after {
  width: 100%;
  height: 0px;
  background-color: var(--light-color);
  top: 0;
  left: 0;
  z-index: -2;
}
.form-contain .wrapper .radio-check:checked {
  border-color: var(--primary-color) !important;
}
.form-contain .wrapper .radio-check:checked::before {
  transform: scale(1);
}
.form-contain .wrapper .radio-check:checked::after {
  height: 100%;
}
.form-contain .wrapper .radio-title {
  color: var(--light-color);
  width: calc(100% - 30px);
  display: flex;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 0px !important;
}
.form-contain .wrapper .radio-title .link {
  color: var(--light-color);
  font-size: 16px;
  font-weight: 700;
}
.form-contain .profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: relative;
  background-color: var(--light-color);
  border: 1px solid #e5e7e7;
  background-size: cover !important;
  background-position: top !important;
  background-repeat: no-repeat !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.form-contain .profile-avatar.box-avatar {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  border-color: rgba(255, 255, 255, 0.1);
  background-color: transparent;
}
@media (max-width: 992px) {
  .form-contain .profile-avatar.box-avatar {
    height: 180px;
  }
}
.form-contain .profile-avatar.box-avatar .custom-btn {
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 90%;
}
@media (max-width: 992px) {
  .form-contain .profile-avatar {
    width: 100px;
    height: 100px;
  }
}
.form-contain .profile-avatar .edit-btn {
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 9;
  width: 40px;
  height: 40px;
  display: flex;
  align-content: center;
  align-items: center;
}
.form-contain .profile-avatar .edit-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.form-contain .profile-avatar .custom-btn {
  width: 250px;
  margin: 0px;
  pointer-events: none;
}
.form-contain .profile-avatar input {
  position: absolute;
  bottom: 0;
  left: 0%;
  background-color: #fff;
  border-radius: 0px;
  display: inline-block;
  color: #222;
  width: 100%;
  height: 100%;
  line-height: 50px;
  cursor: pointer;
  border: none;
  opacity: 0;
  z-index: 9;
}
.form-contain .profile-avatar button {
  width: 100%;
  height: 100%;
  background-color: transparent;
  color: #fff;
  border-radius: 0px;
  text-align: center;
  cursor: pointer !important;
  border: 1px solid var(--secondary-color);
  position: absolute;
  right: 0px;
  bottom: 0px;
  cursor: pointer;
}
.form-contain .profile-avatar button img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: var(--primary-color);
}
.form-contain .data-desc {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.form-contain .data-desc p {
  font-size: 12px;
  font-weight: 500;
  color: var(--gary-color);
  margin: 0px;
  text-align: center;
}
.form-contain .data-desc img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: var(--primary-filter);
}
.form-contain .error {
  display: flex;
  align-items: center;
  align-content: center;
  margin-top: 5px !important;
  position: relative;
  z-index: 9;
  padding-inline-start: 40px;
  color: var(--danger-color);
  font-size: 16px;
  font-weight: 500;
}
.form-contain .error::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("../images/icons/error.svg") center/contain no-repeat;
  top: calc(50% - 12px);
  left: 0;
  z-index: -1;
}
html[dir=rtl] .form-contain .error::after {
  right: 0px;
  left: unset;
}
.form-contain .custom-btn {
  margin-top: 20px;
}
@media (max-width: 992px) {
  .form-contain .custom-btn {
    margin-top: 20px !important;
  }
}
.form-contain .custom-btn.system-name {
  margin: 0px !important;
}
@media (max-width: 992px) {
  .form-contain .custom-btn.system-name span {
    font-size: 10px;
  }
}
.form-contain .code_input .code-container input {
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 0px;
  margin: 5px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(5, 33, 128, 0.5);
}
@media (max-width: 992px) {
  .form-contain .code_input .code-container input {
    width: 40px;
    height: 40px;
  }
}
.form-contain strong {
  margin-inline-start: 10px;
  color: var(--primary-color);
}
.form-contain .underline {
  color: var(--primary-color);
  text-decoration: underline;
}

.profile {
  background-color: var(--dark-color);
}
.profile .user-data {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}
.profile .user-data h2 {
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--light-color);
}
.profile .user-data p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
}
.profile .button-data-contain {
  width: 100%;
  padding: 20px;
  background-color: #202020;
  border-radius: 60px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 992px) {
  .profile .button-data-contain {
    padding: 10px 8px;
    justify-content: space-around;
  }
}
.profile .button-data-contain .close-data {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 5px;
}
.profile .button-data-contain .close-data img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.profile .button-data-contain .close-data span {
  font-size: 15px;
  font-weight: 500;
  color: #e22900;
}
.profile .button-data-contain .close-data.verfied span {
  color: #f01e29;
}
.profile .button-data-contain .custom-btn {
  width: 180px;
  margin: 0px !important;
}
.profile .button-contain {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin-top: 20px;
}
.profile .button-contain img {
  filter: none !important;
}
.profile .button-contain span {
  color: #e22900;
}
.profile .heading h1 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 30px;
  color: var(--light-color);
}
.profile .heading p {
  color: var(--light-color);
  font-size: 20px;
  font-weight: 500;
  margin: 0px 0px 20px;
}
.profile .form-control {
  background-color: rgba(253, 255, 255, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.profile .save-btn {
  margin-inline-start: auto;
}
.profile .arrow-buttons {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
}
.profile .arrow-buttons a {
  width: 100%;
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  position: relative;
  z-index: 9;
  border-bottom: 1px solid rgba(253, 255, 255, 0.2);
}
.profile .arrow-buttons a::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("../images/icons/left-arrow.svg") center/contain no-repeat;
  top: calc(50% - 12px);
  right: 0;
  filter: var(--light-filter);
}
.profile .arrow-buttons a .icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.profile .arrow-buttons a .icon img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: var(--light-filter);
}
.profile .arrow-buttons a span {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
}
.profile .arrow-buttons a:last-child::after {
  filter: invert(21%) sepia(78%) saturate(6781%) hue-rotate(20deg) brightness(101%) contrast(104%);
}
.profile .arrow-buttons a:last-child .icon {
  background-color: rgba(226, 41, 0, 0.1);
}
.profile .arrow-buttons a:last-child .icon img {
  filter: none;
}

.chat-data .chat-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  border-radius: 20px;
  padding: 20px 15px;
  background-color: #121212;
  color: #ffffff;
  font-family: Arial, sans-serif;
}
@media (max-width: 992px) {
  .chat-data .chat-container {
    padding: 15px 10px;
    border-radius: 10px;
    height: 85vh;
  }
}
.chat-data .chat-container .chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #2b2b2b;
  border-radius: 50px;
  border-bottom: 1px solid #333;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 992px) {
  .chat-data .chat-container .chat-header {
    padding: 10px 5px;
    border-radius: 10px;
  }
}
.chat-data .chat-container .chat-header .chat-title h2 {
  font-size: 18px;
  margin: 0;
}
.chat-data .chat-container .chat-header .chat-title span {
  font-size: 14px;
  color: #888;
}
.chat-data .chat-container .chat-header .custom-btn {
  width: 260px;
}
.chat-data .chat-container .chat-status {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin: 20px 0px;
}
.chat-data .chat-container .chat-status span {
  margin: 0 5px;
  font-size: 14px;
  color: #888;
}
.chat-data .chat-container .chat-status span:first-child {
  color: #4caf50; /* Green dot */
}
.chat-data .chat-container .chat-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}
@media (max-width: 992px) {
  .chat-data .chat-container .chat-body {
    padding: 15px 10px;
  }
}
.chat-data .chat-container .chat-body .message {
  max-width: 70%;
  padding: 10px 15px;
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 15px;
}
@media (max-width: 992px) {
  .chat-data .chat-container .chat-body .message {
    max-width: 90%;
    padding: 10px 5px;
  }
}
.chat-data .chat-container .chat-body .message.message-received {
  background-color: rgba(159, 232, 112, 0.1);
  align-self: flex-start;
  margin-left: auto;
}
.chat-data .chat-container .chat-body .message.message-sent {
  background-color: #444;
  align-self: flex-end;
}
.chat-data .chat-container .chat-footer {
  display: flex;
  align-items: center;
  padding: 20px 15px 0px;
  justify-content: space-between;
  border-top: 1px solid #333;
  gap: 10px;
}
@media (max-width: 992px) {
  .chat-data .chat-container .chat-footer {
    padding: 15px 0px 0px;
  }
}
.chat-data .chat-container .chat-footer .flex-data {
  width: calc(100% - 50px);
  position: relative;
}
.chat-data .chat-container .chat-footer .flex-data .attach-btn {
  position: absolute;
  bottom: 5px;
  right: 0px;
  width: 100px;
  height: 40px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .chat-data .chat-container .chat-footer .flex-data .attach-btn {
    width: 40px;
  }
  .chat-data .chat-container .chat-footer .flex-data .attach-btn span {
    display: none;
  }
}
.chat-data .chat-container .chat-footer .chat-input {
  flex: 1;
  padding: 10px 15px;
  height: 50px;
  border-radius: 50px;
  background-color: #222;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  margin-right: 10px;
  width: 100%;
}
.chat-data .chat-container .chat-footer .attach-btn,
.chat-data .chat-container .chat-footer .send-btn {
  background-color: #444;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}
.chat-data .chat-container .chat-footer .attach-btn:hover,
.chat-data .chat-container .chat-footer .send-btn:hover {
  background-color: #555;
}
.chat-data .chat-container .chat-footer .send-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--light-color);
}
.chat-data .chat-container .chat-footer .send-btn img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.chat-data .chat-container .chat-footer .attach-btn {
  width: 120px !important;
  margin-right: 10px;
}
.chat-data .flex-buttons-data {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.chat-data .flex-buttons-data .heading-data {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}
.chat-data .flex-buttons-data .heading-data img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.chat-data .flex-buttons-data .heading-data h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--light-color);
  margin: 0px;
}
.chat-data .flex-buttons-data .custom-btn {
  width: 200px;
}
.chat-data .form-contain {
  width: 100%;
  padding: 30px 15px;
  background-color: #141414;
  border-radius: 20px;
}
.chat-data .text-area {
  height: 400px !important;
}
.chat-data .text-area .form-control {
  border-radius: 15px !important;
}

.verify-email {
  width: 100%;
  padding: 30px 0px;
}
.verify-email .container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.verify-email .container .brand-name {
  width: 248px;
  height: 60px;
  margin: 0px auto 20px;
  display: flex;
  align-content: center;
  align-items: center;
}
.verify-email .container .brand-name img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.verify-email .container .box {
  width: 100%;
  padding: 40px;
  position: relative;
  z-index: 9;
  border-radius: 32px;
  background-color: rgba(253, 255, 255, 0.05);
  border: 1px solid rgba(253, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: start;
}
@media (max-width: 992px) {
  .verify-email .container .box {
    padding: 30px 15px;
    border-radius: 20px;
  }
}
.verify-email .container .box .email-img {
  width: 160px;
  height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0px auto 28px;
}
.verify-email .container .box h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--light-color);
  margin-bottom: 0px;
}
.verify-email .container .box p {
  color: #fdffff;
  font-size: 16px;
  font-weight: 500;
  margin: 24px 0px -3px;
}
.verify-email .container .box p .flex-email {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  margin-top: -4px;
}
.verify-email .container .box p .flex-email span {
  font-size: 15px;
  font-weight: 500;
  color: #fdffff !important;
}
.verify-email .container .box p .flex-email .edit {
  width: 24px;
  height: 24px;
  display: flex;
  align-content: center;
  align-items: center;
}
.verify-email .container .box p .flex-email .edit img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.verify-email .container .box .name {
  font-size: 15px;
  font-weight: 500;
  color: #fdffff !important;
}
.verify-email .container .box .otp-container {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
  margin: 24px 0px;
}
.verify-email .container .box .otp-container .custom-btn {
  margin: 0px;
  width: 100px;
}
.verify-email .container .box .data-contain {
  font-size: 14px;
  font-weight: 500;
  color: #fdffff;
  display: block;
  margin-bottom: 20px;
}
.verify-email .container .box .data-contain b {
  color: var(--light-color);
}
.verify-email .container .box .custom-btn {
  margin-inline-start: 10px;
  margin-top: 0px !important;
}
.verify-email .container .box .otp-input {
  width: 40px;
  height: 48px;
  text-align: center;
  font-size: 1.5rem;
  background-color: rgba(253, 255, 255, 0.05);
  border: 1px solid rgba(253, 255, 255, 0.1);
  border-radius: 200px;
  outline: none;
  color: var(--light-color);
}
.verify-email .container .box .otp-input:focus {
  border-color: var(--primary-color);
}
.verify-email .container .box .btn-dark {
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 1.2rem;
}
.verify-email .container .box .resend-text {
  color: var(--light-color);
  font-size: 14px;
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}
.verify-email .container .box #resend-code {
  color: #f01e29;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}
.verify-email .container .box #resend-code:hover {
  text-decoration: underline;
}
.verify-email .container .box .countdown-container {
  position: relative;
}
.verify-email .container .box .countdown-container .progress-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: conic-gradient(#f01e29 0deg, #f01e29 0deg, #fff 0deg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  color: #f01e29;
  position: relative;
}
.verify-email .container .box .countdown-container .progress-circle::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  background: white;
  border-radius: 50%;
}
.verify-email .container .box .countdown-container .countdown-number {
  position: absolute;
  font-size: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  color: #f01e29;
}

.modal {
  width: 100%;
}
.modal .modal-content {
  background-color: var(--dark-color);
  border: 1px solid rgba(253, 255, 255, 0.1) !important;
  border-radius: 20px;
}
.modal .modal-content .modal-header {
  padding: 15px 10px 0px;
  border: 0px !important;
}
.modal .modal-content .modal-header h5 {
  color: var(--light-color);
  font-size: 20px;
  font-weight: 700;
  margin: 0px;
}
.modal .modal-content .modal-header .close {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: transparent;
}
.modal .modal-content .modal-header .close img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.modal .modal-content .modal-body {
  padding: 14px 10px;
}
.modal .modal-content .modal-body .form-control {
  border: 1px solid rgba(253, 255, 255, 0.05);
}
.modal .modal-content .modal-body .custom-btn {
  width: 100%;
}
.modal .contain {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  text-align: center;
  align-items: center;
  align-content: center;
  padding: 20px 15px;
}
@media (max-width: 992px) {
  .modal .contain {
    gap: 20px;
    padding: 0px;
  }
}
.modal .contain p {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 700;
  margin: 0px;
}
.modal .contain .icon {
  width: 200px;
  height: 200px;
  background-color: rgba(226, 41, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .modal .contain .icon {
    width: 100px;
    height: 100px;
  }
}
.modal .contain .icon img {
  width: 50%;
  height: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}
.modal .contain .button-contain {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
.modal .contain .button-contain .custom-btn {
  width: calc(50% - 5px);
}
.modal .contain .button-contain .custom-btn.dark-btn span {
  color: #e22900;
}
.modal .contain .button-contain .custom-btn.dark-btn:hover {
  background-color: #e22900;
}
.modal .contain .button-contain .custom-btn.dark-btn:hover span {
  color: var(--light-color);
}

.iti__arrow {
  width: 12px;
  height: 12px;
  border: 0px;
  background: url("../images/contact/down_arrow.svg") center/contain no-repeat;
  filter: var(--light-filter);
}

#telephone,
#telephone2 {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 0px;
  padding: 0px;
  padding-inline-end: 10px;
  margin-inline-end: 8px;
  color: var(--light-color);
  direction: ltr;
}
#telephone::-moz-placeholder, #telephone2::-moz-placeholder {
  color: var(--light-color);
  opacity: 0.7;
}
#telephone::placeholder,
#telephone2::placeholder {
  color: var(--light-color);
  opacity: 0.7;
}

.iti.iti--allow-dropdown {
  padding-left: 75px !important;
}

[dir=rtl] .iti--allow-dropdown .iti__country-container,
[dir=rtl] .iti--show-selected-dial-code .iti__country-container {
  left: 0px !important;
  right: unset;
}

@media (max-width: 999px) {
  .order-mobile-0 {
    order: 0;
  }
  .order-mobile-1 {
    order: 1;
  }
}/*# sourceMappingURL=style.css.map */