@font-face {
  font-family: "Avenir LT Pro Book";
  src:
    url("../fonts/AvenirLTProBookOblique.woff2") format("woff2"),
    url("../fonts/AvenirLTProBookOblique.woff") format("woff"),
    url("../fonts/AvenirLTProBookOblique.ttf") format("truetype");
  font-weight: normal;
  font-style: oblique;
  font-display: swap;
}

@font-face {
  font-family: "Monument Extended";
  src:
    url("../fonts/MonumentExtended-Ultrabold.woff2") format("woff2"),
    url("../fonts/MonumentExtended-Ultrabold.woff") format("woff"),
    url("../fonts/MonumentExtended-Ultrabold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@media (max-width: 600px) {
  .allContent .author-name a {
    padding: 0;
  }

  html body .author-name {
    margin: 0;
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    align-items: center;
  }

  html .allContent-promo .author-name a,
  html .author-name a {
    margin: 0;
    font-size: 23px;
  }

  .download-content-first-page {
    margin-top: 10px;
  }
}

ul,
ol {
  list-style-position: inside;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  min-height: 74px;
  padding: 0;
  background-color: #002353;
  transition: background-color 0.3s ease;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 74px;
  padding: 0;
  background-color: #002353;
}

.header.scrolled {
  background-color: #002353 !important;
  transition: background-color 0.3s ease;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: white;
  position: relative;
  left: auto;
}

.menu {
  transition: background-color 0.3s ease;
}

.header.scrolled {
  background-color: #002353;
}

.menu,
.footer-menu {
  display: flex;
  width: 77%;
  justify-content: center;
}

.footer-menu {
  list-style: none;
  font-weight: 400;
  margin-bottom: 0;
  & a {
    color: white;
  }
}

menu.active.scrolled {
  background-color: #002353 !important;
}

.menu ul,
.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

#top-menu,
.footer-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 767px;
}

.menu ul li,
.footer-menu ul li {
  position: relative;
}

.menu ul li a,
.footer-menu ul li a {
  color: white;
  text-decoration: none;
  display: block;
}

.menu ul li a:hover,
.menu ul li a.active,
.footer-menu ul li a:hover,
.footer-menu ul li a.active {
  background-color: #1e3a5f;
  border-radius: 4px;
}

.nav {
  display: block;
  margin: 0;
  padding: 0;
}

.nav li {
  display: inline-block;
  list-style: none;
}

.nav .button-dropdown {
  position: relative;
}

.nav li a {
  display: block;
  color: #333;
  padding: 10px 20px;
  text-decoration: none;
}

.nav li a span {
  display: inline-block;
  margin-left: 5px;
  font-size: 10px;
  color: #999;
}

.nav li a:hover,
.nav li a.dropdown-toggle.active {
  background-color: #289dcc;
  color: #fff;
}

.nav li a:hover span,
.nav li a.dropdown-toggle.active span {
  color: #fff;
}

.nav li .dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  padding: 0;
  margin: 0;
  margin-top: 3px;
  text-align: left;
}

.nav li .dropdown-menu.active {
  display: block;
}

.nav li .dropdown-menu a {
  width: 150px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #234661;
  list-style: none;
  padding: 0;
  margin: 0;
  top: 100%;
  left: 0;
  width: 200px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  padding: 10px 15px;
}

.language-selector {
  position: relative;
  display: inline-block;
}

.lang-btn {
  display: flex;
  font-size: 16px;
  align-items: center;
  justify-items: center;
  padding: 0;
  font-weight: 400;
  gap: 5px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  background-color: transparent;
  transition:
    background-color 0.3s,
    box-shadow 0.3s,
    border 0.3s;
  border: 1px solid transparent;
}

.lang-btn svg {
  width: 8px;
  height: 4px;
}

.lang-dropdown {
  display: none;
  top: 45px;
  position: absolute;
  background-color: #002353;
  border-radius: 5px;
  gap: 8px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  opacity: 0;
  width: max-content;
  min-width: 100%;
  flex-direction: column;
  visibility: hidden;
  left: auto;
  right: 0;
  padding: 13px 15px;
}

.lang-dropdown.open {
  display: flex;
  opacity: 1;
  z-index: 1002;
  visibility: visible;
}

.language_img {
  width: 26px;
  height: 26px;
}

.lang-dropdown a {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  color: white;
  padding: 0;
  text-decoration: none;
  transition:
    background-color 0.3s,
    box-shadow 0.3s;
  font-size: 16px;
}

.sign-up-button .button {
  font-family: roboto;
  padding: 10px 20px;
  background-color: #28a745;
  color: white;
  text-decoration: none;
  border-radius: 15px;
  width: 95px;
  display: block;
}

html[lang="fr"] .sign-up-button .button {
  width: 105px;
}

