@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Almarai:wght@200;300;400;500;700;800;900&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
}

html,
body {
  margin: 0;
  padding: 0;
}

a:hover,
a:focus {
  text-decoration: none !important;
}

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

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #000000;
}

p {
  margin: 0;
  color: #000000;
}

input,
textarea,
a,
button {
  outline: none !important;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: #000000;
}

a:hover {
  color: #0047bb;
}

html {
  font-size: 14px;
}

h2 {
  font-size: 18px;
}

h3 {
  font-size: 16px;
}

h4 {
  font-size: 14px;
}

h5 {
  font-size: 12px;
}

h6 {
  font-size: 10px;
}

body {
  font-weight: 400;
  line-height: 1.5;
  background-color: #fff;
  color: #000;
  font-family: "Almarai";
}

.font-bold {
  font-weight: 700;
}

.font-extra-bold {
  font-weight: 800;
}

.font-light {
  font-weight: 300;
}

.form-group {
  margin-bottom: 18px;
}

.border-right {
  border-right: 1px solid #A6A6A6;
}

.form-control {
  height: 45px;
  background-color: #F3F4F6;
  border: 1px solid #F3F4F6;
  border-radius: 8px;
  box-shadow: none !important;
  padding: 10px 25px;
  font-size: 14px;
}

.form-control:focus {
  border-color: #0047bb;
}

textarea.form-control {
  height: auto;
}

.main-wrapper {
  position: relative;
  min-height: 100%;
}

.bg-primary {
  background-color: #0047bb !important;
}

.text-primary {
  color: #0047bb !important;
}

.border-primary {
  border-color: #0047bb !important;
}

button {
  cursor: pointer;
}

.pointer {
  cursor: pointer;
}

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: none;
}

.text-underline {
  text-decoration: underline;
}

.text-black {
  color: #000 !important;
}

.font-size-12 {
  font-size: 12px !important;
}

::-moz-placeholder {
  color: #6C737F !important;
  font-size: 12px !important;
}

::placeholder {
  color: #6C737F !important;
  font-size: 12px !important;
}

::-moz-placeholder {
  color: #6C737F !important;
  font-size: 12px !important;
}

::-ms-placeholder {
  color: #6C737F !important;
  font-size: 12px !important;
}

::-o-placeholder {
  color: #6C737F !important;
  font-size: 12px !important;
}

::-webkit-placeholder {
  color: #6C737F !important;
  font-size: 12px !important;
}

.btn {
  padding: 12px 30px;
  font-size: 14px;
  border-radius: 8px;
}

.btn-primary {
  color: #fff;
  background: #0047bb;
  border-color: #0047bb;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-primary::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  z-index: -1;
  background-color: #3838d8;
}

.btn-primary:hover,
.btn-primary:focus {
  color: #fff !important;
  border-color: #0047bb;
  background-color: #0047bb !important;
  box-shadow: none !important;
}

.btn-primary:hover::before,
.btn-primary:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.main-header {
  position: relative;
  padding: 30px 0 0px;
  left: 0;
  width: 100%;
}

