* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

/* English Fonts */

@font-face {
  font-family: "Ninetea";
  src: url("../fonts/Ninetea-Bold.ttf") format("truetype");
  font-weight: 700; /* Bold */
}

@font-face {
  font-family: "Ninetea";
  src: url("../fonts/Ninetea-SemiBold.ttf") format("truetype");
  font-weight: 600; /* SemiBold */
}

@font-face {
  font-family: "Ninetea";
  src: url("../fonts/Ninetea-Medium.ttf") format("truetype");
  font-weight: 500; /* Medium */
}

@font-face {
  font-family: "Ninetea";
  src: url("../fonts/Ninetea-Regular.otf") format("opentype");
  font-weight: 400; /* Regular */
}

@font-face {
  font-family: "Ninetea";
  src: url("../fonts/Ninetea-Regular.otf") format("truetype");
  font-weight: 300; /* Light */
}

@font-face {
  font-family: "Oakes Grotesk";
  src: url("../fonts/Oakes%20Grotesk%20Bold.ttf") format("truetype");
  font-weight: 700; /* Bold */
}

@font-face {
  font-family: "Oakes Grotesk";
  src: url("../fonts/Oakes%20Grotesk%20SemiBold.ttf") format("truetype");
  font-weight: 600; /* SemiBold */
}

@font-face {
  font-family: "Oakes Grotesk";
  src: url("../fonts/Oakes%20Grotesk%20Medium.ttf") format("truetype");
  font-weight: 500; /* Medium */
}

@font-face {
  font-family: "Oakes Grotesk";
  src: url("../fonts/Oakes%20Grotesk%20Regular.ttf") format("truetype");
  font-weight: 400; /* Regular */
}

@font-face {
  font-family: "Oakes Grotesk";
  src: url("../fonts/Oakes%20Grotesk%20Light.ttf") format("truetype");
  font-weight: 300; /* Light */
}

/* Arabic Fonts */
@font-face {
  font-family: "Frutiger LT Arabic";
  src: url("../fonts/FrutigerLTArabic65Bold.ttf") format("truetype");
  font-weight: 700; /* Bold */
}

@font-face {
  font-family: "Frutiger LT Arabic";
  src: url("../fonts/frutigerltarabic75black.ttf") format("truetype");
  font-weight: 600; /* SemiBold */
}

@font-face {
  font-family: "Frutiger LT Arabic";
  src: url("../fonts/FrutigerLTArabic55Roman.ttf") format("truetype");
  font-weight: 500; /* Medium */
}

@font-face {
  font-family: "Frutiger LT Arabic";
  src: url("../fonts/FrutigerLTArabic55Roman.ttf") format("truetype");
  font-weight: 400; /* Regular */
}

@font-face {
  font-family: "Frutiger LT Arabic";
  src: url("../fonts/FrutigerLTArabic45Light.ttf") format("truetype");
  font-weight: 300; /* Light */
}

/*  */