.header-right-content-container {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-right-content-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu-item {
  font-size: 16px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo-desktop {
  margin-right: 40px;
}

.logo-desktop img {
  width: 100px;
  height: 28px;
  max-width: none;
  object-fit: contain;
}

.sign-up-button .button-icon {
  display: none;
}
.section-review h2 {
  margin-bottom: 11px;
}

.section-review .content-text {
  margin-top: 0;
  max-width: 1260px;
}

[lang="ar"] .section-review .info-table {
  direction: ltr;
}

[lang="ar"] .section-review .info-table th {
  direction: rtl;
}

.section-register .content-text {
  margin-top: 11px;
  max-width: 1260px;
}

.section-register .custom-button {
  gap: 18px;
}
[lang="ar"] .section-register .custom-button {
  flex-direction: row-reverse;
}
.section-register .custom-button i {
  font-size: 22px;
}

.section-download ol,
.section-download ul {
  max-width: 1147px;
}

.section-download ol,
.section-download ul {
  margin: 0;
}

.section-casino i {
  font-size: 22px;
}

[lang="ar"] .section-casino .custom-button {
  gap: 18px;
  flex-direction: row-reverse;
}

.section-deposit-methods .content-text {
  max-width: 1260px;
}
.section-withdraw-methods .info-table {
  max-width: 858px;
  margin: 0 auto;
  border: 1px solid #ffffff;
}

.section-withdraw-methods tr th,
.section-withdraw-methods tr td {
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  border-right: 1px solid #ffffff;
}

.section-withdraw-methods tr th:first-child,
.section-withdraw-methods tr td:first-child {
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  border-right: 1px solid #ffffff;
}

.section-withdraw-methods tr th:last-child,
.section-withdraw-methods tr td:last-child {
  border-left: 1px solid #ffffff;
}

.section-withdraw-methods tr:last-child th,
.section-withdraw-methods tr:last-child td {
  border-bottom: 1px solid #ffffff;
}

.front-page-banner {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.front-page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.front-page-banner h1 {
  max-width: 1200px;
  padding-bottom: 18px;
  font-size: 48px;
  font-weight: 600;
  line-height: 72px;
  text-align: center;
}

.front-page-banner p {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  max-width: 680px;
}

.button-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0px 18px 0 22px;
  background-color: #28a745;
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 15px;
  cursor: pointer;
  font-family: "Roboto";
  font-size: 18px;
  font-weight: bold;
  margin: 0 10px;
  height: 65px;
  line-height: 65px;
  gap: 8px;
  transition:
    box-shadow 0.3s ease,
    background-color 0.3s ease;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

[lang="ar"] .button-link {
  flex-direction: row-reverse;
  gap: 13px;
}

.button-link:hover {
  background-color: #216837;
  box-shadow: 0px 4px 15px rgba(33, 104, 55, 0.5);
  color: white;
}

.button-link:active {
  background-color: #1e5e2e;
  box-shadow: 0px 2px 8px rgba(30, 94, 46, 0.5);
}

.front-page-buttons {
  display: flex;
  padding-top: 40px;
  justify-content: center;
}

.front-page-buttons button:hover {
  background-color: #216837;
}

.front-page-buttons button:active {
  background-color: #1e5e2e;
}

.front-page-buttons .input input,
.front-page-buttons button {
  margin: 0 10px;
  height: 65px;
  padding: 0 20px;
  border-radius: 15px;
  cursor: pointer;
  font-family: "Roboto";
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: white;
  border: none;
}

.front-page-buttons .input input {
  background-color: #ffffff;
  color: #28a745;
  width: 318px;
}

.front-page-buttons button {
  background-color: #28a745;
  width: 166px;
  font-family: "Roboto";
  font-size: 18px;
}

.front-page-buttons button img {
  margin-left: 5px;
  vertical-align: middle;
}

.front-page-promo-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
  padding: 35px;
}

.front-page-buttons {
  display: flex;
  padding-top: 53px;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.front-page-buttons .button-link {
  font-size: 21px;
  font-weight: 600;
}
.front-page-buttons .far {
  width: 20px;
}

.front-page-buttons button:hover {
  background-color: #216837;
  box-shadow: 0px 4px 15px rgba(33, 104, 55, 0.5);
}

.front-page-buttons button:active {
  background-color: #1e5e2e;
  box-shadow: 0px 2px 8px rgba(30, 94, 46, 0.5);
}

.front-page-buttons .input input,
.front-page-buttons button {
  margin: 0 10px;
  height: 65px;
  padding: 0 20px;
  border-radius: 15px;
  cursor: pointer;
  font-family: "Roboto";
  font-size: 21px;
  font-weight: 600;
  text-align: center;
  color: white;
  border: none;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.front-page-buttons .input input {
  background-color: #ffffff;
  color: #28a745;
  width: 318px;
  order: 2;
  transition: box-shadow 0.3s ease;
}

.front-page-buttons button {
  background-color: #28a745;
  width: 166px;
  font-family: "Roboto";
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  order: 1;
  transition: box-shadow 0.3s ease;
}

.front-page-buttons .input input:hover {
  box-shadow: 0px 4px 15px rgba(40, 167, 69, 0.5);
  cursor: copy;
}

.front-page-buttons .input input:active {
  box-shadow: 0px 2px 8px rgba(40, 167, 69, 0.5);
}

.front-page-buttons button img {
  margin-left: 5px;
  vertical-align: middle;
}

.copied-message {
  position: absolute;
  top: 62%;
  left: 39%;
  transform: translateX(-50%);
  background-color: #0069af;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 10;
}

.copied-message::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: #0069af transparent transparent transparent;
}

.copied-message.show {
  opacity: 1;
}

html[lang="ar"] .front-page-buttons,
html[lang="he"] .front-page-buttons {
  flex-direction: row-reverse;
}

html[lang="ar"] .front-page-buttons .input input,
html[lang="he"] .front-page-buttons .input input {
  order: 1;
}

html[lang="ar"] .front-page-buttons button,
html[lang="he"] .front-page-buttons button {
  order: 2;
}

.banner-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.second-front-page-banner {
  background-repeat: repeat-y;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
  width: 100%;
  background-color: rgb(11 62 139);
  color: #fff;
  z-index: 1;
}

.second-page-promo-content {
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
}

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 10px;
}

.container-button {
  display: flex;
  justify-content: center;
}

.accordion {
  margin-top: 30px;
}

.accordion-button {
  background: #003580;
  color: #ffffff;
  padding: 0 20px;
  width: 100%;
  height: 63px;
  border: none;
  outline: none;
  border-radius: 15px;
  font-size: 42px;
  font-weight: 500;
  flex-direction: row-reverse;
  display: flex;
  align-items: center;
  position: relative;
}
.accordion-button span {
  position: absolute;
  top: -15px;
}

.accordion-button.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.accordion-button i {
  margin-left: 0px;
  margin-top: 0px;
  transition: transform 0.2s;
  position: absolute;
  left: 20px;
}

[lang="ar"] .accordion-button i {
  margin-left: 0px;
  margin-top: 0px;
  transition: transform 0.2s;
  position: absolute;
  right: 20px;
  left: initial;
}

.accordion-button.active i {
  transform: rotate(-180deg);
}

[lang="ar"] .accordion-button.active i {
  transform: rotate(180deg);
}

html[lang="ar"] .accordion-button i {
  float: left;
}

html:not([lang="ar"]) .accordion-button i {
  float: right;
}

.panel {
  max-height: 0;
  overflow: hidden;
  background-color: #003580;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0 40px;
}

.panel.open {
  max-height: 2000px;
  padding: 20px 40px;
}

.panel ul {
  margin: 0;
  padding: 10px 0 0 20px;
  list-style: none;
}

.panel ul li {
  padding: 8px 10px;
  color: #fff;
  direction: ltr;
  font-size: 16px;
}

.panel ul li a {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
}

.panel ul li a:hover {
  color: #f1c40f;
  text-decoration: underline;
}

.circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background-color: green;
  border-radius: 50%;
  color: white;
}

html[lang="ar"] .panel ul li {
  padding: 8px 35px;
  direction: rtl;
}

html:not([lang="ar"]) .panel ul li {
  padding: 8px 35px;
}

.panel ul li:last-child {
  border-bottom: none;
}

.accordion-button.active + .panel {
  max-height: none;
}

.content-title {
  margin-top: 95px;
}

.content-title h2 {
  color: white;
  font-size: 32px;
  font-family: "Roboto", sans-serif;
}

.content-title h3 {
  color: white;
  font-size: 24px;
  font-family: "Roboto", sans-serif;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #c1cfe9;
  color: #0e294e;
  table-layout: fixed;
  margin: 0 0 11px;
}

.info-table th,
.info-table td {
  padding: 6px;
  text-align: left;
  border-bottom: 2px solid #0d2e5c;
  vertical-align: middle;
  font-size: 18px;
}

.info-table th {
  text-align: center;
  color: #ffffff;
  background-color: #3871c5;
  border-right: 2px solid #0d2e5c;
  font-weight: 400;
}

.info-table tbody tr:first-child th {
  font-weight: 700;
}

.info-table td {
  text-align: center;
  border-right: 2px solid #0d2e5c;
  font-weight: 400;
}

.section-register .content-title {
  margin-top: 95px;
}

.section-register h2 {
  margin-bottom: 11px;
}

.content-text {
  margin-top: 11px;
}

.content-text p {
  color: white;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  text-align: right;
  margin: 0 0 0px;
}

.content-text li {
  color: white;
  font-size: 18px;
  font-family: "Roboto" sans-serif;
  text-align: left;
}

.content-img {
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}

.content-img img {
  width: 100%;
  height: auto;
  display: block;
}

.ps-12-ul {
  padding-left: 20px;
}

html[lang="ar"] .ps-12-ul {
  padding-left: 0px;
  padding-right: 20px;
}

.content-text ol,
.accordion-button,
.popup-button,
.panel ul li,
.content-title h2,
.content-title h3,
.table-text p,
.content-text p,
.content-text li,
.content-text span {
  text-align: right;
}

html[lang="ar"] .accordion-button,
html[lang="ar"] .popup-button,
html[lang="ar"] .panel ul li,
html[lang="ar"] .popup-panel ul p,
html[lang="ar"] .content-title h2,
html[lang="ar"] .content-title h3,
html[lang="ar"] .table-text p,
html[lang="ar"] .content-text p,
html[lang="ar"] .content-text li,
html[lang="ar"] .content-text span {
  text-align: right;
}

html:not([lang="ar"]) .accordion-button,
html:not([lang="ar"]) .popup-button,
html:not([lang="ar"]) .panel ul li,
html:not([lang="ar"]) .popup-panel p,
html:not([lang="ar"]) .content-title h2,
html:not([lang="ar"]) .content-title h3,
html:not([lang="ar"]) .table-text p,
html:not([lang="ar"]) .content-text p,
html:not([lang="ar"]) .content-text li,
html:not([lang="ar"]) .content-text span {
  text-align: left;
}

html[lang="fr"] .custom-button {
  max-width: 320px;
}

.custom-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s;
  margin-top: 46px;
  margin-right: auto;
  margin-left: auto;
  background-color: #28a745;
  max-width: 338px;
  width: 100%;
  height: 80px;
  padding: 20px 20px;
  border-radius: 15px;
  cursor: pointer;
  border: none;
  font-family: "Roboto", sans-serif;
  text-wrap: nowrap;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: white;
}