.main-header.bg-header::before {
  position: absolute;
  z-index: -1;
  content: "";
  width: 100%;
  height: 220%;
  top: 0;
  left: 0;
  background: url(../images/bg-header.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.main-header .main-header-content {
  background: #FFFFFF;
  box-shadow: 0px 4px 89.8px rgba(0, 0, 0, 0.1);
  border-radius: 60px;
  padding: 20px;
}

.main-header .navbar .navbar-collapse .nav-link {
  cursor: pointer;
  display: block;
  padding: 9px 14px;
  font-size: 16px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.main-header .navbar .navbar-collapse .nav-link:not(.btn) {
  color: #000;
}

.main-header .navbar .navbar-collapse .nav-link.active,
.main-header .navbar .navbar-collapse .nav-link:hover {
  color: #0047bb;
}

.main-header .navbar .btn-icon {
  background-color: #0047bb;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.main-header .navbar .btn-icon img {
  max-height: 25px;
}

@media (max-width: 991px) {
  .main-header {
    padding: 20px 0;
  }

  .main-header .navbar-brand img {
    max-height: 50px;
  }

  .main-header .navbar-toggler:focus {
    box-shadow: none !important;
  }

  .main-header .navbar .navbar-collapse .nav-link {
    font-size: 14px;
  }

  .main-header .navbar .navbar-collapse .nav-link:not(.btn) {
    color: #2b2b2b;
  }

  .main-header .navbar-collapse {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 11111;
    background: rgb(255, 255, 255);
    top: 0px;
    inset-inline-start: -110%;
    box-shadow: rgba(41, 41, 41, 0.1098039216) 0px 20px 20px;
    display: block;
    transition: all .2s ease-in-out;
    padding-top: 30px;
  }

  .main-header .navbar-collapse .navbar-nav {
    padding: 10px;
  }

  .main-header.is-open .navbar-collapse {
    inset-inline-start: 0%;
  }
}

.navbar-toggler.collapsed {
  color: #fff;
}

.navbar-toggler {
  position: relative;
  border: 0 !important;
  z-index: 99999;
}

.navbar-toggler img {
  max-height: 20px;
}

.navbar-toggler:not(.collapsed) i::before {
  content: "\f00d";
}

@media (min-width: 992px) and (max-width: 1200px) {
  .main-header .navbar .navbar-collapse .nav-link {
    padding: 9px 12px;
    font-size: 14px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1240px;
    max-width: 100%;
  }
}

.section {
  padding: 40px 0px;
}

.widget_item-card {
  background: #FFFFFF;
  box-shadow: 0px 26.7864px 117.19px rgba(32, 36, 138, 0.06);
  border-radius: 34.4493px;
  padding: 20px 20px;
}

.widget_item-card .widget_item-header {
  padding: 18px 0px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.widget_item-card .widget_item-body {
  padding: 30px 30px;
}

@media (max-width: 991px) {
  .widget_item-card {
    padding: 20px 0;
  }

  .widget_item-card .widget_item-body {
    padding: 30px 10px;
  }
}

.widget_item-system {
  background: #FFFFFF;
  box-shadow: 0px 26.7864px 117.19px rgba(32, 36, 138, 0.06);
  border-radius: 25px;
  padding: 30px;
  margin-bottom: 30px;
}

.widget_item-system .widget_item-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #0047bb;
  flex: 0 0 auto;
}

.widget_item-system .widget_item-icon img {
  max-height: 35px;
}

.widget_item-system .check {
  width: 18px;
  height: 18px;
  border: 2px solid #0047bb;
  border-radius: 5px;
  margin-top: -2px;
}

.widget_item-system.toogle-check {
  cursor: pointer;
}

.widget_item-system.selected .check {
  background: url(../images/check2.svg);
  background-position: center;
  background-size: auto;
  background-repeat: no-repeat;
  border-color: #B4B4FD;
  background-color: #B4B4FD;
}

.divider {
  width: 100%;
  margin: 40px auto;
  background-color: rgba(0, 0, 0, 0.1);
  height: 1px;
}

.triangle-up {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 15px solid #0047bb;
}

.input-group .form-control {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group .btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
}

.input-group .btn-group.btn-group-lg {
  min-width: 140px;
}

@media (max-width: 991px) {
  .input-group .btn-group {
    min-width: 90px;
    font-size: 12px;
  }
}

.bg-danger {
  background-color: #F22327 !important;
  color: #FFF;
}

.bg-primary {
  background-color: #0047bb !important;
  color: #FFF;
}

.bg-success {
  background-color: #54EA59 !important;
  color: #FFF;
}

.widget_item-subscribe {
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 22px 17px;
  cursor: pointer;
}

.widget_item-subscribe.selected {
  border-color: #0047bb;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown .dropdown-button {
  background-color: #fff;
  color: 0;
  cursor: pointer;
}

.dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 5px;
  inset-inline-end: 0;
}

.dropdown .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.dropdown .dropdown-content a:hover {
  background-color: #fbfbfb;
}

.dropdown .show {
  display: block;
}

@media (min-width: 992px) {
  .divider-vertical {
    background: rgba(217, 217, 217, 0.1019607843);
    width: 8px;
    height: 110%;
    position: absolute;
    top: -5%;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
  }
}

.icon-phone {
  max-height: 16px;
}

.main-footer .footer-top {
  position: relative;
  background: #FFFFFF;
  box-shadow: 0px 4px 223.7px rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  padding: 60px 0 20px;
  margin-top: 40px;
}

.main-footer .footer-top .logo img {
  height: 100px;
}

.main-footer .footer-menu li a {
  color: #000000;
  display: inline-block;
  padding: 8px 0;
  font-size: 16px;
}

.main-footer .footer-bottom {
  padding: 40px 0;
}

.main-footer .name-website {
  margin-top: -5px;
}

.breadcrumb-item a {
  color: rgba(40, 45, 49, .3);
}

.breadcrumb-item+.breadcrumb-item::before {
  content: url(../images/chevron-left.svg);
  transform: translateY(3px);
}

.breadcrumb-item.active {
  color: #0047bb;
  font-weight: bold;
}

.info-subsc {
  inset-inline-end: -11px;
  top: -70px;
  transform: rotate(13deg);
}

.btn-outline-secondary:hover {
  background-color: #0047bb;
  border-color: #0047bb;
  ;
  color: #FFF;
}


@media(min-width:992px) {
  .scroll {
    height: 600px;
    overflow: hidden;
    position: relative;
  }
}

.toltip {
  position: relative;
  margin-inline-start: 7px;
  transform: translateY(-2px);
  display: inline-block;
}

.toltip .toltip-icon img {
  max-height: 14px;
}

.toltip .toltip-content {
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease-in-out;
  position: absolute;
  bottom: 24px;
  max-width: 300px;
  background-color: #FFF;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 26.7864px 117.19px #20248a36;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 400;
  width: max-content;
  z-index: 2;
}

.toltip:hover .toltip-content {
  opacity: 1;
  visibility: visible;
}

/* 
 */

.line {
  width: 60%;
  height: .5px;
  background-color: rgba(0, 0, 0, .3);
  margin: 14px 0;
  position: relative;
}

.line::before {
  position: absolute;
  content: "";
  inset-inline-start: 0;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 5px solid #0047bb;
  transform: translateY(-50%);
}

.table thead td {
  padding: 1rem 1.3rem;
}

.table tbody td,
.table tfoot td {
  padding: 1.6rem 1.3rem;
}

.table thead tr td:not(:nth-of-type(1)),
.table tbody tr td:not(:nth-of-type(1)),
.table tfoot tr td:not(:nth-of-type(1)) {
  text-align: center;
}

.table tfoot tr.primary td:nth-of-type(1) {
  background-color: #0047bb;
  color: #FFF;
}

.table tfoot tr.primary td:nth-of-type(2) {
  background-color: #0047bb;
  color: #FFF;
}

.table tfoot tr.secondary td:nth-of-type(1) {
  background-color: rgba(213, 213, 213, .3);
}

.table tfoot tr.secondary td:nth-of-type(2) {
  background-color: #D5D5D5;
}

.select-box {

  position: relative;

}


.selected-option {
  background-color: #eee;
  border-radius: .5rem;
  overflow: hidden;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.selected-option div {
  position: relative;
  padding: 0 2.8rem 0 .5rem;
  width: 6rem;
}

.selected-option .flag-wrapper::after {
  content: "";
  position: absolute;
  right: .8rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: .8rem;
  height: .8rem;
  border-right: .12rem solid #000;
  border-bottom: .12rem solid #000;
}


.selected-option div.active::after {
  transform: translateY(-50%) rotate(225deg);
}



.select-box .options {
  position: absolute;
  top: 100%;
  /* يظهر مباشرة تحت select */
  left: 0;
  width: 100%;
  background-color: #fff;
  border-radius: .5rem;
  border: 1px solid #ccc;
  display: none;
  z-index: 1000;
  /* مهم حتى يكون فوق بقية العناصر */
}


.select-box .options.active {
  display: block;
}

.select-box .options::before {
  position: absolute;
  content: "";
  left: 1rem;
  top: -1.2rem;

  width: 0;
  height: 0;
  border: 0.6rem solid transparent;
  border-bottom-color: var(--primary);

  z-index: 10;
  /* تأكد أنه أعلى من العلم */
}


input.search-box {
  background-color: var(--primary);
  color: black;
  border-radius: .5rem .5rem 0 0;
  padding: 1.4rem 1rem;
}

.select-box ol {
  list-style: none;
  max-height: 23rem;
  overflow: overlay;
}

.select-box ol::-webkit-scrollbar {
  width: 0.6rem;
}

.select-box ol::-webkit-scrollbar-thumb {
  width: 0.4rem;
  height: 3rem;
  background-color: #ccc;
  border-radius: .4rem;
}

.select-box ol li {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.select-box ol li.hide {
  display: none;
}

.select-box ol li:not(:last-child) {
  border-bottom: .1rem solid #eee;
}

.select-box ol li:hover {
  background-color: lightcyan;
}

.select-box ol li .country-name {
  margin-left: .4rem;
}

@media (max-width: 768px) {
  .select-box .options {
    max-height: 300px;
    overflow-y: auto;
  }
}

.section-plan-contnet {
  border-radius: 34px;
  padding: 50px;

}

.plan-navigation {
  padding: 0px 24px;
}

.plan-navigation .swiper-next,
.plan-navigation .swiper-prev {
  background-color: transparent;
  cursor: pointer;
}

.plan-head {
  border-bottom: 1px solid rgba(0, 0, 0, .5);
  padding-bottom: 40px;
  height: 100%;
}

.table-row .feature-cell {
  border-bottom: 1px solid rgba(0, 0, 0, .5);
  min-height: 80px;
  display: flex;
  align-items: center;
  padding: 0px 10px;
}

.table-row .feature-cell:nth-child(odd) {
  background-color: rgba(84, 123, 212, .1);
}

@media(max-width:991px) {
  .section-plan-contnet {
    padding: 10px;
  }
}


.card-price {
  border: 1px solid rgba(40, 45, 49, .5);
  border-radius: 15px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.card-price .plan-title {
  font-size: 24px;
}

.card-price .plan-price .price {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 46px;
}

.card-price .card-header {
  margin-bottom: 40px;
}

.card-price .plan-subtitle {
  margin-bottom: 40px;
}

.card-price .plan-price {
  margin-bottom: 10px;
}

.card-price .feature-list {
  margin-bottom: 30px;
}

.card-price.master {
  background: #0047BB;
  border: 0;
  border-radius: 15px;
  box-shadow: 0px 44px 64px rgba(72, 118, 235, 0.3);
  padding-bottom: 70px;
}


.card-price.master * {
  color: #FFF !important;
}

.card-price.master .btn-primary {
  background-color: #54EA59 !important;
  border-color: #54EA59 !important;
}

.card-price.master .btn-outline-secondary {
  border-color: #FFF;
}

.card-price .best-seller {
  background-color: #ea5455;
  color: #FFF;
  position: absolute;
  top: 25px;
  inset-inline-end: -42px;
  padding: 4px 55px;
  transform: rotate(-45deg);
  font-weight: bold;
}

.plan-time {
  background-color: #ea5455;
  color: #FFF;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  padding: 8px;
  border-radius: 0 0 15px 15px;
  font-weight: bold;
  text-align: center;
}

.section-content-number {
  background: #FFFFFF;
  box-shadow: 0px 26.7864px 117.19px rgba(32, 36, 138, 0.06);
  border-radius: 34.4493px;
  padding: 40px;
}

.social-media li a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
  margin-inline-end: 10px;
}

.social-media li a img {
  height: 14px;
}

.arrow-social {
  position: absolute;
  top: -1.5rem;
  inset-inline-start: -4.5rem;
}

.navbar-brand img {
  height: 40px;
}

.lang-img {
  height: 16px;
  margin-bottom: 2px;
}

.z-2 {
  z-index: 3;
}


.whatsapp {
  align-items: center;
  background-color: #0047bb;
  display: inline-flex;
  height: 55px;
  inset-inline-start: -30px;
  justify-content: center;
  position: fixed;
  top: 60%;
  width: 100px;
  z-index: 3;
  border-radius: 30px;
  padding-inline-start: 30px;
}

.whatsapp img {
  width: 35px;
}

@media(max-width:991px) {
  .card-price {
    padding: 10px;
  }

  .arrow-social {
    position: relative;
    top: 0;
    inset-inline-start: 0;
    margin-bottom: 20px;
  }

  .main-footer .footer-top {
    padding-right: 32px;
    padding-right: 32px;
  }
}

.w-40 {
  width: 40px;
}

.btn-outline-orge {
  border: 1px solid #ea5455;
  border-radius: 60px;
  padding: 12px 20px;
  transition: background-color .2s ease-in-out, color .2s ease-in-out;
  font-size: 12px
}

.btn-orge {
  background-color: #ea5455;
  border-radius: 60px;
  color: #fff;
  padding: 12px 15px;
  transition: background-color .2s ease-in-out, color .2s ease-in-out;
  font-size: 12px
}

.btn-outline-orge:hover {
  background-color: #ea5455;
  color: #fff;
}

.btn-outline-orge:hover svg path {
  fill: #fff;
}

.btn-orge:hover,
.btn-outline-orge:first-child:active {
  background-color: #b33a3a !important;
  color: #fff !important;
}

html[dir="ltr"] .card-price .best-seller {
  transform: rotate(45deg);
}

.select2-container--default .select2-selection--single {
  height: 45px;
  background-color: #F3F4F6;
  border: 1px solid #F3F4F6;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/></svg>") !important;
  background-repeat: no-repeat;
  background-position: 2% 50%;
  background-size: 16px 12px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 44px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 41px;
  display: none;
}


html[dir="ltr"] .select2-container--default .select2-selection--single {
  background-position: 98% 50%;
}


.toggle-switch {
  position: relative;
  width: 60px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #EA5455;
  transition: 0.4s;
  border-radius: 30px;
}

.toggle-switch .slider::before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 5px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-switch input:checked+.slider {
  background-color: #d8d8d8;
}

.toggle-switch input:checked+.slider::before {
  transform: translateX(32px);
}

.item-cell {
  padding: 34px 10px;
}

.item-cell-icon {
  width: 22px;
}

.card-row-body:nth-child(odd) {
  background-color: rgba(84, 123, 212, .1);
}

.card-row-header {
  padding: 10px 5px 20px;
}

@media(max-width:991px) {
  .card-row-header .btn {
    padding: 5px;
  }

  .card-row-header *,
  .card-row-body * {
    font-size: 11px;
  }

  .item-cell-icon {
    width: 16px;
  }
}

html[dir="rtl"] .svg-icon {
  transform: rotate(180deg);
}

.logo-small{
  width: 100px;
}