@font-face {
  font-family: "Bahij_TheSansArabic";
  src: url("../fonts/Bahij_TheSansArabic-Plain.ttf") format("truetype");
}

@font-face {
  font-family: "DMSans-Regular";
  src: url("../fonts/DMSans-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Bahij_TheSansArabic-Bold";
  src: url("../fonts/Bahij_TheSansArabic-Bold.ttf") format("truetype");
}

*,
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Bahij_TheSansArabic";
}

:root {
  --main-color: #4A2D7B;
  --main-color-dark: #3C2464;
  --main-color-light: #614887;
  --light-color: #EDE2FF;
  --yellow-color: #CAAF3E;
  --black-gray: #575757;
  --green-color: #6FB858;
  --light-color: #F9F6E9;
  --paragraph: #484848;
  --light-gray: #F2F2F2;
  --petrol-color: #0E2A46;
  --danger-color: #E31A1A
}

/* Scrollbar width */
::-webkit-scrollbar {
  width: 10px;
  background: transparent;
}

/* Scrollbar track (background) */
::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

/* Scrollbar corner (bottom-right where scrollbars meet) */
::-webkit-scrollbar-corner {
  background: transparent;
}

/* Scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
  background-color: rgb(67, 67, 69);
  border-radius: 10px;
  border: 0;
}

/* Scrollbar thumb on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: #0056b3;
}

.bg-light {
  background: rgba(242, 242, 242, 0.50) !important;

}

.rounded-16 {
  border-radius: 16px;
}

/* Global Classes */
.logo {
  height: 60px;
  width: 163px
}

.not-fixed {
  position: relative !important;
  background-color: var(--main-color) !important
}

.navbar {
  height: 100px;
  display: flex;
  padding: 24px 48px 30px 48px;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  position: fixed;
  background: transparent
}

.red-star {
  color: red
}

.lang-dropdown {
  border-radius: 4px !important;
  background: #FFF !important;
  min-width: 150%;
  right: 0%;
  top: calc(100%) !important;
  z-index: -1;
}

.lang-dropdown a {
  padding: 16px 16px !important;
  color: var(--main-color) !important;
  transition: all .2s ease-in-out
}

.lang-dropdown li:last-child {
  border-top: 1px solid var(--main-color)
}

.lang-login-line {
  width: 2px;
  background-color: #FFF;
  height: 40px
}

.lang-dropdown a:hover {
  background-color: var(--light-gray) !important;
  color: var(--main-color) !important
}

header .navbar-expand-md .navbar-nav {
  gap: 16px;
}

header .navbar-expand-md .navbar-nav a:not(.lang-link) {
  padding-right: 0 !important;
  padding-left: 0 !important;
  font-size: 16px !important;
}

.nav-btn-container {
  gap: 8px;
}

.navbar-brand img {
  height: 40px;
}

.nav-link:hover {
  color: #FFF !important
}

.nav-link {
  position: relative;
  padding: 8px 16px;
  color: var(--bs-nav-link-color);
  transition: color 0.25s ease;
}


@media(min-width:1024px) {
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #FFF;
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-link:not(.login-btn):hover::after {
    width: calc(100% - 20px);
  }
}

nav .dropdown-toggle::after {
  display: none;
}

.reset-btn,
.select2-search__field {
  border: 0;
  outline: 0
}

input:disabled,
button:disabled,
.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #bbbbbb !important;
  color: #999 !important;
  border: 0 !important
}

.select2-container--disabled .select2-selection--single .select2-selection__rendered {
  color: #999 !important
}

.select2-container--default.select2-container--disabled+.icon i {
  color: #999 !important
}

.breadcrumb {
  align-items: center !important
}

.breadcrumb-container .container-fluid,
.breadcrumb-container nav {
  display: flex;
  align-items: center
}

.breadcrumb-container ol {
  margin: 0 !important
}

.breadcrumb-item+.breadcrumb-item {
  display: flex;
  align-items: center
}

.breadcrumb i {
  font-size: 12px;
}

.breadcrumb-item+.breadcrumb-item::before {
  display: none !important
}

.mt-3em {
  margin-top: 3em
}

.search-wrapper {
  position: relative;
}