.custom-button:hover {
  background-color: #216837;
  color: white;
}

.custom-button:active {
  background-color: #1e5e2e;
  color: white;
}

.custom-button img {
  margin-left: 5px;
  vertical-align: middle;
}

.promo-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: #000000;
  color: white;
  padding: 0 20px;
  text-align: center;
}
.promo-image-container {
  align-self: end;
}

[lang="ar"] .promo-section {
  flex-direction: row-reverse;
}

.promo-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 20px;
  padding: 25px 0;
}

.promo-action .logo {
  width: 100%;
  max-width: 454px;
  margin-bottom: 10px;
}

.promo-action h2 {
  color: white;
  font-size: 54px;
  font-family: "Monument Extended", sans-serif;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 4%;
  direction: ltr;
  padding: 0;
  margin: 0;
}

.button-link-2 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #28a745;
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 15px;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  width: 95%;
  font-weight: bold;
  margin: 10px;
  height: 65px;
  line-height: 65px;
  transition:
    box-shadow 0.3s ease,
    background-color 0.3s ease;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.button-link-2:hover {
  background-color: #216837;
  box-shadow: 0px 4px 15px rgba(33, 104, 55, 0.5);
  color: white;
}

.button-link-2:active {
  background-color: #1e5e2e;
  box-shadow: 0px 2px 8px rgba(30, 94, 46, 0.5);
}

.copied-message-2 {
  display: none;
  width: 94%;
  position: relative;
  background-color: #0f4d7ce3;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  bottom: 13%;
  left: 47%;
  transform: translateX(-50%);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.copied-message-2.show {
  display: inline-block;
}

.promo-action input,
.button-link-2 {
  height: 73px;
  padding: 0 20px;
  font-size: 42px;
  margin: 0 10px;
  border-radius: 15px;
  cursor: pointer;
  font-family: "Monument Extended";
  font-weight: 800;
  font-style: normal;
  text-align: center;
}

.promo-action input,
.button-link-2 {
  max-width: initial;
  width: initial;
}

[lang="ar"] .button-link-2 {
  max-width: 264px;
  width: 100%;
}

.promo-action #promoCode {
  font-size: 22px;
  text-align: center;
  font-family: Monument Extended;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  background-color: #f4f4f4;
  color: #14a0ff;
}

.promo-action button {
  background-color: #28a745;
  width: 166px;
  font-family: "Roboto";
  font-size: 18px;
}

.promo-action button:hover {
  background-color: #216837;
}

.promo-action button:active {
  background-color: #1e5e2e;
}

.promo-action input,
.promo-action button {
  margin: 11px 0;
  height: 105px;
  padding: 0 20px;
  border-radius: 15px;
  cursor: pointer;
  font-family: "Monument Extended";
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 4%;
  font-style: normal;
  text-align: center;
  color: white;
  border: none;
}

.promo-action input {
  background-color: #ffffff;
  color: rgba(20, 160, 255, 1);
  max-width: 469px;
  width: initial;
}

.promo-action button i {
  margin-left: 5px;
}

.promo-action button img {
  margin-left: 5px;
  vertical-align: middle;
}

.author-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border-radius: 20px;
  padding: 60px 40px;
  max-width: 1200px;
  margin: 95px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  flex-direction: row-reverse;
  gap: 16px;
}

html[lang="ar"] .author-section {
  flex-direction: row-reverse;
}

.author-action {
  flex-grow: 1;
}

.logo img {
  width: 100px;
}

.author-action .logo {
  width: 30px;
  margin-left: 40px;
  vertical-align: middle;
}

