/* ==========================================================
! 1. Fonts Section
========================================================== */
@font-face {
    font-family: "HTBaybarsDisplay";
    src: url("../fonts/HTBaybarsDisplay-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Tajawal';
    font-style: normal;
    font-weight: 275;
    src: local('Tajawal'), url('https://fonts.cdnfonts.com/s/15774/Tajawal-Regular.woff') format('woff');
}
  @font-face {
    font-family: "HTBaybarsDisplay";
    src: url("../fonts/HTBaybarsDisplay-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "HTBaybarsDisplay";
    src: url("../fonts/HTBaybarsDisplay-Medium.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "HTBaybarsDisplay";
    src: url("../fonts/HTBaybarsDisplay-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  :root {
    --main-font: "HTBaybarsDisplay", system-ui, sans-serif;
    font-family: var(--main-font);
  }

  /*=============== BASE ===============*/
  * {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: var(--main-font);
    font-size: 16px;
    background-color: #fff;
    color: #000000;
    transition: 0.3s;
    /* For animation dark mode */
  }

  h1,
  h2,
  h3 {
    color: #000000;
  }

  ul {
    list-style: none;
  }

  a {
    text-decoration: none;
  }

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

  input,
  button {
    outline: none;
    border: none;
  }

  /*=============== REUSABLE CSS CLASSES ===============*/
  .grid {
    display: grid;
  }

  .section {
    padding: 4rem 0 4rem;
  }

  .section_title {
    position: relative;
    font-family: var(--main-font);
    font-size: 35px;
    margin-bottom: 1rem;
    text-align: center;
  }
  .section_title span {
    color: #C5B2A3;
  }

  .section_subtitle {
    font-family: var(--main-font);
    display: block;
    font-size: 22px;
    color: #000;
    text-align: center;
  }
  .section_subtitle span {
    color: #C5B2A3;
  }

  .main {
    overflow: hidden;
    padding-top: 105px;
    /* For the animations ScrollReveal*/
  }
  .main .main-content-inner {
    padding-top: 106px;
  }

  /*=============== HEADER & NAV ===============*/
  header.main-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    padding: 15px 0;
    background-color: #000000;
    z-index: 100;
    -webkit-box-shadow: 0 5px 8px rgba(114, 94, 94, 0.07);
    -moz-box-shadow: 0 5px 8px rgba(114, 94, 94, 0.07);
    box-shadow: 0 5px 8px rgba(114, 94, 94, 0.07);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  header.main-header .inner-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  header.main-header .inner-header .logo {
    max-width: 130px;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  header.main-header .inner-header .logo img {
    width: 100%;
  }
  header.main-header .inner-header .nav-links .nav-items {
    list-style: none;
    margin: 0;
  }
  header.main-header .inner-header .nav-links .nav-items > li {
    position: relative;
    font-family: var(--main-font);
    display: inline-block;
    color: #fff;
    font-size: 16px;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  header.main-header .inner-header .nav-links .nav-items > li a {
    position: relative;
    z-index: 2;
    padding: 14px 30px;
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  header.main-header .inner-header .nav-links .nav-items > li.active {
    font-family: var(--main-font);
  }
  header.main-header .inner-header .nav-links .nav-items > li.active a {
    position: relative;
    color: #fff;
  }
  header.main-header .inner-header .nav-links .nav-items > li.active a::before {
    content: " ";
    width: 50%;
    background-color: #C5B2A3;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 0;
    transform: translateX(-50%);
  }
  header.main-header.fixed-header {
    background: black;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
    padding: 15px 0;
  }
  header.main-header.fixed-header .inner-header .logo {
    max-width: 120px;
  }
  header.main-header.inside {
    position: relative;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
  }

  @media (max-width: 567px) {
    header.main-header {
      position: fixed;
      top: 0;
      right: 0;
      left: 0;
      background-color: #000;
      padding: 15px 0 !important;
    }
  }
  #m-menu {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(54, 68, 87, 0.6);
    z-index: 2222222;
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }
  #m-menu.active {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  #m-menu .toggle-nav {
    position: absolute;
    top: 20px;
    left: 24%;
    cursor: pointer;
    z-index: 2222;
  }
  #m-menu .toggle-nav .fa,
  #m-menu .toggle-nav i {
    color: #000000;
    font-size: 30px;
  }
  #m-menu .toggle-nav span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #0A2842;
    margin-bottom: 5px;
    border-radius: 5px;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  #m-menu .toggle-nav span:nth-child(2) {
    width: 14px;
  }
  #m-menu .toggle-nav.active span:nth-child(2) {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  #m-menu .toggle-nav.active span:nth-child(1) {
    -webkit-transform: rotateY(180deg) rotateZ(45deg) translate(11px, 10px);
    transform: rotateY(180deg) rotateZ(45deg) translate(11px, 10px);
  }
  #m-menu .toggle-nav.active span:nth-child(3) {
    -webkit-transform: rotateY(-180deg) rotateZ(-45deg) translate(0px, 0px);
    transform: rotateY(-180deg) rotateZ(-45deg) translate(0px, 0px);
  }
  #m-menu .nav-items {
    width: 80%;
    height: 100%;
    min-height: 100vh;
    display: block;
    text-align: right;
    background: rgba(255, 255, 255, 0.9);
    padding: 0;
  }
  #m-menu .nav-items li {
    position: relative;
    font-family: var(--main-font);
    display: block;
    color: #000000;
    font-size: 17px;
    border-bottom: 3px solid transparent;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  #m-menu .nav-items li.orderPriceBtn {
    margin: 0 25px;
  }
  #m-menu .nav-items li.orderPriceBtn a {
    background-color: #C5B2A3;
    border-radius: 10px;
    color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.16);
    text-align: center;
    transition: all 300ms ease-in-out;
  }
  #m-menu .nav-items li.orderPriceBtn a i {
    vertical-align: middle;
    line-height: 0;
    margin-left: 5px;
  }
  #m-menu .nav-items li.orderPriceBtn a:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  }
  #m-menu .nav-items li:last-child::after {
    display: none;
  }
  #m-menu .nav-items li:last-child .btn-custom.primary {
    box-shadow: none;
  }
  #m-menu .nav-items li .nav-link {
    position: relative;
    padding: 15px 30px;
    display: block;
    color: inherit;
    text-align: right;
    z-index: 2;
  }
  #m-menu .nav-items li .nav-link.nav_button {
    background-color: #C5B2A3;
    border-radius: 10px;
    padding: 14px 30px;
    font-family: var(--main-font);
    font-size: 15px;
    transition: all 300ms ease-in-out;
    text-align: center;
    height: 50px;
    line-height: 25px;
    margin: 5px 20px;
  }
  #m-menu .nav-items li .nav-link.nav_button.borderd {
    background-color: #fff;
    border: 1px solid #3E5757;
    color: #333030;
  }
  #m-menu .nav-items li .nav-link.nav_button.filled {
    background-color: #C5B2A3;
    color: #fff;
    min-width: 160px;
  }
  #m-menu .nav-items li:hover {
    color: #000000;
  }
  #m-menu .nav-items li:hover::after {
    width: 100%;
  }
  #m-menu .nav-items li.logo .nav-link {
    display: inline-block !important;
  }
  #m-menu .social {
    padding: 15px 30px;
    text-align: right;
  }
  #m-menu .social a {
    width: 40px;
    height: 40px;
    display: inline-block;
    border-radius: 50px;
    line-height: 45px;
    font-size: 20px;
    text-align: center;
    margin-left: 5px;
    background-color: #f6f7fd;
    color: #000000;
    text-decoration: none;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  #m-menu .social a:last-child {
    margin-left: 0;
  }
  #m-menu .social a:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  }

  @media (min-width: 1200px) {
    header .toggle-nav {
      display: none;
    }
  }
  @media (max-width: 1200px) {
    header nav,
  header .social ul,
  header .nav-buttons {
      display: none;
    }
    header .toggle-nav {
      margin-top: 0;
      line-height: 0;
      margin-left: 0px;
    }
    header .toggle-nav .toggle-btn {
      background: none;
      border: none;
      outline: 0;
      direction: ltr;
    }
    header .toggle-nav .toggle-btn span {
      display: block;
      width: 22px;
      height: 2px;
      background-color: #C5B2A3;
      margin-bottom: 5px;
      border-radius: 10px;
      -webkit-transition: all 300ms ease-in-out;
      transition: all 300ms ease-in-out;
    }
    header .toggle-nav .toggle-btn span:nth-child(1) {
      width: 14px;
    }
    header .toggle-nav .toggle-btn.active span:nth-child(2) {
      -webkit-transform: translateX(-50px);
      transform: translateX(-50px);
      opacity: 0;
    }
    header .toggle-nav .toggle-btn.active span:nth-child(1) {
      -webkit-transform: rotateY(180deg) rotateZ(45deg) translate(11px, 10px);
      transform: rotateY(180deg) rotateZ(45deg) translate(11px, 10px);
    }
    header .toggle-nav .toggle-btn.active span:nth-child(3) {
      -webkit-transform: rotateY(-180deg) rotateZ(-45deg) translate(0px, 0px);
      transform: rotateY(-180deg) rotateZ(-45deg) translate(0px, 0px);
    }
    header .toggle-nav .mobile-menu {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      height: 100%;
      -webkit-transform: translateX(270px);
      transform: translateX(270px);
      -webkit-box-shadow: 5px 0 25px rgba(0, 0, 0, 0.25);
      box-shadow: 5px 0 25px rgba(0, 0, 0, 0.25);
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s;
    }
    header .toggle-nav .mobile-menu .mobile-menu-items {
      background-color: #ffffff;
      margin: 0;
      width: 270px;
      height: 100%;
      overflow: auto;
      list-style: none;
      padding: 0;
    }
    header .toggle-nav .mobile-menu-items li {
      padding: 15px 23px;
      border-bottom: 1px solid #f1f1f1;
      font-family: var(--main-font);
      color: #3C2663;
      font-size: 16px;
      line-height: 19px;
      text-align: right;
    }
    header .toggle-nav .mobile-menu-items li a {
      color: inherit;
      text-decoration: none;
    }
    header .toggle-nav .mobile-menu-items li a.myaccount i {
      margin-left: 10px;
    }
    header .toggle-nav .mobile-menu-items li.lang .nice-select {
      float: none;
      text-align: right !important;
    }
    header .toggle-nav .mobile-menu-items li.lang .nice-select .list {
      width: 100%;
    }
    header .toggle-nav .mobile-menu.active {
      -webkit-transform: translateX(0);
      transform: translateX(0);
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s;
    }
  }
  /*=============== HOME ===============*/
  .home {
    position: relative;
    background-image: url(../img/home.jpg);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .home .home_contnet {
    position: relative;
    z-index: 22;
    padding: 3rem 2rem;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
  }
  .home .home_contnet h3 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 30px;
  }
  .home .home_contnet h1 {
      position: relative;
      font-family: var(--main-font);
      font-size: 63px;
      font-weight: 300;
      color: #FFFFFF;
      background-color: #C5B2A3;
      margin-bottom: 60px;
      padding: 20px;
    }
    .home .home_contnet h1 span {
      display: block;
    }
    .home .home_contnet h1 span:nth-child(2) {
      font-weight: bold;
      font-size: 120px;
    }
    .home .home_contnet h1 span:nth-child(3) {
      font-size: 100px;
    }

  .home .home_contnet h1::before {
    content: " ";
    width: 95%;
    display: block;
    height: 100%;
    background-color: #4762B3;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    z-index: -1;
  }
  .home .home_contnet p {
    font-family: var(--main-font);
    color: #fff;
    font-size: 50px;
    margin-bottom: 30px;
    line-height: 35px;
    min-height: 35px;
  }
  .home .down-arrow {
    position: absolute;
    bottom: 20px;
    display: block;
    text-align: center;
    animation: bounce 2000ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
  }
  @keyframes bounce {
    50% {
      transform: translateY(27px);
    }
  }

  /*=============== Mini Logos ===============*/
  .mini-logos {
    background-image: linear-gradient(to right, #4762b3, #3b2f77);
  }
  .mini-logos.section {
    padding: 2.5rem 0 2.5rem;
  }
  .mini-logos .logo_item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  .mini-logos .logo_item img {
    max-width: 60px;
  }

  .bg-title {
    font-size: 45px;
    color: #FFFFFF;
    background-color: #C5B2A3;
    padding: 0px 15px;
    max-width: max-content;
    margin: 0 auto;
  }

  /*=============== About Wrapper  ===============*/
  .about-wrapper {
    background-color: #121211;
  }
  .about-wrapper .cards {
    margin-top: 50px;
  }
  .about-wrapper .cards .card_item {
    background: radial-gradient(circle, #23252C 0%, #23252C 100%);
    border-radius: 24px;
    padding: 5rem 1rem;
    text-align: center;
    color: #fff;
  }
  @media (max-width: 767px) {
    .about-wrapper .cards .card_item {
      margin-bottom: 1.5rem;
    }
  }
  .about-wrapper .cards .card_item .icon {
    width: 110px;
    height: 110px;
    display: block;
    margin: 0 auto 2rem;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-wrapper .cards .card_item .icon img {
    max-width: 60px;
  }
  .about-wrapper .cards .card_item h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 27px;
  }
  .about-wrapper .cards .card_item p {
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 30px;
  }
  .about-wrapper .cards .card_item .more {
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    font-family: var(--main-font);
    font-weight: 700;
    transition: all 300ms ease-in-out;
  }
  .about-wrapper .cards .card_item .more .circle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    border: 1px solid #C5B2A3;
    border-radius: 50px;
  }
  .about-wrapper .cards .card_item .more .circle > img {
    position: absolute;
    top: 50%;
    right: -50%;
    font-size: 30px;
    line-height: 0;
    transform: translate(-10%, -50%);
    transition: all 300ms ease-in-out;
  }
  .about-wrapper .cards .card_item .more:hover .circle img {
    transform: translate(-100%, -50%);
  }
  .about-wrapper .who-are-we {
    padding-bottom: 50px;
  }
  .about-wrapper .who-are-we .bg-title {
    margin-bottom: 50px;
  }
  .about-wrapper .who-are-we > p {
    color: #fff;
    font-size: 20px;
    line-height: 40px;
  }
  .about-wrapper .who-are-we .img-gallery {
    margin-top: 50px;
  }
  .about-wrapper .who-are-we .img-gallery img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
  }

  /*=============== Features ===============*/
  .features {
    background-color: #F4F0ED;
  }
  .features .bg-title {
    background-color: #C5B2A3;
    margin-bottom: 60px;
  }
  .features .feature_img {
    margin-bottom: 2rem;
  }
  .features .features_items .item {
    display: flex;
    align-items: center;
    background-color: #C5B2A3;
    border-radius: 26px;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
  }
  .features .features_items .item .icon {
    min-width: 100px;
    height: 105px;
    background-color: #4762B3;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 30px;
  }
  .features .features_items .item .icon img {
    max-width: 50px;
  }
  .features .features_items .item .content h3 {
    font-family: var(--main-font);
    font-weight: 700;
    font-size: 28px;
    color: #fff;
  }
  .features .features_items .item .content p {
    font-family: var(--main-font);
    font-size: 18px;
    color: #fff;
  }

  .features_parts {
    padding-bottom: 0;
  }
  .features_parts .part {
    margin-bottom: 60px;
  }
  .features_parts .part .sanofa_img {
    max-width: 180px;
    display: block;
    margin: 0 auto 50px;
  }
  .features_parts .part > p {
    text-align: center;
    font-family: var(--main-font);
    font-size: 19px;
    font-weight: 600;
    color: #000000;
  }
  .features_parts .part .part_features {
    margin-top: 60px;
  }
  .features_parts .part .feature_img {
    margin-bottom: 2rem;
  }
  .features_parts .part .features_items .item {
    display: flex;
    border-radius: 26px;
    padding: 2rem 2rem;
  }
  .features_parts .part .features_items .item .icon {
    min-width: 100px;
    height: 105px;
    background-color: #fff;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 30px;
  }
  .features_parts .part .features_items .item .icon img {
    max-width: 50px;
  }
  .features_parts .part .features_items .item .content h3 {
    font-family: var(--main-font);
    font-weight: 700;
    font-size: 26px;
    color: #000000;
    margin-bottom: 25px;
  }
  .features_parts .part .features_items .item .content p {
    font-family: var(--main-font);
    font-size: 19px;
    color: #807878;
    margin-bottom: 0;
  }
  .features_parts .part .features_items .item .content ul {
    padding-right: 0;
  }
  .features_parts .part .features_items .item .content ul li {
    position: relative;
    font-family: var(--main-font);
    font-size: 19px;
    color: #726F6F;
    margin-bottom: 20px;
  }
  .features_parts .part .features_items .item .content ul li::before {
    content: " ";
    width: 10px;
    height: 10px;
    background-color: #C5B2A3;
    border-radius: 50px;
    display: inline-block;
    margin-left: 10px;
  }
  .features_parts .part.two .features_items .item .icon {
    /*background-color: #75A18F;*/
    background-color: #fff;

  }
  .features_parts .part.three .features_items .item .icon {
    background-color: #fff;
  }

  .sm-banner {
    background-image: linear-gradient(to right, #4762b3, #3b2f77);
    padding: 1rem;
    border-radius: 15px;
    color: #fff;
    display: block;
    text-align: center;
  }
  .sm-banner:hover {
    color: #fff;
  }

  /*=============== Partners  ===============*/
  .partners .partners_images {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 70px;
  }
  .partners .partners_images .partner-img {
    width: 100px;
    object-fit: cover;
  }
  @media (max-width: 576px) {
    .partners .partners_images .partner-img {
      max-width: 50px;
    }
  }

  /*=============== Footer  ===============*/
  .footer {
    background-color: #000000;
    position: relative;
    padding-bottom: 0;
  }
  .footer::before {
    content: " ";
    width: 100%;
    height: 20px;
    background-image: url(../img/pattern-top.png);
    background-repeat: repeat-x;
    background-size: contain;
    position: absolute;
    top: 0;
  }
  .footer .about {
    display: inline-block;
    margin-left: 2rem;
  }
  .footer .social {
    display: inline-block;
  }
  .footer .social ul {
    list-style: none;
    margin: 0px 0 0 0;
    padding: 0;
  }
  .footer .social li {
    position: relative;
    display: inline-block;
    margin-left: 10px;
  }
  .footer .social li a {
    width: 40px;
    height: 40px;
    display: inline-block;
    border-radius: 10px;
    line-height: 50px;
    font-size: 25px;
    text-align: center;
    background-color: #000;
    border: 1px solid #000;
    color: #C5B2A3;
    text-decoration: none;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  .footer .links ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .footer .links ul li {
    display: inline-block;
  }
  .footer .links ul a {
    position: relative;
    font-size: 20px;
    color: #fff;
    display: block;
  }
  .footer .copyrights {
    text-align: left;
    color: #fff;
    font-size: 22px;
  }
  .footer .copyrights p {
    margin-bottom: 0;
  }
  .footer .copyright {
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid #2a2a2a;
    text-align: center;
    color: #fff;
    font-size: 18px;
  }
  .footer .copyright p {
    margin-bottom: 0;
  }
  .footer .copyright a {
    color: #C5B2A3;
  }

  /*=============== Forms ===============*/
  .form-group {
    margin-bottom: 30px;
  }
  .form-group input {
    background-color: #FAFBFE;
    border: 1px solid #E7E5EA;
    color: #777E90;
    border-radius: 12px;
    padding: 15px 20px;
    text-align: right;
    font-size: 14px;
    outline: none;
    box-shadow: none;
  }
  .form-group input::placeholder {
    color: #777E90;
  }
  .form-group input[type=submit] {
    background-color: #C5B2A3;
    color: #fff;
    width: 100%;
    text-align: center;
    font-family: var(--main-font);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
  }
  .form-group textarea {
    background-color: #FAFBFE;
    border: 1px solid #E7E5EA;
    color: #777E90;
    border-radius: 12px;
    padding: 15px 20px;
    text-align: right;
    font-size: 14px;
    outline: none;
    box-shadow: none;
  }
  .form-group textarea::placeholder {
    color: #777E90;
  }

  .nice-select {
    width: 100%;
    text-align: right !important;
    background-color: #FAFBFE;
    border: 1px solid #E7E5EA;
    color: #777E90;
    border-radius: 12px;
    height: 53px;
    font-size: 14px;
    outline: none;
    box-shadow: none;
    line-height: 53px;
    padding-right: 20px;
    padding-left: 30px;
    float: none !important;
  }
  .nice-select .list {
    width: 100%;
    text-align: right;
  }
  .nice-select .option {
    text-align: right;
  }
  .nice-select::after {
    right: auto;
    left: 12px;
  }

  .modal-backdrop {
    background: rgba(54, 68, 87, 0.6);
  }

  /*=============== BREAKPOINTS ===============*/
  @media (max-width: 1200px) {
    header.main-header {
      padding: 15px 0px;
    }
    header.main-header .inner-header .logo {
      max-width: 100px;
    }
    header .toggle-nav {
      margin-left: 12px;
    }

    .main {
      padding-top: 0px;
    }
  }
  @media (max-width: 767px) {
    .home .home_contnet {
      padding: 3rem 0rem;
      min-height: 600px;
    }
    .home .home_contnet h1 {
      /* font-size: 35px; */
    }
    .home .home_contnet p {
      font-size: 25px;
    }

    .mini-logos .logo_item img {
      max-width: 35px;
    }

    .features .features_items .item {
      flex-direction: column;
      flex-direction: column;
      /* align-items: flex-start; */
      text-align: center;
    }
    .features .features_items .item .icon {
      margin-left: 0;
      margin-bottom: 1.5rem;
    }

    .footer .about {
      display: block;
      text-align: center;
      margin-bottom: 1.5rem;
    }
    .footer .social {
      display: block;
      text-align: center;
      margin-bottom: 1.5rem;
    }
    .footer .copyrights {
      text-align: center;
      margin-top: 1.5rem;
    }
  }
  @media (max-width: 576px) {
    .main {
      padding-top: 0;
    }

    .section {
      padding: 3rem 0;
    }

  }
  @media (max-width: 1200px) {

      .home {
        background-position: top;
    }
  }
  /*# sourceMappingURL=styles.css.map */
  .sart span.circle {
    width: 60px;
    height: 60px;
    border: 1px solid #3a2e76;
    border-radius: 50px;
    display: flex;
    margin-right: 37px;
    position: relative;
}
.sart a {

align-items: center;
    display: flex;
}
span.circle img{
position: absolute;
top: 39%;
left: 38%;
}

.sart a span.tx{
color: #000;
font-weight: 900;
font-size: 19px;
margin-right: 14px;
}
.sart span.circle:hover img {
    transition: all 0.5s ease-in-out;
    left: -59%;
}


#contact {
    font-family: 'Tajawal';
}
#contact .form-group strong {
    color: #34353A;
    font-weight: 600;
    font-size: 14px;
}

#contact .form-group input {

    margin-top: 9px;
}


@media(max-width:768px)
{
    section#contact .contact-content.w-50.m-auto {
        width: 100%!important;
    }
}
