:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #C764A7;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #FAEA8F;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #343434;    /* big heading */
  --gray-dark: #272727;  /* heading */
  --primary: #007bff;
  --secondary: #414141; /*small p */
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #1F1F1F;  /* buttons*/
  --darkoo: #1c1c1c;   /* small heading */
}
html {
  scroll-behavior: smooth;
}

body{
  font-family: 'Bahij_TheSansArabic-Plain', sans-serif;
  overflow-x: hidden!important;
  margin: 0;
  padding: 0;
  background-color: var(--white);
  position: relative;
  /* overflow-x: hidden;
  overflow-y: hidden; */
}
*{
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  margin: 0;
}

@font-face {
  font-family: 'Bahij_TheSansArabic-Plain';
  font-style: normal;
  font-weight: normal;
  src: local('Bahij_TheSansArabic-Plain'), url('../fonts/Bahij_TheSansArabic-Plain.woff') format('woff');
  }

body::-webkit-scrollbar {
    width: 8px;
}
body.thin::-webkit-scrollbar {
    width: 2px;
}
::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: #f6f6f6;
}
::-webkit-scrollbar-thumb {
    border-radius: 0px;
    background: #5F4FCC;
}
::-webkit-scrollbar-thumb:window-inactive {
    background: #5F4FCC;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
  line-height: normal;
}

i[class^="flaticon-"]:before, i[class*=" flaticon-"]:before {
  font-weight: bold !important;
}
.main-section {
  padding: 75px 0;
  position: relative;
  overflow: hidden;
}
@media(max-width: 992px) {
  .main-section {
    padding: 30px 0;
  }
}
a{
  text-decoration: none !important;
}
ul {
  padding: 0;
  list-style: none;
}
 iframe, video{
    max-width:100%;
}
p{
  color: var(--secondary);
  font-size: 14px;
  margin-bottom: 0;
}

.main-title {
  font-size: 32px;
  margin-bottom: 45px;
  color: var(--gray-dark);
  text-transform: capitalize;
  font-weight: bold;
  max-width: 457px;
}
.main-center-title {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-size: 30px;
  margin-bottom: 26px;
  color: var(--gray-dark);
  text-transform: capitalize;
  font-weight: bold;
  text-align: center;
  position: relative;
}

@media(max-width:576px) {
  .main-center-title, .main-title {
    font-size: 26px;
  }
}
.main-des {
  font-size: 14px;
  margin-bottom: 30px;
}
.main-center-des {
  font-size: 18px;
  text-align: center;
  margin-bottom: 68px;
  max-width: 724px;
  margin-left: auto;
  margin-right: auto;
}


/*start header navbar */

.menu-logo {
  background: transparent !important;
  z-index: 2000;
  position: absolute;
  left: 0;
  right: 0;
}