.search-wrapper .form-control {
  padding-right: 43px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;

  border-radius: 14px;
  border: 1px solid #E8E8E8;
  background: var(--White, #FFF);
  height: 42px;
}

.search-wrapper .form-control:focus {
  box-shadow: 0 0 0 3px rgba(55, 138, 221, 0.15);
  outline: none !important;

}

.search-wrapper .form-control::placeholder {
  overflow: hidden;
  color: #B0B0B0;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Bahij_TheSansArabic";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16.8px;
  /* 140% */
}

.search-wrapper .search-icon {
  position: absolute;
  top: 50%;
  right: 0.875rem;
  transform: translateY(-50%);
  color: #adb5bd;
  pointer-events: none;
  transition: color 0.2s ease;
  font-size: 14px;
}

.search-wrapper:focus-within .search-icon {
  color: #378ADD;
}

.bg-light-gray {
  background-color: #F9F9F9 !important;
  border-radius: 8px;
}

.border-gray {
  border: 1px solid #e9e9e9;
}

.mt-24 {
  margin-top: 24px;
}

/* Start OTP */
.otp-wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 300px;
  margin: 0 auto;
}

.otp-wrapper .otp-input {
  width: 45px;
  height: 45px;
  font-size: 1.5rem;
  text-align: center;
  transition: border-color 0.2s;

  border-radius: 5px;
  border: 1px solid #E7E7E7;
  background: #FFF;
}

.otp-wrapper .otp-input:focus {
  outline: none;
  border-color: #6d6e71;
}

.otp-wrapper .otp-input.is-invalid {
  border-color: #e80303;
}

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px
}

.pb-100 {
  padding-bottom: 100px
}

.mt-80 {
  margin-top: 80px
}

button:disabled {
  background: #B8B8B8 !important;
  color: #FFF !important
}

.otp-message {
  text-align: center;
  font-size: 1rem !important;
  margin-top: 10px;
  margin-inline: auto;
}

/* End OTP */