[lang="ar"] .author-action .logo {
  width: 100%;
  max-width: 43px;
}

.author-action h2 {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  color: #000;
  margin-bottom: 10px;
}

.author-action p {
  font-size: 18px;
  line-height: 150%;
  color: #333;
  text-align: justify;
  max-width: 785px;
}

html[lang="ar"] .author-action {
  text-align: right;
}

html:not([lang="ar"]) .author-action {
  text-align: left;
}

.author-image-container {
  flex-shrink: 0;
  margin-left: 20px;
}

html[lang="ar"] .author-image-container {
  margin-left: 0;
  margin-right: 0px;
}

.author-image-container img {
  width: 239px;
  height: 239px;
  border-radius: 50%;
  object-fit: cover;
}

.popup-container {
  margin-bottom: 114px;
}

.popup {
  margin-top: 16px;
}

.popup-button {
  background: #3766a9;
  color: #ffffff;
  padding: 0 28px;
  width: 100%;
  height: 64px;
  border: none;
  outline: none;
  border-radius: 15px;
  font-size: 24px;
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
}

.popup-button.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.popup-button__number {
  color: #1b9854;
  font-size: 32px;
  font-weight: bold;
  margin-right: 24px;
  letter-spacing: 1px;
  line-height: 150%;
  margin-bottom: 10px;
}

html[lang="ar"] .popup-button__number {
  margin-left: 24px;
  margin-right: 0;
  margin-bottom: 10px;
}

.popup-button i {
  margin-left: 5px;
  margin-top: 15px;
  transition: transform 0.2s;
}

.popup-button.active i {
  transform: rotate(-180deg);
}
.popup-button i {
  position: absolute;
  right: 28px;
  top: 1px;
  left: initial;
  margin: 0;
  font-size: 40px;
}

html[lang="ar"] .popup-button i {
  position: absolute;
  left: 28px;
  top: 10px;
  right: initial;
  margin: 0;
}

html:not([lang="ar"]) .popup-button i {
  float: right;
}

.popup-panel {
  max-height: 0;
  overflow: hidden;
  background-color: #3766a9;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  transition: max-height 0.3s ease;
}

.popup-panel.open {
  max-height: 1000px;
}

.popup-button.active i {
  transform: rotate(180deg);
}

[lang="ar"] .popup-button.active i {
  transform: rotate(-180deg);
}

.popup-panel p {
  margin: 0;
  list-style: none;
  padding: 10px 40px;
  color: #fff;
  direction: ltr;
  font-size: 16px;
  text-align: justify;
}

html[lang="ar"] .popup-panel p,
html[lang="ar"] .popup-panel div {
  padding: 8px 35px;
  direction: rtl;
}

html:not([lang="ar"]) .popup-panel p,
html:not([lang="ar"]) .popup-panel div {
  padding: 8px 35px;
}

.popup-panel p:last-child {
  border-bottom: none;
}

.popup-button.active + .popup-panel {
  max-height: none;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  padding: 15px 20px;
  font-size: 16px;
  color: #fff;
  background-color: #3766a9;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.4s;
}

html[lang="ar"] .back-to-top {
  right: auto;
  left: 20px;
}

.back-to-top.hidden {
  display: none;
}

.download-area {
  position: relative;
}

.modal {
  display: none;
  z-index: 1000;
  left: 0;
  top: 100%;
  background-color: #ffffff0d;
  padding: 20px;
  width: auto;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.modal-content {
  padding: 20px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.download-options a {
  display: inline-block;
  width: 120px;
  height: 40px;
  line-height: 40px;
  color: white;
  text-align: center;
  background-color: #0f4d7c;
  margin-right: 10px;
  border-radius: 5px;
  transition: background-color 0.3s;
  text-decoration: none;
  font-size: 16px;
}

.download-options a:hover {
  background-color: #0056b3;
}

.download-options a img {
  filter: brightness(0) invert(1);
  vertical-align: middle;
  margin-right: 5px;
  width: 24px;
  height: 24px;
}

.site-footer {
  margin: 0 auto;
  padding: 40px 120px;
  text-align: center;
  color: white;
  position: relative;
  background-color: #003580;
  z-index: 2;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  max-width: 1185px;
  margin: 0 auto;
}

.footer-logo img {
  max-width: 150px;
}

.footer-navigation ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-navigation ul li {
  margin: 0 15px;
}

.footer-navigation ul li a {
  text-decoration: none;
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding: 0;
  color: #fff;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;

  & > p {
    margin: 0;
  }
}

body.error404 .site-content {
  padding: 0 !important;
}

.bckg-404 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  background-color: #ffffff;
}

._404-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  max-width: 1200px;
  width: 100%;
  padding: 20px;
}

._404-image-container img {
  max-width: 100%;
  height: auto;
}

._404-text-container {
  max-width: 500px;
  padding: 20px;
}

._404-text-container ._404-page-title {
  font-size: 2rem;
  font-weight: bold;
  color: #1b3b64;
  margin-bottom: 15px;
}

._404-text-container p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}

._404-text-container p strong {
  color: #1b3b64;
}

._404-text-container p a {
  color: #0066cc;
  text-decoration: underline;
}