@font-face {
  font-family: "Brando";
  src: url("../fonts/alfont_com_Brando-Arabic-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Brando";
  src: url("../fonts/alfont_com_Brando-Arabic-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Brando";
  src: url("../fonts/alfont_com_Brando-Arabic-SemiBold.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Brando";
  src: url("../fonts/alfont_com_Brando-Arabic-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Brando";
  src: url("../fonts/alfont_com_Brando-Arabic-ExtraLight.otf")
    format("opentype");
  font-weight: 300;
  font-style: normal;
}

:root {
  --primary: #001f5b;
  --secondary: #5091cd;
  --white: #ffffff;
  --black: #212121;
  --grey: #878a8f;
  --green: #00b44f;
  --red: #c22440;
  --border-color: rgba(255, 255, 255, 0.75);
  --input-color: #9ca6ca;
  --active: #2a285e;
  --error: #c73852;
  --gradient-background: linear-gradient(
    269.65deg,
    var(--primary) 13.29%,
    var(--secondary) 90.53%
  );
  --heading-font-size: 30px;
  --paragraph-font-size: 16px;
  --en-regular-font: "Ninetea", sans-serif;
  --en-secondary-font: "Oakes Grotesk", sans-serif;
  --ar-regular-font: "Brando", sans-serif;
  --ar-secondary-font: "Frutiger LT Arabic", sans-serif;
}

body,
html {
  overflow-x: hidden;
}

body {
  position: relative;
  font-family: var(--en-regular-font)!important;
  background-color: rgba(0, 31, 91, 0.9) !important;
  z-index: 1;
}

html.ar body {
  font-family: var(--ar-regular-font)!important;
  background-color: var(--primary) !important;
  direction: rtl;
}

html.ar h3 {
  line-height: 1.5em;
}

html.ar h4 {
  line-height: 1.6em;
}

html.ar h5 {
  line-height: 1.8em;
}

body::-webkit-scrollbar {
  width: 6px;
}

body::-webkit-scrollbar-track {
  background: rgba(207, 203, 233, 0.8);
  border: 1px solid #fff;
}

body::-webkit-scrollbar-thumb {
  background: var(--secondary);
  /* border-radius: 8px; */
}

body::-webkit-scrollbar-thumb:hover {
  opacity: 70%;
  border-radius: 8px;
  cursor: pointer;
}

table tr,
table th {
  white-space: nowrap;
}

a {
  text-decoration: none !important;
  transition: 0.3s;
}

/* .swiper-backface-hidden .swiper-slide {
    transform: none !important;
  } */

.cursor-pointer {
  cursor: pointer;
}

.required {
  color: red;
}

.custom-select {
  cursor: pointer;
}

.tab-btn {
  user-select: none;
}

.hover-tab:hover {
  transition: all 200ms ease-in-out;
  background-color: rgba(255, 255, 255, 0.4) !important;
  cursor: pointer;
}

.hover-icon:hover svg {
  cursor: pointer;
}

.hover-icon:hover svg path {
  transition: all 200ms ease-in-out;
  filter: brightness(40%);
  cursor: pointer;
}

.hover-icon-primary:hover svg {
  cursor: pointer;
}

.hover-icon-primary:hover svg path {
  transition: all 200ms ease-in-out;
  stroke: var(--primary) !important;
}

.hover-icon-secondary:hover svg {
  cursor: pointer;
}

.hover-icon-secondary:hover svg path {
  /* fill: var(--secondary) !important; */
  transition: all 200ms ease-in-out;
  stroke: var(--secondary) !important;
}

.text-ellipsis {
  overflow: hidden;
  text-wrap: nowrap;
  text-overflow: ellipsis;
}

.text-ellipsis-2x {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.text-ellipsis-3x {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/* Loader */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--black);

  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
}

.loader-wrapper.hide {
  animation: fadeout 250ms ease-in-out;
  min-height: 0;
  display: none;
}

.loader-wrapper > #main-loader {
  height: 300px;
  width: 300px;
}

@media (min-width: 1600px) {
  .container {
    max-width: 1440px !important;
  }
}

@media (max-width: 770px) {
  .loader-wrapper > #main-loader {
    height: 200px;
    width: 200px;
  }
  .container {
    max-width: none !important;
  }
}

.main-page-title {
  margin-top: 70px;
  font-family: var(--en-regular-font)!important;
}

.main-page-title h2 {
  font-size: 45px;
  background: linear-gradient(
    to right,
    var(--secondary) 0%,
    var(--primary) 30%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.main-page-title p {
  font-size: 16px;
  color: var(--secondary);
  font-weight: 500;
}

@media (max-width: 767px) {
  .main-page-title h2 {
    font-size: 28px;
  }
  .main-page-title p {
    font-size: 14px;
  }
}

.back-btn {
  font-family: var(--en-regular-font)!important;
  display: flex;
  align-items: center;
  color: var(--primary);
  margin-bottom: 10px;
}

.back-btn img {
  transition: 0.3s;
}
.back-btn:hover {
  color: var(--secondary);
}
.back-btn:hover img {
  transform: translate(-5px);
}
.view-btn {
  border-radius: 30px;
  padding: 5px;
  border: 1px solid var(--primary);
  padding-inline: 20px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 18px;
  padding-block: 8px;
  width: max-content;
  font-family: "Argentum Sans bold", sans-serif;
  transition: 0.3s;
}

.view-btn.font-14 {
  font-size: 14px;
}

.view-btn:not(.hover-white):not(:disabled):hover {
  background-color: rgba(244, 247, 251, 1);
  border-color: #cedcee;
  color: var(--primary);
}

.sort-btn {
  transition: 0.3s;
}
.sort-btn:hover {
  opacity: 0.85;
}

/*custom select options */
.custom-select {
  border-radius: 20px;
  padding-inline: 14px;
  padding-block: 5px;
  display: flex;
  padding: 10px 16px;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  border: 1px solid rgba(207, 203, 233, 0.8);
  background: #f9fafb;
  flex: 1;
}

.custom-select-trigger {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 0% center !important;
  background-size: 16px 12px !important;
  width: 100%;
  position: relative;
  cursor: pointer;
}

.custom-select-wrapper {
  position: relative;
  width: 300px;
  user-select: none;
  font-family: var(--en-regular-font)!important;
  color: #475467;
  font-weight: 300;
}
.custom-options {
  position: absolute;
  top: 120%;
  left: 0;
  right: 0;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  /* height: 200px; */
  z-index: 9999999 !important;
  display: none;
  border: 1px solid #cfcbe9;
  padding: 10px;
}

.custom-options .wrapper {
  display: flex;
  flex-direction: column;
  /* border-radius: 15px; */
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

.custom-option {
  padding: 7px 10px;
  cursor: pointer;
  border-radius: 10px;
}

.custom-option:hover {
  background-color: rgba(249, 250, 251, 1);
  color: #000;
}

.custom-option.selected {
  color: var(--secondary);
}

.custom-select.open .custom-options {
  display: flex;
  flex-direction: column;
}

.custom-options .wrapper::-webkit-scrollbar {
  width: 3px;
}

.custom-options .wrapper::-webkit-scrollbar-thumb {
  background: #c6c6d1;
  border-radius: 8px;
}

.custom-select-wrapper.numbers {
  width: 70px;
  background-color: transparent;
}

.custom-select-wrapper.numbers .custom-select {
  background-color: transparent;
  border: 1px solid rgba(207, 224, 239, 1);
  border-radius: 15px;
}

.custom-select-wrapper.numbers .custom-select-trigger {
  background-image: url("../svg/filters_page/blue-down-arrow.svg") !important;
  background-repeat: no-repeat !important;
  background-position: right 0% center !important;
  background-size: 15px 12px !important;
  width: 100%;
}

.custom-select-wrapper.numbers .custom-select-trigger span {
  color: var(--secondary);
  margin-left: -3px;
}

.custom-select-wrapper.numbers .custom-options {
  top: -200px;
}

.custom-select-wrapper.numbers .custom-option:hover {
  background-color: transparent;
  color: var(--secondary);
}

.custom-select-wrapper.numbers .custom-option.selected {
  background-color: transparent !important;
  color: var(--secondary);
}

.swiper-button-prev::before,
.swiper-button-next::before {
  content: "";
  width: 35px;
  height: 35px;
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.089);
  opacity: 0;
  transition: 0.3s;
  z-index: -1;
}
.swiper-button-prev:not(.swiper-button-disabled):hover::before,
.swiper-button-next:hover::before {
  opacity: 1;
}

.swiper-button-prev.hover-white::before,
.swiper-button-next.hover-white::before {
  content: "";
  width: 35px;
  height: 35px;
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.962);
  opacity: 0;
  transition: 0.3s;
  z-index: -1;
}

.swiper-button-prev.hover-white:not(.swiper-button-disabled):hover::before,
.swiper-button-next.hover-white:hover::before {
  opacity: 1;
}

.copy-button {
  position: relative;
  z-index: 100;
}

.copy-tooltip,
.copied-tooltip {
  position: absolute;
  bottom: 28px;
  transform: translate(-50%, 0%);
  left: 50%;
}

.copy-tooltip.hidden,
.copied-tooltip.hidden {
  display: none;
}

.copy-button:hover .copy-tooltip {
  display: block;
}

.form_lable {
  display: block;
  font-size: var(--paragraph-font-size);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: var(--active);
  margin-bottom: 8px;
}

.form_input,
.custom-select {
  height: 58px;
  padding: 10px 16px;
  gap: 8px;
  border-radius: 32px;
  background: var(--white);
  outline: none;
  border: none;
  width: 100%;
}

.form-floating {
  z-index: 1 !important;
}

.custom-select.filter {
  border-radius: 20px;
  padding-inline: 14px;
  padding-block: 5px;
  display: flex;
  padding: 10px 16px;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  border: 1px solid rgba(207, 203, 233, 0.8);
  background: #f9fafb;
  flex: 1;
  height: auto;
}
.action-btns {
  position: relative;
}

.apply-btn {
  background-color: var(--secondary);
  color: white;
  display: flex;
  height: 40px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  transition: 0.3s;
  font-family: Arial, Helvetica, sans-serif !important ;
}

.apply-btn:hover {
  background-color: rgba(111, 163, 211, 1);
}

.form_error,
.form_checkbox,
.form_input,
.form_input::placeholder,
.form_textarea,
.form_textarea::placeholder {
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  color: #787797;
}
.form_checkbox {
  cursor: pointer;
}

.form_error {
  color: var(--error);
  margin-top: -16px;
}

.form_textarea {
  width: 100%;
  padding: 16px;
  outline: none;
  border: none;
  border-radius: 32px;
  background-color: var(--white);
  height: 130px;
}

.form_button {
  display: flex;
  padding: var(--Spacing-16, 16px) 112px;
  justify-content: center;
  align-items: center;
  gap: var(--Spacing-4, 4px);
  align-self: stretch;
  border-radius: 99px;
  background-color: var(--secondary);
  outline: none;
  border: none;
  /* margin: 32px 0; */
  width: 100%;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: var(--white);
  border: 1px solid transparent;
  transition: 0.3s;
}

.form_button:hover {
  background: transparent;
  border: 1px solid #cedcee;
  color: var(--secondary);
}

.form_button:hover svg path {
  fill: var(--secondary);
  stroke: var(--secondary);
}

.section {
  margin-top: 100px;
}
.section_title {
  font-family: "Argentum Sans bold", sans-serif;
  font-size: 40px;
  text-align: center;
  color: white;
  position: relative;
}

.section_title.linear {
  background: linear-gradient(to right, #5da3e2 0%, var(--primary) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 auto;
}

.section .subtitle {
  font-family: "Argentum Sans", sans-serif;
  margin-block: 15px;
  font-weight: 400;
  font-size: 16px;
  color: #98a2b3;
  text-align: center;
  position: relative;
}

/* buttons */

.btn-primary {
  cursor: pointer;
  width: auto;
  border-radius: 0px !important;
  padding: 5px;
  border: 1px solid var(--primary) !important;
  background-color: var(--primary) !important;
  padding-inline: 20px;
  font-weight: 500;
  color: var(--white) !important;
  text-align: center;
  padding-block: 8px;
  transition: 0.3s;
  box-shadow: none !important;
}

.btn-primary {
  font-size: 14px;
}

.btn-primary:disabled {
  background-color: #f2f4f7;
  border: 1px solid #c6c6d1;
  color: #c6c6d1 !important;
}

.btn-primary:not(.hover-white):not(:disabled):hover {
  background-color: transparent !important;
  border-color: var(--primary) !important;
  color: var(--primary) !important;
  /* filter: brightness(70%); */
}

.btn-primary:not(.hover-white):not(:disabled):hover svg path {
  stroke: var(--primary) !important;
}

.btn-secondary {
  cursor: pointer;
  width: auto;
  border-radius: 30px;
  padding: 5px;
  border: 1px solid var(--secondary);
  background-color: var(--secondary);
  padding-inline: 20px;
  font-weight: 500;
  color: var(--white) !important;
  text-align: center;
  gap: 7px;
  padding-block: 8px;
  transition: 0.3s;
}

.btn-secondary {
  font-size: 14px;
}

.btn-secondary:disabled {
  background-color: #f2f4f7;
  border: 1px solid #c6c6d1;
  color: #c6c6d1 !important;
}

.btn-secondary:not(.hover-white):not(:disabled):hover {
  background-color: transparent;
  border-color: var(--secondary);
  color: var(--secondary) !important;
  /* opacity: 90%; */
}

.btn-secondary:not(.hover-white):not(:disabled):hover svg path {
  stroke: var(--secondary) !important;
}

.btn-primary-outline {
  cursor: pointer;
  width: auto;
  border-radius: 30px;
  padding: 5px;
  border: 1px solid var(--primary);
  padding-inline: 20px;
  font-weight: 500;
  color: var(--primary);
  text-align: center;
  padding-block: 8px;
  transition: 0.3s;
}

.btn-primary-outline {
  font-size: 14px;
}

.btn-primary-outline:not(.hover-white):not(:disabled):hover {
  background-color: var(--primary);
  border-color: #cedcee;
  color: var(--white);
  /* opacity: 90%; */
}

.btn-primary-outline:not(.hover-white):not(:disabled):hover svg path {
  stroke: var(--white);
}

.btn-primary-outline {
  cursor: pointer;
  width: auto;
  border-radius: 30px;
  padding: 5px;
  border: 1px solid var(--primary);
  padding-inline: 20px;
  font-weight: 500;
  color: var(--primary);
  text-align: center;
  padding-block: 8px;
  transition: 0.3s;
}

.btn-primary-outline {
  font-size: 14px;
}

.btn-primary-outline:disabled {
  background-color: #f2f4f7;
  border: 1px solid #c6c6d1;
  color: #c6c6d1 !important;
}

.btn-primary-outline:not(.hover-white):not(:disabled):hover {
  background-color: var(--primary);
  background-color: #f7f7f7;
  color: var(--white);
  /* opacity: 90%; */
}

.btn-primary-outline:not(.hover-white):not(:disabled):hover svg path {
  stroke: var(--white);
}

.btn-secondary-outline {
  cursor: pointer;
  width: auto;
  border-radius: 30px;
  padding: 5px;
  border: 1px solid var(--secondary);
  padding-inline: 20px;
  font-weight: 500;
  color: var(--secondary);
  text-align: center;
  padding-block: 8px;
  transition: 0.3s;
}

.btn-secondary-outline {
  font-size: 14px;
}

.btn-secondary-outline:disabled {
  background-color: transparent;
  border: 1px solid #2a285e !important;
  color: #2a285e;
}

.btn-secondary-outline:not(.hover-white):not(:disabled):hover {
  /* background-color: #f7f7f7; */
  background-color: var(--secondary) !important;
  color: var(--white) !important;
  /* opacity: 90%; */
}

.btn-secondary-outline:not(.hover-white):not(:disabled):hover svg path {
  stroke: var(--white);
}

/* Notification Card */
.notification_card {
  position: fixed;
  bottom: 20px;
  left: 66%;
  right: 4%;
  min-height: 160px;
  border-radius: 20px;
  border: 1px solid var(--secondary);
  background: #5091cd;
  padding: 24px 24px 16px 24px;
  margin-top: 50px;
  box-shadow: 4px 0px 4px 0px rgba(135, 175, 211, 0.5);
  transform: translateX(1000px);
  opacity: 0;
  transition: 0.3s all;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
}

.notification_card.active {
  transform: translateX(0);
  opacity: 1;
}

.notification_card .top-icon {
  position: absolute;
  top: -30px;
}

.notification_card .bg-svg {
  position: absolute;
  right: 10%;
  bottom: 0;
}

.notification_card h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.notification_card p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.notification_card p span {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.notification_card button {
  display: flex;
  height: 40px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  border: 1px solid #fff;
  background: #fff;
  color: var(--secondary);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  transition: 0.3s all;
}

.notification_card button:hover {
  color: #fff;
  border-color: #fff;
  background-color: transparent;
}

/* Dark Theme */
html.dark body {
  background-color: #1d2939;
}

html.dark .bg-img {
  background: none;
}

html.dark .main-page-title h2 {
  color: #fff;
  background: none;
  -webkit-background-clip: none;
  -webkit-text-fill-color: #fff;
}

html.dark .main-page-title p {
  color: #babbbe;
}

html.dark .back-btn {
  color: #fff;
}

html.dark .back-btn img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(16%)
    hue-rotate(256deg) brightness(105%) contrast(104%);
}

/* Animations */
.animate-popup {
  animation: popup 250ms ease-in-out;
}

.animate-fadein {
  animation: fadein 250ms ease-in-out;
}

.animate-fadeout {
  animation: fadeout 250ms ease-in-out;
}

.animate-translateleft {
  animation: translateleft 250ms ease-in-out;
}

.animate-translateright {
  animation: translateright 250ms ease-in-out;
}

.animate-fadein-translateleft {
  animation: fadein-translateleft 250ms ease-in-out;
}

.animate-fadein-translateright {
  animation: fadein-translateright 250ms ease-in-out;
}

.animate-spin {
  animation: spin 250ms ease-in-out;
}

@keyframes popup {
  0% {
    transform: scale(0.6);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes translateleft {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes translateright {
  0% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes fadein-translateleft {
  0% {
    opacity: 0;
    transform: translateX(10%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadein-translateright {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes translateup {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes translatedown {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes fadein-translateup {
  0% {
    opacity: 0;
    transform: translateY(10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadein-translatedown {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*///////////////////////////// RESPONSIVE /////////////////////////////////*/
@media (max-width: 991px) {
  .section_title {
    font-size: 24px;
    margin: 0;
    width: 80%;
    margin-inline: auto;
  }

  .section .subtitle {
    margin-block: 0px;
    font-weight: 300;
    font-size: 12px;
    margin-top: 5px;
    width: 80%;
    margin-inline: auto;
  }
  .action-btns {
    z-index: 0;
  }
  .vission__section_suport {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .vission__section_suport button {
    font-size: 14px !important;
  }

  .custom-select-trigger {
    background-position: right 10% center !important;
  }
}

@media (max-width: 500px) {
  .back-btn {
    font-size: 12px !important;
  }
  .view-btn {
    font-size: 15px;
  }
}