.breadcrumb-container {
  height: 60px;
  display: flex;
  padding: 18px 0 18px 0px;
  top: 100px;
  width: 100%;
  right: 0;
  z-index: 800;
  position: fixed;
  background: var(--purple-primary-0, #F7EBF8);
}

.breadcrumb-container nav {
  width: 100%;
  background-color: transparent;
}

.breadcrumb-container a {
  text-decoration: none;
  color: #484848;
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  font-family: Inter;
  line-height: normal;
}

.breadcrumb-container .active {
  color: var(--paragraph, #484848);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: bold !important;
  line-height: 31px;
  /* 193.75% */
}

.ui-widget.ui-widget-content {
  z-index: 500 !important;
}

.flex-1 {
  flex: 1
}

.top-23 {
  top: 23px !important
}

.gap-8 {
  gap: 8px;
}

.gap-15 {
  gap: 15px;
}

.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

.gap-32 {
  gap: 32px;
}

.my-32 {
  margin: 32px 0
}

.mt-24 {
  margin-top: 24px;
}

.mt-27 {
  margin-top: 27px
}

.mt-32 {
  margin-top: 32px
}

.mt-16 {
  margin-top: 16px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-12em {
  margin-top: 12em
}

.pt-7em {
  padding-top: 7em
}

.mt-7em {
  margin-top: 7em
}



.mb-2em {
  margin-bottom: 2em
}

.g-padding {
  padding: 118px 0
}

.g-title {
  color: var(--Black, #000);
  text-align: right;
  font-family: "Bahij_TheSansArabic";
  font-size: 42px;
  font-style: normal;
  font-weight: 500;
  line-height: 50px;
  position: relative;
  display: inline;
  /* 119.048% */
}

.pt-50 {
  padding-top: 50px;
}

.ps-90 {
  padding-right: 90px !important;
}

.g-title::after {
  content: '';
  position: absolute;
  right: -60%;
  top: 0;
  bottom: 0;
  width: 115%;
  height: 100%;
  background: #CCC49C;
  z-index: -1;
}

.min-92-ov::after {
  width: 90%;
}

.g-slogan {
  color: var(--main-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.5px;

}


.with-left-50.g-title::after {
  left: -50% !important;
  top: 50% !important
}

.with-white.g-title::after {
  background-image: url(../images/vectors/Vector\ 6.svg)
}

.g-title.scale::after {
  top: calc(100% - 20px) !important;
  transform: scale(1.3) !important;
}

.input-group label,
.shared-label {
  line-height: 1;
  width: auto !important;

  color: var(--Black, #000);
  font-family: "Bahij_TheSansArabic";
  font-size: 16px;
  font-weight: 500;
}

.input-group input[type="text"],
.input-group input[type="email"],
.input-group input[type="password"],
.input-group input[type="number"],
.input-group select,
.input-group textarea {
  height: 50px;
  padding: 8px 12px;
  border-radius: 5px !important;
  border: 1px solid var(--Borders, #EAEAEA);
  width: 100%;
  margin-top: 8px !important;

}

input.bg-gray,
textarea.bg-gray {
  border: 1px solid #EFE8E1;
  background: var(--light-gray, #F9F9F9);
}

.w-90 {
  width: 90%;
}

/* Set the width of the Select2 container */
.select2-container {
  /*  width: 100% !important; */
  /* Matches the parent element's width */
}

/* Set the height of the Select2 input field */
.select2-selection--single {
  height: 50px !important;
  /* Adjust height */
  display: flex;
  align-items: center;
  /* Center the text vertically */
  padding: 0 10px;
  /* Add padding for better appearance */
  font-size: 16px;
  /* Adjust font size */
}

/* Adjust the dropdown width */
.select2-dropdown {}

/* Adjust the dropdown item's height */
.select2-results__option {
  padding: 10px;
  /* Adjust padding for item height */
  font-size: 14px;
  /* Adjust font size for dropdown items */
}

.select2-selection__rendered {
  height: 100%;
  display: flex !important;
  align-items: center;
}

.select2-selection__arrow {
  display: none
}

.select2-container {
  margin-top: 8px !important;
  width: 100% !important;
}

.phone-code .select2-container,
.phone div {
  margin-top: 0 !important
}

.phone-code .icon {
  transform: translateY(-50%)
}

.select2-selection {
  border-radius: 5px !important;
  border: 1px solid var(--Borders, #EAEAEA) !important;
}

.input-group textarea {
  width: 100%;
  height: 80px;
}

.input-group select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: transparent;
}

.date-container,
.select-container select {
  margin-top: 8px;
}

.select-container .icon {
  top: 50%;
  right: 12px;
  z-index: 100;
}

.select-container .icon.translateY {
  transform: translateY(-25%)
}

.mt-28px {
  margin-top: 28px;
}

.rounded-4px {
  border-radius: 4px
}

.date-container i,
.date-container span,
.date-container i.icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%)
}

.date-container i,
.date-container i.icon {
  right: 12px;
}

.date-container input {
  border-radius: 5px;
  border: 1px solid #EAEAEA;
  height: 100%;
  width: 100%
}

.date-container img,
.date-container span,
.date-container i.icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%)
}

.date-container img,
.date-container i.icon {
  left: 12px;
}

.date-container span {
  right: 12px;
}

.required label {
  position: relative;
  align-self: flex-start
}

.required label::after {
  content: '*';
  position: absolute;
  right: 105%;
  color: var(--danger-color)
}

label.required,
.form-label {
  position: relative;
  align-self: flex-start;
  font-size: 14px;
  font-weight: 600
}

label.required::after {
  content: '*';
  position: absolute;
  right: 105%;
  color: var(--danger-color)
}

input:focus,
select:focus,
.input-group>.form-select:focus {
  box-shadow: none !important;
}

.modal-content {
  border-radius: 12px !important;
}

.modal .time {
  color: var(--Purple, #4A2D7B);
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  /* 16.8px */
}

.inner-tabs-wrapper .nav-pills li:nth-child(1) .nav-link,
.inner-tabs-wrapper .nav-pills li:nth-child(5) .nav-link {
  background-color: #DEEDF9 !important;
}

.inner-tabs-wrapper .nav-pills li:nth-child(1) .nav-link.active,
.inner-tabs-wrapper .nav-pills li:nth-child(5) .nav-link.active {
  background-color: #2489D3 !important;
  color: #FFF !important
}

.inner-tabs-wrapper .nav-pills li:nth-child(1) .nav-link,
.inner-tabs-wrapper .nav-pills li:nth-child(5) .nav-link {
  color: #2489D3 !important
}

.inner-tabs-wrapper .nav-pills li:nth-child(2) .nav-link,
.inner-tabs-wrapper .nav-pills li:nth-child(6) .nav-link {
  background-color: #F7EBF8 !important;
  color: #8E459B !important
}



.inner-tabs-wrapper .nav-pills li:nth-child(2) .nav-link.active,
.inner-tabs-wrapper .nav-pills li:nth-child(6) .nav-link.active {
  background-color: #8E459B !important;
  color: #FFF !important
}

.inner-tabs-wrapper .nav-pills li:nth-child(3) .nav-link {
  background-color: #FCEDE9 !important;
  color: #EC8368 !important
}

.inner-tabs-wrapper .nav-pills li:nth-child(3) .nav-link.active {
  background-color: #EC8368 !important;
  color: #FFF !important
}

.inner-tabs-wrapper .nav-pills li:nth-child(4) .nav-link {
  background-color: #E0F6EF !important;
  color: #31A783 !important
}

.inner-tabs-wrapper .nav-pills li:nth-child(4) .nav-link.active {
  background-color: #31A783 !important;
  color: #FFF !important
}

.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  font-size: 1.8rem;
  /* Adjust star size */

  margin-top: 8px;
}

.rating span {
  display: inline-block;
  color: #ccc;
  /* Default gray for unfilled stars */
  position: relative;
}

.rating span.filled {
  color: #D4AF37;
  /* Gold color for filled stars */
}

.img-black {
  filter: brightness(0) invert(0)
}

.file-box {
  min-height: 50px;
  border: 1px solid #E7E7E7;
  border-radius: 5px;
  background-color: #FFF
}

.file-box input[type=file] {
  padding: 4px;
  margin: -4px;
  position: relative;
  outline: none;
  opacity: 0;
  height: 100% !important;
  z-index: 999;
  background-color: #FFF
}

.shallow-input {
  position: absolute;
  width: 100%;
  height: 100%;
  padding-right: 16px;
  color: #6d6e71;
  font-size: 16px;
  padding: 12px 10px 12px 20px;
}

.w-192 {
  width: 192px !important;
}

.file-input-btn {
  padding: 4px 16px;
  background-color: #F7EBF8;
  color: #6E3579;
  border-radius: 4px;
  font-size: 12px;
}

.round {
  position: relative;
}

.round label {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  height: 30px;
  left: 0;
  position: absolute;
  top: 0;
  width: 30px;
}

.remove-round label {
  border-radius: 4px !important;
  border: 0;
  width: 20px;
  height: 20px;
}

.remove-round+.accept-terms-text {
  color: var(--main-color)
}


.round label:after {
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  content: "";
  height: 6px;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 45%;
  transform: rotate(-45deg) translateY(-100%) translateX(-15%);
  width: 12px;
}

.round input[type="checkbox"] {
  visibility: hidden;
}

.round input[type="checkbox"]:checked+label {
  background-color: var(--main-color);
}

.round input[type="checkbox"]:checked+label:after {
  opacity: 1;
}

.accept-terms-text {
  color: var(--paragraph, #484848) !important;
  text-align: right;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 24px */
}

.yellow-submit-btn {
  padding: 12px 48px;
  border-radius: 50px;
  background-color: var(--yellow-color) !important;
  font-size: 18px;
  font-weight: 600;
}



.checkbox-wrapper-13 {
  display: flex
}

.checkbox-wrapper-13 input[type=checkbox] {
  --active: #275EFE;
  --active-inner: #fff;
  --focus: 2px rgba(39, 94, 254, .3);
  --border: #BBC1E1;
  --border-hover: #275EFE;
  --background: #fff;
  --disabled: #F6F8FF;
  --disabled-inner: #E1E6F9;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 21px;
  outline: none;
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin: 0;
  cursor: pointer;
  border: 1px solid var(--bc, var(--border));
  background: var(--b, var(--background));
  transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
}

.checkbox-wrapper-13 input[type=checkbox]:after {
  content: "";
  display: block;
  left: 0;
  top: 0;
  position: absolute;
  transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
}

.checkbox-wrapper-13 input[type=checkbox]:checked {
  --b: var(--main-color);
  --bc: var(--main-color);
  --d-o: .3s;
  --d-t: .6s;
  --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
}

.checkbox-wrapper-13 input[type=checkbox]:disabled {
  --b: var(--disabled);
  cursor: not-allowed;
  opacity: 0.9;
}

.checkbox-wrapper-13 input[type=checkbox]:disabled:checked {
  --b: var(--disabled-inner);
  --bc: var(--border);
}

.checkbox-wrapper-13 input[type=checkbox]:disabled+label {
  cursor: not-allowed;
}

.checkbox-wrapper-13 input[type=checkbox]:hover:not(:checked):not(:disabled) {
  --bc: var(--border-hover);
}

.checkbox-wrapper-13 input[type=checkbox]:focus {
  box-shadow: 0 0 0 var(--focus);
}

.checkbox-wrapper-13 input[type=checkbox]:not(.switch) {
  width: 21px;
}

.checkbox-wrapper-13 input[type=checkbox]:not(.switch):after {
  opacity: var(--o, 0);
}

.checkbox-wrapper-13 input[type=checkbox]:not(.switch):checked {
  --o: 1;
}


.checkbox-wrapper-13 input[type=checkbox]:not(.switch) {
  border-radius: 4px;
}

.checkbox-wrapper-13 input[type=checkbox]:not(.switch):after {
  width: 5px;
  height: 9px;
  border: 2px solid var(--active-inner);
  border-top: 0;
  border-left: 0;
  left: 7px;
  top: 4px;
  transform: rotate(var(--r, 20deg));
}

.checkbox-wrapper-13 input[type=checkbox]:not(.switch):checked {
  --r: 43deg;
}


.checkbox-wrapper-13 * {
  box-sizing: inherit;
}

.checkbox-wrapper-13 *:before,
.checkbox-wrapper-13 *:after {
  box-sizing: inherit;
}

/* 
.shared-label {
  border: 2px solid red !important
} */

.shared-table thead tr th {
  color: #303031;
  text-align: center;

  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  /* 19.2px */
}

.shared-table {
  border: 1px solid #f2f2f2;
  width: 100%;
  border-collapse: collapse;
}

.shared-table thead tr th {
  padding: 20px 8px;
  background: rgba(242, 242, 242, 0.50);
  border: 0;
  font-weight: 600
}

.shared-table tbody td {
  text-align: center;
  padding: 20px 8px;

  color: #7E7E7E;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 0;
  /* 16.8px */
}

.pagination {
  gap: 10px;
}

.gap-38 {
  gap: 38px !important
}

.pagination a,
.pagination span {
  width: 30px !important;
  height: 30px !important;

  color: #3C2464;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  border-radius: 3.332px;
  border: 0.833px solid var(--Borders, #EAEAEA);
  background: var(--BG-color, #F9F9F9);
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center
}

.pagination .page-item:nth-child(1) a,
.pagination .page-item:last-child a {
  /*  width: auto !important */
}

.pagination .page-item.active .page-link {
  background: #3C2464;
  border-color: #3C2464;
  width: 30px;
  height: 30px;
  display: flex;

}

.pagination .page-item a:hover {
  background: #3C2464;
  color: #FFF;
}

.file-uploader {
  position: relative;
  display: inline-block;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
  text-align: right;

  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  height: 50px;
  display: flex;
  align-items: center
}

.upload-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #999;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  justify-content: space-between;
}

.upload-label span {
  font-size: 12px !important;
}

.upload-icon {
  width: 20px;
  height: 20px;
  background-color: #ccc;
  border-radius: 4px;
  display: inline-block;
}

.upload-input {
  display: none;
  /* Hide the default file input */
}

.input-group select+div i {
  color: #8891A1 !important
}

.textarea-with-height {
  height: 180px !important
}

/* Loader */

.loader {
  position: fixed;
  inset: 0;
  /* Shorthand for top, right, bottom, left set to 0 */
  width: 100%;
  /* Ensures the width covers the viewport */
  height: 100%;
  /* Ensures the height covers the viewport */
  background: #FFF;
  z-index: 9999;
  overflow: hidden;
  /* Prevents scrollbars */
}


@-webkit-keyframes loader {

  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes loader {

  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.loader:after,
.loader:before {
  border-radius: 100%;
  content: '';
  height: 50px;
  opacity: .5;
  position: absolute;
  width: 50px;
  top: 50%;
  right: 50%;
}

.loader:after {
  -webkit-animation: loader 1.5s -0.75s infinite;
  animation: loader 1.5s -0.75s infinite;
  background-color: var(--yellow-color);
}

.loader:before {
  -webkit-animation: loader 1.5s infinite;
  animation: loader 1.5s infinite;
  background-color: #8c7a2f;
}

.typewriter {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  border-left: 5px solid white;
  /* Set border color to white and width to 5px on the left */
}

@media (max-width: 768px) {
  .typewriter {
    color: #FFF !important;

  }
}

@media (max-width: 567px) {



  .lang-dropdown {
    padding-top: 0 !important;
    min-width: 120px !important;
    top: calc(100% - 45px) !important;
    z-index: 999;
    right: 50% !important;
    transform: translateX(50%);
  }

  .mt-for-contact {
    margin-top: 12em !important
  }
}