._404-text-container a._404-button {
  display: inline-block;
  padding: 10px 30px;
  background-color: #1b3b64;
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
  margin-top: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

._404-text-container a._404-button:hover {
  background-color: #004c99;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}

html[lang="ar"] ._404-container {
  flex-direction: row-reverse;
}

html[lang="ar"] ._404-text-container p {
  direction: ltr;
  text-align: right;
}

.author-info-section {
  background-color: #07285a;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
}

.author-info-container {
  padding-top: 80px;
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  width: 100%;
}

.author-text {
  flex: 1;
  color: #ffffff;
  text-align: right;
  font-family: "Roboto", sans-serif;
}

.author-text h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  text-align: left;
  color: #ffffff;
}

.author-text h2 {
  font-size: 2.625rem;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  text-align: left;
  color: #ffffff;
}

.author-text p {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.5;
  text-align: left;
}

.author-photo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.author-photo img {
  width: 31vw;
  height: 28vw;
  border-radius: 47%;
  border: 0.375rem solid #ffffff;
  object-fit: cover;
}

.author-photo-post {
  flex: 0 0 28vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.author-photo-post img {
  width: 26vw;
  height: 26vw;
  border: none;
  object-fit: contain;
}

.author-link {
  color: black;
  text-decoration: none;
  transition:
    color 0.3s ease,
    text-decoration 0.3s ease;
}

.author-link:hover {
  color: #0bbaef !important;
  text-decoration: underline !important;
}

.image-link img {
  pointer-events: none;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
  display: block;
}

.image-link:hover img {
  transform: scale(1.05);
  filter: brightness(0.8);
}

@media (hover: hover) {
  .image-link:hover img {
    filter: brightness(0.8);
  }
}

html[lang="ar"] .author-text h1,
html[lang="ar"] .author-text h2,
html[lang="ar"] .author-text p {
  text-align: right;
}

html[lang="ar"] .author-info-container {
  flex-direction: row-reverse;
}
.error404 .site-content-contain {
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.error404 .content-area {
  height: 100%;
}
.error404 .site-content {
  flex: 1;
}
.error404 .site-main {
  height: 100%;
}
.bckg-404 {
  height: 100%;
}
.error404 .site-footer {
  width: 100%;
}

.content-text .mt-s {
  margin-top: 20px;
}

.link-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.mainA a {
  padding: 0 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  margin-bottom: 2px;
  font-size: 1.2rem !important;
  text-decoration: underline;
  color: white !important;
}

.mainA {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: white;
}

.mainA p {
  margin: 0;
}

.content-promo {
  max-width: 1272px;
  width: 100%;
  margin: 0px auto 30px;
  padding: 0 16px;
}

.current-menu-item {
  background-color: rgb(30, 58, 95);
  border-radius: 4px;
  pointer-events: none;
  cursor: default;
}

.buttonInherit {
  padding: 0 !important;
  font-size: inherit !important;
  background-color: transparent !important;
  outline: none !important;
}

.buttonInherit:hover {
  box-shadow: none !important;
  text-decoration: underline !important;
}

.name-wrapper {
  display: flex;
  gap: 47px;
  align-items: center;
}

.logo-desktop {
  display: block;
}

.logo.logo-mobile {
  display: none;
}

.button-text {
  width: 100%;
  text-align: center;
  display: block;
}

.menu ul li a {
  white-space: nowrap;
}

.registration-svg {
  display: none;
}

@media (min-width: 1419px) {
  .promo-section {
    height: 596px;
  }
}

@media (max-width: 1280px) {
  .header-inner > .menu {
    gap: 40px;
  }

  .header-inner {
    padding: 0 32px;
    max-width: 100%;
  }

  .menu-item {
    font-size: 14px;
  }

  .menu ul li a {
    line-height: 120%;
  }

  .button {
    width: auto;
    min-width: 95px;
    padding: 10px 16px;
  }
}

@media (max-width: 1024px) {
  .header-inner {
    padding: 0 20px;
  }

  .lang-dropdown a {
    font-size: 14px;
  }

  .header-inner > .menu {
    gap: 24px;
  }

  .menu-item {
    font-size: 13px;
  }

  .header-right-content-container,
  .header-right-content-wrapper {
    gap: 16px;
  }

  .lang-btn {
    gap: 4px;
  }

  .language_img {
    width: 22px;
    height: 22px;
  }

  .promo-section {
    height: auto;
    padding: 0 15px;
    justify-content: center;
  }

  .copied-message-2 {
    width: 82%;
    left: 40%;
  }

  .promo-action input,
  .button-link-2 {
    height: 60px;
    padding: 0 18px;
    font-size: 16px;
    width: 280px;
  }

  .promo-action {
    display: flex;
    margin-right: 15px;
  }

  .promo-action .logo {
    width: 220px;
  }

  .promo-action h2 {
    font-size: 28px;
  }

  .promo-action #promoCode {
    font-size: 20px;
    padding: 8px;
  }

  .promo-action button,
  .promo-action input {
    height: 60px;
    padding: 0 18px;
    font-size: 16px;
  }

  .promo-action input {
    width: 280px;
  }

  .promo-image-container img {
    height: auto;
    max-width: 500px;
  }

  .custom-button {
    margin: 30px 10px 30px;
    font-size: 20px;
  }
  .content-text {
    margin-top: 20px;
  }

  .content-text p {
    font-size: 16px;
  }

  .content-text li {
    font-size: 14px;
  }

  .info-table th,
  .info-table td {
    font-size: 14px;
    padding: 10px;
  }
  .content-title {
    margin-top: 60px;
  }

  .content-title h2 {
    font-size: 28px;
  }

  .content-title h3 {
    font-size: 22px;
  }
  .accordion {
    margin-top: 20px;
  }

  .accordion-button {
    font-size: 20px;
  }

  .accordion-button:hover {
    font-size: 20px;
  }

  .panel ul li {
    font-size: 14px;
  }

  html:not([lang="ar"]) .panel ul li {
    padding: 4px 20px;
  }
  .second-front-page-banner {
    width: 100%;
  }

  .container {
    width: 100%;
  }
  .front-page-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .front-page-buttons .input {
    width: auto;
    margin-bottom: 0;
    margin: 0;
  }

  .front-page-buttons .input input {
    width: 100%;
    max-width: 250px;
    height: 50px;
    font-size: 16px;
    margin: 0;
  }

  .front-page-buttons .button-link {
    width: auto;
    height: 50px;
    font-size: 16px;
    margin: 0;
  }

  .copied-message {
    top: 67%;
  }

  html[lang="ar"] .front-page-buttons .input {
    width: auto;
    margin-bottom: 0;
    margin-left: 10px;
  }

  html[lang="ar"] .front-page-buttons .input input {
    width: 100%;
    max-width: 250px;
    height: 50px;
    font-size: 16px;
  }

  .author-section {
    padding: 20px 40px;
    max-width: 100%;
  }

  .author-action .logo {
    margin-left: initial;
    margin-right: initial;
  }

  .author-action h2 {
    font-size: 24px;
  }

  .author-action p {
    font-size: 14px;
  }

  .author-image-container img {
    width: 120px;
    height: 120px;
  }

  .popup {
    margin-top: 20px;
  }

  .popup-button {
    font-size: 20px;
  }

  .popup-button:hover {
    font-size: 20px;
  }

  .panel p {
    font-size: 14px;
  }

  .author-info-section {
    padding: 5.5rem 16px;
  }

  .author-text h1 {
    font-size: 2.25rem;
    text-align: center;
  }

  .author-text h2 {
    font-size: 1.875rem;
    text-align: center;
  }

  .author-text p {
    font-size: 1rem;
    text-align: center;
  }

  .author-photo-post img {
    width: auto;
    height: auto;
  }

  .header {
    min-height: 74px;
    padding: 0;
  }

  .header-inner {
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    min-height: 74px;
  }

  .logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .menu {
    display: flex;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
  }

  menu.active.scrolled {
    background-color: #002353 !important;
  }

  .menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
  }

  .menu ul li {
    position: relative;
  }

  .menu ul li a {
    color: white;
    text-decoration: none;
    display: block;
  }

  .menu ul li a:hover,
  .menu ul li a.active {
    background-color: #1e3a5f;
    border-radius: 4px;
  }

  .buttons {
    display: flex;
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 1000;
  }

  .language-selector {
    flex: none;
  }

  .sign-up-button a {
    display: block;
    background-size: contain;
  }

  .sign-up-button i.fa-sign-in-alt {
    display: block;
    font-size: 14px;
    color: white;
  }
}

@media (max-width: 920px) {
  .promo-section {
    height: auto;
    padding: 0 15px;
  }

  .menu ul li a {
    line-height: 150%;
  }

  .menu {
    top: 72px;
  }

  .copied-message-2 {
    width: 52%;
    left: 26%;
  }

  .promo-action input,
  .button-link-2 {
    height: 60px;
    padding: 0 18px;
    font-size: 16px;
    width: 210px;
  }

  .promo-action .logo {
    width: 170px;
  }

  .promo-action h2 {
    font-size: 20px;
  }

  .promo-action #promoCode {
    font-size: 18px;
    padding: 8px;
  }

  .promo-action button,
  .promo-action input {
    height: 60px;
    padding: 0 18px;
    font-size: 16px;
  }

  .promo-action input {
    width: 210px;
  }

  .promo-image-container img {
    height: auto;
    max-width: 500px;
  }
}