.mob-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  background-color: #6e56c7 !important;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  z-index: 2900;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
}
.mob-overlay.active {
  opacity: .85;
  visibility: visible;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
}
.sidebar-wrapper {
  display: none;
}
@media(max-width: 992px) {
  .sidebar-wrapper {
    padding-top: 20px;
    position: fixed;
    display: block;
    background-color: #fff;
    right: 20px;
    top: 20px;
    width: 100%;
    height: 100vh;
    border-radius: 20px;
    max-height: calc(100% - 40px);
    max-width: calc(100% - 40px);
    box-shadow: 0 0 15px rgb(0 0 0 / 10%);
    overflow: hidden;
    z-index: 12000;
    transition: transform 0.5s ease-in-out;
    -webkit-transition: transform 0.5s ease-in-out;
    -moz-transition: transform 0.5s ease-in-out;
    -ms-transition: transform 0.5s ease-in-out;
    -o-transition: transform 0.5s ease-in-out;
    transform: translateY(150%);
    -webkit-transform: translateY(150%);
    -moz-transform: translateY(150%);
    -ms-transform: translateY(150%);
    -o-transform: translateY(150%);
}
.sidebar-wrapper .m-head {
  padding: 20px;
  border-bottom: 1px solid #ededed;
  margin-bottom: 30px;
}
.sidebar-wrapper .m-head h3 {
  font-size: 20px;
}
.sidebar-show{
 transition: transform 0.5s ease-in-out;
 -webkit-transition: transform 0.5s ease-in-out;
 -moz-transition: transform 0.5s ease-in-out;
 -ms-transition: transform 0.5s ease-in-out;
 -o-transition: transform 0.5s ease-in-out;
 transform:translateY(0);
 -webkit-transform:translateY(0);
 -moz-transform:translateY(0);
 -ms-transform:translateY(0);
 -o-transform:translateY(0);
}
.sidebar-wrapper .nav-link {
  color: #6e56c7 !important;
  text-decoration: none;
  border-bottom: 1px solid #ededed;
  font-weight: lighter;
  padding: 14px 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.sidebar-wrapper .nav-link:hover {
  background-color: #fff;
  color: #E77E49;
}
.sidebar-wrapper .dropdown-menu {
  width: 100%;
}
.sidebar-wrapper .navbar-nav {
  text-align: center;
}
#burgerBtn {
  border-top: none;
  height: 25px;
  width: 30px;
  box-sizing: border-box;
  position: absolute;
  z-index: 3000;
  top: 30px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -khtml-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
#burgerBtn:before, #burgerBtn:after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: 33px;
  background: var(--pink);
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -khtml-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
#burgerBtn:before {
  top: 10px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
  #burgerBtn:after {
    bottom: 11px;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
}
}
.navbar-nav .sub-collapse .dropdown-item{
  padding: 10px 0;
}
.navbar-nav .sub-collapse .dropdown-item:hover {
  background-color: #d3732e;
  color: #fff;
}
@media(min-width: 992px) {
  .navbar-nav .sub-collapse {
    position: absolute;
    right: 0;
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
  .navbar-nav .sub-collapse .dropdown-item{
    padding: 10px;
    color: #136776;
  }
}
/*page*/
#searchModal {
  background-color: rgb(0 0 0 / 90%);
  padding-right: 0 !important;
}
@media (min-width: 576px){
  .modal-dialog {
      max-width: 700px;
  }
}
.modal-open {
  padding-right: 0 !important;
}
#searchModal .modal-content {
  background: transparent;
  border: none;
}
#searchModal .close {
  color: #fff;
  position: absolute;
  top: 10px;
  opacity: 1;
}
#searchModal .search-form .form-control {
  height: 50px;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  color: #fff;
}
#searchModal .search-form .form-control::placeholder{
  color: #fff;
}
.search_btn {
  position: absolute;
  top: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
}
.lang-des .lang-item > a {
  color: #fff;
  font-size: 12px;
}
.lang-des .lang-item > a .fa-chevron-down{
  position: relative;
  top: 3px;
}
.lang-des .dropdown-menu {
  padding: 0;
  border: 1px solid #fff;
}
.lang-des .dropdown-item {
  padding: 10px;
  position: relative;
  z-index: 99999;
}
.lang-des .dropdown-item:hover{
  background-color: var(--pink);
  color: #fff;
}
.lang-des .lang-item img {
  width: 29px;
  height: 19px;
}
.lang-divider {
  background-color: #fff;
  width: 1px;
  height: 14px;
  margin: 0 8px;
}
.dropdown-toggle::after {
  border: none;
}
.navbar{
  padding: 0;
}
.navbar-toggler {
  background-color: transparent;
  border: none;
  font-size: 26px;
}
.bars-toggler-icon {
  color: #fff;
}
 .navbar-nav .nav-link {
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.navbar-nav .nav-link:hover {
  color: var(--yellow);
}
.navbar-nav>.nav-item {
  position: relative;
}
.navbar-nav>.nav-item .second-menu{
  border-radius: 10px;
  position: absolute;
  background-color: #fff;
  width: 160px;
  text-align: center;
  z-index: 1100;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.navbar-nav>.nav-item .second-menu li {
  padding: 16px;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.navbar-nav>.nav-item.has-drop-menu:hover .second-menu {
  display: block!important;
}
.navbar-nav>.nav-item .sub-menu {
  position: absolute;
  right: 99%;
  top:0;
  z-index: 1100;
  background-color: #fff;
  min-width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
@media(max-width:992px) {
  .navbar-nav>.nav-item .sub-menu {
    left:0;
    top: 40px;
  }
}
.navbar-nav>.nav-item .second-menu li:hover{
  background-color: #E77E49;
}
.navbar-nav>.nav-item .second-menu li:hover > a {
  color: #fff;
}
.navbar-nav>.nav-item .second-menu li:hover .sub-menu {
  display: block!important;
}
.navbar-nav>.nav-item .second-menu li a{
  text-decoration: none;
  color: #E77E49;
  font-size: 15px;
}
.navbar-brand {
  margin: 0;
}
.navbar-brand img {
  width: 170px;
}
@media(min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }
  .navbar-nav {
    padding: 0;
    justify-content: space-between;
    width: 95%;
  }
}
/* Start header*/
.header-section{
  background-image: url(../img/header.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  height: 970px;
  padding-top: 220px;
  overflow: hidden;
}

.top-section {
  padding-top: 40px;
}
 .top-section h5 {
  font-size: 41px;
  margin-bottom: 40px;
  color: #fff;
  font-weight: bold;
}
.top-section p {
  font-size: 24px;
  line-height: 1.7;
  color: #fff;
  overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
@media(max-width: 576px){
  .top-section {
    margin-bottom: 20px;
  }
  
}
@media(max-width: 992px) {
  .header-section{
    height: auto;
  }
  .top-section {
    padding-top: 26px;
  }
  .top-section h5 {
    font-size: 30px;
  }
  .top-section p {
    font-size: 16px;
  }
}

/* about section */
.about-section {
  padding: 80px 0 63px 0;
}
.about_media {
  margin-bottom: 24px;
}
.about_media .media_img img {
  width: 48px;
  height: 48px;
  margin-inline-end: 18px;
}
.about_media .media_title {
  font-size: 18px;
  margin-bottom: 21px;
  color: var(--gray-dark);
  text-transform: capitalize;
  font-weight: bold;
}
.about_media .media_des {
  font-size: 16px;
  color: #919191;
}

/* benefits section */
@media(min-width: 769px){
  .benefits-info {
    padding-top: 40px;
  }
}
.benefit_media {
  margin-bottom: 24px;
}
.benefit_media .media_img {
  min-width: 30px;
  height: 30px;
  margin-inline-end: 14px;
  background-color: #FFFFFF;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 3px -3px 5px rgba(0, 0, 0, 0.05),
  -3px -3px 5px rgba(161, 104, 104, 0.05),
  3px 3px 5px rgba(0, 0, 0, 0.05);
}
.benefit_media .media_des {
  font-size: 18px;
  color: var(--secondary);
}
.benefit_media .media_des strong {
  font-size: 20px;
}

@media(max-width: 576px){
  .important-info {
    margin-bottom: 20px;
  }
}
@media(max-width: 768px){
  .align-md-center {
    display: flex;
    align-items: center;
  }
  .about-section {
    padding: 30px 0;
  }
}

/* features section */
.features-section {
  padding: 100px 0 70px 0;
}
@media(min-width: 769px){
  .features-info {
    padding-top: 70px;
  }
  /* .features-info div[class*=col] {
    padding-right: 5px;
    padding-left: 5px;
  } */
  .features-section > .container{
    padding-right: 0;
    padding-left: 0;
  }
}
.features_media {
  margin-bottom: 60px;
}
.features_media .media_body {
  padding-top: 20px
;
}
.features_media .media_img {
  min-width: 80px;
  height: 80px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline-end: 13px;
}
.features_media .media_img img {
  max-width: 52px;
}
.media-bk-1 {
  background-color: rgb(42 125 194 / 14%);
}
.media-bk-2 {
  background-color: rgb(255 145 0 / 20%);
}
.media-bk-3 {
  background-color: rgb(172 228 154 / 18%);
}
.media-bk-4 {
  background-color: rgb(22 254 215 / 6%);
}
.media-bk-5 {
  background-color: rgb(255 198 10 / 20%);
}
.media-bk-6 {
  background-color: rgb(243 125 139 / 13%);
}
.features_media .media_title {
  font-size: 19px;
  color: var(--secondary);
  font-weight: bold;
  margin-bottom: 19px;
}
.features_media .media_des {
  font-size: 16px;
}
@media(max-width: 768px){
  .features_media {
    margin-bottom: 30px;
  }
  .features-section {
    padding: 30px 0;
  }
  .feature-sec-img {
    margin-bottom: 20px;
  }
  .feature-sec-img img {
    margin-right: auto;
    margin-left: auto;
    display: block;
  }
}

/* strategy section */
.strategy-section {
  padding: 80px 0 63px 0;
}
.strategy_media {
  margin-bottom: 30px;
}
@media(min-width: 769px){
  .strategy-info {
    background-image: url(../img/line.png);
    background-repeat: no-repeat;
  }
  .strategy_media {
    margin-bottom: 65px;
    width: 90%;
  }
  .strategy_media:nth-of-type(2){
    width: 80%;
    margin-inline-start: 20%;
  }
}
.strategy_media .media_img {
  height: 109px;
  min-width: 109px;
  background-color: #fff;
  box-shadow: 3px -3px 5px rgba(0, 0, 0, 0.1),
  -3px -3px 5px rgba(0, 0, 0, 0.1),
  3px 3px 5px rgba(0, 0, 0, 0.1);
  margin-inline-end: 22px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.strategy_media .media_img img {
  max-width: 55px;
}
.strategy_media .media_title {
  font-size: 23px;
  margin-bottom: 24px;
  color: var(--gray-dark);
  text-transform: capitalize;
  font-weight: bold;
}
.strategy_media .media_des {
  font-size: 16px;
  color: #919191;
}

/* application screens */
.screens-section {
  padding: 63px 0;
  margin-bottom: 87px;
}
.swiper {
  width: 100%;
  height: 500px;
  padding-bottom: 70px;
  padding-top: 5px;
}
.swiper-wrapper {
  height: 455px;
}
.swiper-slide {
  width: 190px;
  min-width: 190px;
  height: 455px;
  margin: 0 19px;
}
.swiper-slide img{
  height: 390px;
  width: 190px;
  object-fit: cover;
}
span.swiper-pagination-bullet{
  height: 20px;
  width: 20px;
}
span.swiper-pagination-bullet {
  background: #E6E6E6;
  opacity: 1;
}
span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #9D3ADF;
}
@media(max-width: 576px) {
  .swiper-slide {
    display: flex;
    justify-content: center;
    margin: 0;
  }
  .swiper-slide img{
    width: auto;
    display: block;
  }
  .swiper-pagination {
    display: none;
  }
}
/* start footer*/
.footer  {
  background-image: url(../img/footer.png);
  background-size: cover;
  position: relative;
  color: var(--white);
  padding: 70px 0 30px 0;
}
.footer a {
  color: var(--white);
}
.footer .footer-brand {
  display: block;
}
@media(max-width: 576px) {
  .footer .footer-brand {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
.footer .footer-des {
  color: var(--white);
  line-height: 2;
  margin-bottom: 40px;
}

.footer .social-list{
  display: flex;
}
.footer  .social-link {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  margin-inline-end: 28px;
  font-size: 24px;
}
.social-link:hover {
  background: var(--yellow);
  color: var(--darkoo);
}
.face_link {
  background-color: #3A559F;
}
.insta_link {
  background-color: #C710AC;
}
.twitter_link {
  background-color: #41A1F2;
}
.snap_link {
  background-color: #FFDF55;
}
.footer_main_links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 769px) {
  .footer .menu {
    padding-top: 70px;
  }
}
.footer .menu .menu-item {
  margin-bottom: 26px;
}
.footer .menu .menu-item > a {
  font-size: 18px;
  display: flex;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.footer .menu .menu-item > a:hover {
  color: var(--yellow);
}
.footer .menu .menu-item > a i {
  margin-inline-end: 16px;
}
.footer .menu .menu-item > a i.call_icon {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
.payment_wrapper {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: #fff;
  text-transform: capitalize;
}
.payment_wrapper p {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.payment_wrapper a {
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}
.payment_wrapper a img {
  margin-inline-start: 7px;
}
@media(max-width: 576px) {
  .footer .social-list {
    margin: auto;
    margin-bottom: 20px;
  }
  .footer .menu .menu-item > a {
    font-size: 14px;
  }
  .vision {
    margin-bottom: 20px;
  }
}

.copyrights {
  padding: 16px 0;
  background-color: var(--white);
  color: #666666;
  font-size: 18px;
}
.copyrights p, .copyrights a{
  color: #666666;
 font-size: 18px;
}
.steps_img {
  margin-inline-end: 17px;
}
@media(max-width: 768px) {
  .footer {
    padding: 20px 0;
  }
}
@media(max-width: 576px) {
  .copyrights {
    text-align: center;
  }
  .copyrights p, .copyrights a{
    margin-bottom: 10px;
  }
  .steps_wrapper {
    justify-content: center;
    margin-bottom: 10px;
  }
  .just_s_center {
    justify-content: center;
  }
}

.steps_wrapper a img{
    width: 120px;
    height: 40px
}

.go-top {
  position: absolute;
  top: -41px;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 82px;
  height: 82px;
  background: var(--white);
  color: #5F4FCC !important;
  bottom: 140px;
  z-index: 2500;
  transition: all 0.3s !important;
  -webkit-transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  -ms-transition: all 0.3s !important;
  -o-transition: all 0.3s !important;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  font-size: 26px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.go-top:hover {
  color: var(--white) !important;
  background-color: #6e56c7;
}



@media(max-width: 992px) {
  .go-top {
    bottom: 90px;
  }
}



@media (max-width: 991.98px){
    .navbar-expand-lg>.container,
    .navbar-expand-lg>.container-fluid,
    .navbar-expand-lg>.container-lg,
    .navbar-expand-lg>.container-md,
    .navbar-expand-lg>.container-sm,
    .navbar-expand-lg>.container-xl {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.loader-container {
  position: fixed;
  left: 0;
  right: 0;
  height: 100vh;
  background-color: #5F4FCC;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader,
.loader::before,
.loader::after {
    width: 40px;
    height: 40px;
    animation: load 1.8s ease-in-out infinite;
    -webkit-animation: load 1.8s ease-in-out infinite;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    animation-delay: 0.16s;
    color: #fff;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
}
.loader::before,
.loader::after{
    content: '';
    position: absolute;
    top: 0;
}
.loader::before{
    left: -56px;
    animation-delay: 0.32s;
}
.loader::after {
    left: 56px;
}

@keyframes load{
    0%, 80%, 100%{
        box-shadow: 0 40px 0 -20px;
    }
    40%{
       box-shadow: 0 40px 0 0;
    }
}

.lang-des .lang-item i {
  margin-inline-end: 6px;
}

.lang-item {
  margin-inline-end: 6px;
}
.lang-des .lang-item img {
  margin-inline-end: 6px;
}