@media (min-width: 914px) {
}

@media (max-width: 913px) {
  .header-inner {
    padding: 0 16px;
    min-height: 72px;
  }

  .header-right-content-wrapper {
    gap: 20px;
  }

  .header-right-content-container {
    gap: 26px;
  }

  .button-text {
    display: none;
  }

  .registration-svg {
    display: block;
  }

  .sign-up-button .button {
    display: flex;
    justify-content: center;
    padding: 9px 20px;
  }

  .button {
    min-width: 69px;
  }

  .sign-up-button {
    max-width: 69px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 24px;
  }

  .header-right-content-container {
    flex-direction: row-reverse;
  }

  .menu {
    top: 72px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.35);
  }

  #top-menu,
  .footer-menu {
    gap: 10px;
    background-color: transparent;
    position: static;
    max-width: none;
  }

  .menu-item {
    font-size: 16px;
  }

  .selected-lang {
    background-color: transparent;
    box-shadow: none;
  }

  .header-inner > .menu {
    gap: 0;
    padding-top: 25px;
    background-color: #002353;
  }

  .menu ul li a:hover {
    background-color: transparent;
  }

  .menu ul li,
  #top-menu li,
  .footer-menu li {
    width: 100%;
  }

  .menu ul li a,
  #top-menu li a,
  .footer-menu li a {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    border-bottom: none;
    text-align: center;
    padding: 0;
  }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 72px;
  }

  .logo.logo-desktop {
    display: none;
  }

  .logo.logo-mobile {
    display: flex;
  }

  .lang-dropdown.open {
    padding: 0 18px 20px;
    gap: 20px;
    display: flex;
  }

  .header-right-content-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
  }

  .logo,
  .menu-toggle,
  .language-selector,
  .sign-up-button {
    display: flex;
    align-items: center;
  }

  .logo {
    display: flex;
    justify-content: start;
  }

  .section-promo-code .logo {
    order: initial;
  }

  .menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background-color: #001226f2;
    z-index: 1001;
  }

  .menu.active {
    display: flex;
  }

  .menu ul {
    flex-direction: column;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .menu ul li {
    width: 100%;
  }

  .menu ul li:last-child a {
    border-bottom: none;
  }

  .buttons {
    display: flex;
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 1000;
  }

  .menu-toggle {
    display: flex;
    position: relative;
    left: auto;
    top: auto;
  }

  .lang-btn img {
    width: 100%;
  }

  .lang-dropdown {
    top: 48px;
    font-size: 14px;
    margin: 0;
    left: auto;
    right: 0;
  }

  .lang-dropdown a {
    padding: 4px 7px;
    justify-content: center;
  }

  .sign-up-button a {
    display: block;
    background-size: contain;
  }

  .sign-up-button i.fa-sign-in-alt {
    display: block;
    font-size: 14px;
    color: white;
  }

  .header-inner > .menu {
    gap: 0;
  }

  .logo.logo-mobile img {
    width: 124px;
    height: 26px;
    max-width: none;
    object-fit: contain;
  }
}

@media (max-width: 880px) {
  .site-footer {
    padding: 20px 16px 10px;
  }

  html[lang="ar"] .footer-inner {
    flex-direction: row-reverse;
  }

  .footer-inner {
    margin-bottom: 10px;

    & > .logo img {
      width: 124px;
      height: 26px;
    }
  }

  .footer-bottom {
    font-size: 14px;
    font-weight: 500;
  }

  .footer-18plus {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 768px) {
  .promo-section {
    height: auto;
    padding: 0 15px;
  }

  .copied-message-2 {
    width: 36%;
    left: 18%;
  }

  .promo-action input,
  .button-link-2 {
    height: 45px;
    padding: 0;
    font-size: 14px;
    width: 160px;
  }

  .promo-action .logo {
    display: none;
  }

  .promo-action h2 {
    font-size: 16px;
  }

  .promo-action #promoCode {
    font-size: 12px;
  }

  .promo-action button,
  .promo-action input {
    height: 45px;
    padding: 0;
    font-size: 14px;
  }

  .promo-action input {
    width: 160px;
  }

  .promo-image-container img {
    height: auto;
    max-width: 260px;
  }

  .custom-button {
    margin: 30px 10px 30px;
    font-size: 20px;
  }
  .content-text {
    margin-top: 20px;
  }

  .content-text p {
    font-size: 16px;
  }

  .content-text li {
    font-size: 14px;
  }

  .info-table th,
  .info-table td {
    font-size: 14px;
    padding: 10px;
  }
  .content-title {
    margin-top: 40px;
  }

  .content-title h2 {
    font-size: 24px;
  }

  .content-title h3 {
    font-size: 20px;
  }
  .accordion {
    margin-top: 10px;
  }

  .accordion-button {
    font-size: 20px;
  }

  .accordion-button:hover {
    font-size: 20px;
  }

  .panel ul li {
    font-size: 14px;
  }

  html:not([lang="ar"]) .panel ul li {
    padding: 2px 20px;
  }

  .second-front-page-banner {
    width: 100%;
  }

  .container {
    width: 100%;
    padding: 0 15px;
  }
  .front-page-banner {
    padding: 11px;
  }

  .front-page-banner p {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
  }

  .front-page-banner h1 {
    font-size: 30px;
  }

  .front-page-promo-content p {
    font-size: 14px;
  }

  .front-page-promo-content {
    text-align: center;
    color: white;
    position: relative;
    top: 28%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    z-index: 2;
    padding: 25px;
  }

  .front-page-buttons {
    display: flex;
    padding-top: 40px;
    justify-content: center;
    gap: 10px;
  }

  .button-link,
  .front-page-buttons input {
    width: 90%;
    height: 65px;
    font-size: 16px;
  }

  .front-page-buttons button:hover {
    background-color: #216837;
  }

  .front-page-buttons button:active {
    background-color: #1e5e2e;
  }

  .front-page-buttons input,
  .front-page-buttons button {
    margin: 0 10px;
    height: 65px;
    padding: 0 20px;
    border-radius: 15px;
    cursor: pointer;
    font-family: "Roboto";
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: white;
    border: none;
  }

  .front-page-buttons input {
    background-color: #ffffff;
    color: #28a745;
    width: 318px;
  }

  .front-page-buttons button {
    background-color: #28a745;
    width: 166px;
    font-family: "Roboto";
    font-size: 18px;
  }

  .copied-message {
    top: 66%;
  }

  .author-section {
    padding: 15px;
    flex-direction: column;
  }

  html[lang="ar"] .author-section {
    flex-direction: column;
  }

  [lang="ar"] .author-action .logo {
    max-width: 34px;
  }

  html[lang="ar"] .author-action {
    text-align: center;
  }

  html:not([lang="ar"]) .author-action {
    text-align: center;
  }

  .author-action {
    margin-top: auto;
  }

  .author-action .logo {
    margin: auto;
  }

  .author-action h2 {
    font-size: 20px;
  }

  .author-action p {
    font-size: 14px;
    padding: 15px;
  }

  .author-image-container img {
    width: 100px;
    height: 100px;
  }

  .popup {
    margin-top: 10px;
  }

  .popup-button {
    font-size: 16px;
  }

  .popup-button:hover {
    font-size: 16px;
  }

  .popup-panel p {
    font-size: 14px;
  }

  ._404-container {
    flex-direction: column;
    text-align: center;
  }

  ._404-image-container img {
    max-width: 80%;
    height: auto;
  }

  ._404-image-container {
    margin-bottom: 0px;
  }

  ._404-text-container {
    max-width: 100%;
    padding: 5px;
  }

  ._404-text-container ._404-page-title {
    margin-bottom: 5px;
  }
  html[lang="ar"] ._404-container {
    flex-direction: column;
    text-align: center;
  }

  html[lang="ar"] ._404-image-container img {
    max-width: 80%;
    height: auto;
  }

  html[lang="ar"] ._404-image-container {
    margin-top: 0px;
    margin-bottom: 20px;
  }

  html[lang="ar"] ._404-text-container {
    max-width: 100%;
    padding: 5px;
    text-align: right;
  }

  html[lang="ar"] ._404-text-container ._404-page-title {
    margin-bottom: 5px;
  }

  .site-content {
    padding: 68px 0 0;
  }
  .promo-first-page::before {
    top: -68px;
    height: calc(100% + 68px);
  }
  .author-info-container {
    flex-direction: column;
    text-align: center;
  }

  .author-text {
    text-align: center;
  }

  .author-text h1 {
    font-size: 1.75rem;
    text-align: center;
  }

  .author-text h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .author-text p {
    font-size: 0.875rem;
    text-align: center;
  }

  .author-photo img {
    height: auto;
    width: auto;
  }

  html[lang="ar"] .author-info-container {
    flex-direction: column;
    text-align: right;
  }
  html[lang="ar"] .author-text h1,
  html[lang="ar"] .author-text h2 {
    text-align: center;
  }

  .header {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo,
  .menu-toggle,
  .language-selector {
    display: flex;
    align-items: center;
  }

  .logo.logo-mobile {
    display: flex;
    width: 100%;
    max-width: 200px;
  }

  .menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background-color: #001226f2;
    z-index: 1001;
  }

  .sign-up-button a {
    display: block;
    background-size: contain;
  }

  .sign-up-button i.fa-sign-in-alt {
    display: block;
    font-size: 14px;
    color: white;
  }
  .header {
    background-color: rgba(0, 0, 0, 0.57);
    padding: 0;
  }

  .header-inner {
    min-height: 72px;
  }

  .lang-dropdown a {
    padding: 0;
  }
}

@media (max-width: 678px) {
  .popup-button i {
    top: initial;
    margin: 0;
    font-size: 20px;
  }
  html[lang="ar"] .popup-button i {
    top: initial;
    margin: 0;
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .content-img {
    max-width: none;
  }

  .author-info-section {
    padding-top: 0;
  }

  .author-info-container {
    padding-top: 30px;
  }
}

@media (max-width: 480px) {
  .header {
    min-height: 72px;
    padding: 0;
  }

  .header-inner {
    padding: 0 16px;
    min-height: 72px;
  }

  .logo.logo-mobile {
    width: auto;
    max-width: 124px;
  }

  .logo.logo-mobile img {
    width: 124px;
    height: 26px;
    max-width: none;
  }

  .header-right-content-wrapper {
    gap: 20px;
  }

  .language-selector,
  .menu-toggle {
    flex: 0 0 auto;
  }

  .lang-btn {
    gap: 4px;
  }

  .lang-btn > span {
    font-size: 16px;
  }

  .lang-dropdown {
    top: 42px;
    left: auto;
    right: 0;
    margin: 0;
    min-width: 88px;
  }

  .lang-dropdown a {
    padding: 4px 8px;
  }

  .menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    gap: 0;
  }

  .menu ul li a {
    padding: 0;
    line-height: 190%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-align: center;
  }

  .promo-section {
    height: auto;
    padding: 15px;
  }

  .copied-message-2 {
    width: 44%;
    left: 23%;
  }

  .promo-action input,
  .button-link-2 {
    height: 45px;
    padding: 0;
    font-size: 16px;
    width: 160px;
  }

  .promo-action {
    margin-right: 0;
  }

  .promo-action .logo {
    display: none;
  }

  .logo {
    max-width: 124px;

    & > a {
      display: flex;
      align-items: center;
    }
  }

  .logo img {
    max-width: 124px;
  }

  .promo-action h2 {
    margin: 8px;
    font-size: 16px;
  }

  .promo-action #promoCode {
    font-size: 12px;
  }

  .promo-action button,
  .promo-action input {
    height: 45px;
    padding: 0;
    font-size: 16px;
  }

  .promo-action input {
    width: 180px;
  }

  .promo-image-container img {
    display: none;
  }

  .custom-button {
    width: 100%;
    margin: 30px auto;
    font-size: 18px;
  }
  .content-text {
    margin-top: 20px;
  }

  .content-text p {
    font-size: 14px;
  }

  .content-text li {
    font-size: 12px;
  }

  .info-table th,
  .info-table td {
    font-size: 12px;
    padding: 8px;
  }
  .accordion {
    margin-top: 10px;
  }

  .accordion-button {
    font-size: 18px;
  }

  .accordion-button:hover {
    font-size: 18px;
  }

  .panel ul li {
    font-size: 12px;
  }

  html:not([lang="ar"]) .panel ul li {
    padding: 0px 10px;
  }

  .front-page-banner h1 {
    font-size: 28px;
    padding: 0px !important;
  }

  .front-page-promo-content {
    text-align: center;
    color: white;
    position: relative;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 380px;
    z-index: 2;
    padding: 5px;
  }

  .front-page-promo-content p {
    font-size: 14px;
  }

  .front-page-buttons {
    display: flex;
    flex-direction: column;
    padding-top: 5px;
    justify-content: center;
    align-items: center;
  }

  .front-page-buttons .input input,
  .front-page-buttons .button-link {
    width: 100%;
    max-width: 370px;
    margin: 0;
    height: 55px;
    font-size: 16px;
    border-radius: 10px;
  }

  .front-page-buttons input {
    background-color: #ffffff;
    color: #28a745;
  }

  .front-page-buttons .input {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 0;
    margin-right: 0px;
  }

  .front-page-buttons .button-link {
    background-color: #28a745;
    color: white;
  }

  .front-page-buttons .button-link:hover,
  .front-page-buttons .button-link:active {
    background-color: #1e5e2e;
  }

  .copied-message {
    top: 62%;
    left: 51%;
  }

  html[lang="ar"] .front-page-banner h1 {
    font-size: 28px;
    padding: 0px !important;
  }

  html[lang="ar"] .front-page-promo-content {
    text-align: center;
    color: white;
    position: relative;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    z-index: 2;
    padding: 5px;
  }

  html[lang="ar"] .front-page-promo-content p {
    font-size: 14px;
  }

  html[lang="ar"] .front-page-buttons {
    display: flex;
    flex-direction: column;
    padding-top: 5px;
    justify-content: center;
    align-items: center;
  }

  html[lang="ar"] .front-page-buttons .input input,
  html[lang="ar"] .front-page-buttons .button-link {
    width: 100%;
    max-width: 100%;
    margin: 10px 0;
    height: 50px;
    font-size: 16px;
    border-radius: 10px;
  }

  html[lang="ar"] .front-page-buttons input {
    background-color: #ffffff;
    color: #28a745;
  }

  html[lang="ar"] .front-page-buttons .input {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 0;
    margin-right: 0px;
  }

  html[lang="ar"] .front-page-buttons .button-link {
    background-color: #28a745;
    color: white;
  }

  html[lang="ar"] .front-page-buttons .button-link:hover,
  html[lang="ar"] .front-page-buttons .button-link:active {
    background-color: #1e5e2e;
  }

  html[lang="ar"] .copied-message {
    top: 62%;
    left: 51%;
  }

  .author-section {
    padding: 15px;
    flex-direction: column;
  }

  html[lang="ar"] .author-section {
    flex-direction: column;
    margin: 20px 16px;
  }

  .author-section {
    margin: 20px 16px;
  }

  html[lang="ar"] .author-action {
    width: 100%;
    text-align: center;
  }

  .author-action {
    margin-top: 0px;
  }

  .author-action .logo {
    margin: auto;
  }

  .author-action h2 {
    font-size: 20px;
  }

  .author-action p {
    padding: 15px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 13px;
    padding: 0;
    width: 100%;
    max-width: 350px;
    text-align: left;
  }

  html[lang="ar"] .author-action p {
    text-align: right;
  }

  .author-image-container img {
    width: 100px;
    height: 100px;
  }

  .popup {
    margin-top: 10px;
  }

  .popup-button {
    font-size: 16px;
  }

  .popup-button:hover {
    font-size: 16px;
  }

  .popup-panel p {
    font-size: 12px;
  }
  .site-content {
    padding: 52px 0 0;
  }
  .promo-first-page::before,
  .download-first-page::before {
    top: -52px;
    height: calc(100% + 52px);
  }
  [lang="ar"] .popup-button {
    padding: 0px 28px 0 50px;
  }

  .popup-button {
    padding: 0px 50px 0 28px;
  }
  .author-text h1 {
    font-size: 1.375rem;
  }

  .author-text h2 {
    font-size: 1.125rem;
  }

  .author-text p {
    font-size: 18px;
    font-weight: 400;
  }

  h3,
  h2:not(.author-name) {
    font-size: 18px;
  }
  .author-section {
    padding: 15px 10px;
    max-width: 370px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .name-wrapper {
    gap: 20px;

    & > h2 {
      font-size: 23px;
      font-weight: 500;
    }
  }

  .author-image-container {
    max-width: 145px;
    width: 100%;

    & > img {
      width: 100%;
      height: auto;
    }
  }

  .custom-button {
    height: 65px;
    font-weight: 600;
    font-size: 23px;
    line-height: 100%;
  }

  .lang-dropdown {
    left: auto;
    right: 0;
  }

  .sign-up-button .button {
    width: 100%;
    text-align: center;
    max-width: 176px;
    max-height: 40px;
  }

  .selected-lang {
    background-color: transparent;
    box-shadow: none;
  }

  .lang-dropdown a {
    flex-direction: row-reverse;
    padding: 0;
  }

  .menu ul {
    position: relative;
  }

  .menu ul li a {
    border-bottom: none;
    padding: 0;
    line-height: 150%;
  }

  .language_img {
    width: 32px;
    height: 32px;
  }

  .header-right-content-wrapper {
    gap: 20px;
  }

  .menu.active,
  .menu.active.scrolled {
    background-color: #002353;
    gap: 0;
    margin-bottom: 25px;
  }

  .menu ul li a:hover,
  .menu ul li a.active {
    background-color: transparent;
  }

  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 1001;
  }
}

@media (max-width: 380px) {
  .content-title {
    margin-top: 35px;
  }

  .content-title h2 {
    font-size: 23px;
  }

  .content-title h3 {
    font-size: 20px;
  }
  .front-page-banner h1 {
    font-size: 14px;
  }

  .front-page-promo-content p {
    font-size: 10px;
  }

  .header-right-content-wrapper {
    gap: 5px;
  }
  .header-inner {
    padding: 0 16px;
    gap: 10px;
  }
}
