/**
* Template Name: Mamba
* Template URL: https://bootstrapmade.com/mamba-one-page-bootstrap-template-free/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #050202; /* Background color for the entire website, including individual sections */
  --default-color: #ffffff; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #157630; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #747575; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #ffffff; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #03ff6b; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #020609;
  --surface-color: #ffffff;
}


.dark-background {
  --background-color: rgba(۲۵۵, ۲۵۱, ۲۵۱, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #385167;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
@font-face {
  font-family: 'kalameh';
  src: url('webfont.eot'); /* IE9 Compat Modes */
  src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  url('webfont.woff2') format('woff2'), /* Super Modern Browsers */
  url('webfont.woff') format('woff'), /* Pretty Modern Browsers */
  url('./font/Kalameh-Regular.ttf')  format('truetype'), /* Safari, Android, iOS */
  url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
}
@font-face {
  font-family: 'kalameh_thin';
  src: url('webfont.eot'); /* IE9 Compat Modes */
  src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  url('webfont.woff2') format('woff2'), /* Super Modern Browsers */
  url('webfont.woff') format('woff'), /* Pretty Modern Browsers */
  url('./font/kalamehnoen-thin.ttf')  format('truetype'), /* Safari, Android, iOS */
  url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
}
body {
  color: var(--default-color);
  background-color: #273231;
  font-family: 'kalameh';
}



a {
  color: var(--accent-color);;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: 'kalameh';
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);;
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);;
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: #1c1c1c;
}
@-webkit-keyframes glow {
  50% {text-shadow: 4px 8px 12px #ffffff;}
}

#navmenu ul li{
  -webkit-animation: dude .75s 1 forwards;
  animation: dude .75s 1 forwards;
}
@-webkit-keyframes dude {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes dude {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.cool-link {
  display: inline-block;
  color: #e2dcdc;
  text-decoration: none;
  position:relative;
  font-family: 'kalameh_thin';
}

.cool-link::after {
  position: absolute;
  bottom:0;
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--nav-hover-color);
  transition: width .3s;
  right:0;
  left: initial;
}

.cool-link:hover::after {
  width: 100%;
  left:initial;
  right: 0;
}

.active-link::after {
  width: 100%;
  left:initial;
  right: 0;
}
.scrolltime{
  color: #ffffff;
  font-size: 24px;
  animation: glow  3s infinite;
}
.header .topbar {
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--accent-color);;
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--default-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  color: var(--default-color);
}

.header .topbar .contact-info i a:hover {
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--accent-color);;
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 50px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */

@media (max-width: 767px) {
.member-size {

  top: 120px !important;
  position: absolute;
  right: 40px;
  z-index: 1;
}
  .member-head {
    top: 80px !important;
    left: -20px !important;
  }

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

  .margin-370{
    margin-top: 220px  !important;
  }
}

@media (min-width: 430px) and (max-width: 363px) {

  .margin-370{
    margin-top: 240px  !important;
  }
}
@media (min-width: 363px) and (max-width: 745px) {
  .member-head{
    height: 550px !important;
  }
  .margin-370{
    margin-top: 280px  !important;
  }
}

@media (min-width: 357px) and (max-width: 451px) {
  .member-head{
    margin-top: 100px  !important;
  }
}
@media (min-width: 452px) and (max-width: 497px) {
  .member-head{
    margin-top: 150px  !important;
  }
}
@media (min-width: 497px) and (max-width: 767px) {
  .member-head{
    margin-top: 200px  !important;
  }
}

@media (min-width: 460px)and (max-width: 394px) {
  .margin-370{
    margin-top: 270px  !important;
  }
}
@media (min-width: 395px)and (max-width: 514px) {
  .margin-370{
    margin-top: 340px  !important;
  }
}
@media (min-width: 514px)and (max-width: 600px) {
  .margin-370{
    margin-top: 420px  !important;
  }
}
@media (min-width: 601px)and (max-width: 767px) {
  .margin-370{
    margin-top: 450px  !important;
  }
}
@media (min-width: 506px) and (max-width: 900px) {
  .trans-member {
    height: 650px  !important;
  }
}

@media (min-width: 408px) and (max-width: 900px) {
  .img-translate-back{
    height: 500px  !important;
  }
}
@media (min-width: 404px) and (max-width: 420px)  {
  .margin-120 {
    margin-top: 220px !important;
  }
}
@media (min-width: 420px) and (max-width: 434px)  {
  .margin-120 {
    margin-top: 230px !important;
  }
}
@media (min-width: 434px) and (max-width: 444px)  {
  .margin-120 {
    margin-top: 240px !important;
  }
}

@media (min-width: 445px) and (max-width: 480px)  {
  .margin-120 {
    margin-top: 260px !important;
  }
}

@media (min-width: 480px) and (max-width: 504px)  {
  .margin-120 {
    margin-top: 280px !important;
  }
}

@media (min-width: 504px) and (max-width: 600px)  {
  .margin-120 {
    margin-top: 300px !important;
  }
}
@media (min-width: 600px) and (max-width: 767px)  {
  .margin-120 {
    margin-top: 350px !important;
  }
}
@media (min-width: 768px) {
  .margin-370{
    margin-top: 380px  !important;
  }
}
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #b6b5b5;
    font-weight: 700;
    padding: 18px 15px;
    font-size: 16px;
    font-family: 'kalameh_thin';
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    font-family: 'kalameh_thin';
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #b6b5b5;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-hover-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {

  }

  .navmenu .dropdown ul a {
    font-size: 15px;
    text-transform: none;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #b6b5b5;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #1d2a0185;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family:  'kalameh';
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: end;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);;
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #b6b5b5;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);;
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: rgba(45, 45, 45, 1);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height:200px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: 'kalameh';
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: 'kalameh';
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);;
  border-color: var(--accent-color);;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);;
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: #273231;
  padding: 60px 0;
  scroll-margin-top: 120px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 100px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 15px;
}

.section-title p {
    margin-bottom: 0;
    text-align: justify;
    direction: rtl;
    line-height: 28px;
    font-size: 20px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}
@media (max-width: 724px) {
  .team .team-member .member-info {
    position: initial;
  }
  .background-video{
    width: 350px;
    height: 100px;
  }
}
@media (max-width: 766px) {
.member-text{top: 0px !important;
left: 0px !important;
}
  .team .team-member .member-info{
    /*margin: 180px 20px 0 20px !important;*/
  }
}
@media (max-width: 724px) {
  .btn-trans-our {
    left: 0px !important;
    position: absolute;
    bottom: -40px;
    height: 50px;
    display: flex;
    align-items: center;
    direction: rtl;
    justify-content: space-evenly;
  }
  .linght-3{
    text-align: right ;
  }
  .logo{
    float: right;
  }
  .social-links{
    float: right;
  }
.text-fooer{ text-align: right ;}
  .rouded-our {
    margin-top: 30px;
    margin-right: 10px;
  }
}
.w-rem-35{
  width: 35rem;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .grid-768 {
    display: flex;
    justify-content: flex-end;
  }

}

@media (max-width: 767px) {
  .w-rem-35 {
    margin: 0px 2px;
  }
  .card-text {
    font-size: 12px;
     padding: 5px;
  }

  .card-text-opcity{
    font-size: 12px;
    opacity: 0;
    padding: 5px;
  }
}

.title-head{
  top: 50px;
  position: relative;
}

.card-back:hover .title-head{
 top: 0px;
  transition:top  0.5s;
}
.card-back:hover  .card-text-opcity {
  opacity: 1;
  transition:opacity  0.5s;
}

.card-back:not(:hover)  .card-text-opcity{
  opacity: 0;
  transition:opacity  0.5s;
}

@media (min-width: 768px)and (max-width: 1280px) {
  .w-rem-35 {
    margin: 0px 2px;
  }
  .card-back{
    height: 250px !important;
  }
}
@media (min-width: 768px) and (max-width: 767px) {
  .m-r-l {
    margin: 0 20px !important;
  }
}


@media   (max-width: 768px) and (max-width: 1280px) {
  .card-back {
    height: 280px !important;
  }
}
@media   (min-width: 988px)  and (max-width: 1280px) {
  .card-back {
    height: 680px !important;
  }
}
@media (max-width: 768px) {
  .margin-290 {
    margin-top: 100px;
  }


}
@media (min-width: 768px)  {
  .margin-290{
    margin-top: 290px;
  }
  .m-text{
    position: initial !important;
    margin-top: 20px !important;
  }
  .mt-300{
    margin-top: 200px;
  }

  .mt-card-220{margin-top: -220px;}
  .mt-card-2{
    margin-top: 90px;
  }
.pt-btn-0{
  padding-top: 0px !important;
}

  .mt-card-4{
    margin-left: 400px;
  }
}

@media (min-width: 2070px) {
  .mt-card-5{
    margin-top: -15px;
    margin-right: 290px;
  }
}
.card-text{
  color: #c6cacf  !important;
}
@media (min-width: 1024px)  {
  .height-950{
    height: 950px;
  }
  .tex-light-t {
    font-size: 48px !important;
    font-weight: 100 !important;
  }
  .card-text{
    font-size: 24px;
    color: #c6cacf;
  }
  .team .team-member .member-info span {
    display: block;
    font-size: 24px;
    font-weight: 400;
    justify-content: justify;
    line-height: 2;
    direction: rtl;
    text-align: justify;
  }
  .card-title{
    font-size: 28px;
  }
}
@media (max-width: 767px)  {
  .height-950{
    height: 350px;
  }
  .card-text{
    font-size: 10px;
    color: #c6cacf;
  }
  .card-title{
    font-size: 12px;
  }
  .card-body{
    padding: 2px;
  }
  .body-back {
    height: 170px;
  }
}
@media (max-width: 1024px) {
  .body-back {
    height: 180px !important;
  }

}

@media (min-width: 768px) {
  .member-info {
     height: 400px;
  }
}
@media (max-width: 723px) {
  .btn-comming {
    position: relative !important;
  }
  .border-sm-0{
    border: none !important;
  }
}
@media (max-width: 999px) {
  .mt-300{
    margin-top: 200px;
  }
  .body-back {
    background: #00090075;
    height: 480px;
    text-align: right;
    color: #f8f6f6;
    border-radius: 0 0 25px 25px !important;
  }
}

@media (max-width: 1024px){

  .body-back{
    background: #00090075;
    height: 100px;
    text-align: right;
    color: #f8f6f6;
    border-radius:0 0 25px  25px !important;
  }

  .rounded-itm{
    width: 15px;
    height: 15px;
    border: 1px solid;
    border-radius: 100%;
    background: #ffffff;

  }
}

@media (max-width: 620px) {
.body-img-home{
  position: relative;
  z-index: 2;
  width: 100%;
  top: 170px;
  left: 0px;
  border-radius: 25px;
}
}

@media  (min-width: 620px) and (max-width: 1024px) {
  .body-img-home{
    position: relative;
    z-index: 2;
    width: 100%;
    top: 170px;
    left: 0px;
    border-radius: 25px;
  }
}
@media  (min-width: 730px) and (max-width: 767px) {

}
@keyframes w-30 {
  to {
    width: 45px;
    height: 45px;
  }
  from {
    width: 30px;
    height: 30px;
  }
}


@keyframes w-45 {
  from {
    width: 45px;
    height: 45px;
  }
  to {
    width: 30px;
    height: 30px;
  }
}


@keyframes mystatte {
  to {
    top: 200px;
    left: 0px;
  }
  from {
    top: 170px;
    left: 30px;
  }
}


@keyframes mymove {
  from {
    top: 200px;
    left: 0px;
  }
  to {
    top: 170px;
    left: 30px;
  }
}



@media (max-width: 767px){
  .f-sm{
   font-size: 10px;
 }
}
@media (min-width: 767px) {
  .transition-card:hover .img-card-trans {
    animation: mymove 1s ease forwards;
  }

  .transition-card:not(:hover) .img-card-trans {
    animation: mystatte 2s ease forwards;
  }



  .box-acccordion-row-1{
    background-image: url("../img/hero-carousel/Rectangle 1.png");
  }
  .box-acccordion-row-2{
    background-image: url("../img/hero-carousel/Rectangle 2.png");
  }
  .box-acccordion-row-3{
    background-image: url("../img/hero-carousel/Rectangle 3.png");
  }
  .box-acccordion-row-4{
    background-image: url("../img/hero-carousel/Rectangle 4.png");
  }
  .box-acccordion-row-5{
    background-image: url("../img/hero-carousel/Rectangle 5.png");
  }
  .box-acccordion-row-6{
    background-image: url("../img/hero-carousel/Rectangle 6.png");
  }
  .box-acccordion-row-7{
    background-image: url("../img/hero-carousel/Rectangle 7.png");
  }
.circle-mode{
  display: flex;
  align-items: center;
  margin-top: 20px;
  min-height: 50px;
}
  .transition-card:hover .rounded-itm {
    animation: w-30 2s ease forwards;

  }

  .transition-card:not(:hover) .rounded-itm {
    animation: w-45 2s ease forwards;

  }
  .body-img-home img{
    height: 306px !important;
  }

  .body-img-home-about img{
    height: 306px !important;
  }

  .body-card-img-about:hover .body-img-home-about img{
    height: 310px !important;
  }

  .body-img-home-about{
    position: relative;
    z-index: 2;
    width: 100%;
    top: 200px;
    left: 0px;
    border-radius: 25px;
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .body-img-home{
    position: relative;
    z-index: 2;
    width: 100%;
    top: 200px;
    left: 0px;
    border-radius: 25px;
  }
}

@media (min-width: 1024px){

.body-back{
  background: #00090075;
  height: 240px;
  text-align: right;
  color: #f8f6f6;
  border-radius:0 0 25px  25px !important;
}
  .rounded-itm{
    width: 45px;
    height: 45px;
    border: 1px solid;
    border-radius: 100%;
    background: #ffffff;
    bottom: 15px;
    position: absolute;
  }
}

.sticky-menue{
  background-color: #2a302f;
  height: 70px;
  display: flex;
  top: 96px;
  position: sticky;
  align-items: center;
  justify-content: center;
  z-index: 99;
}
.box-acccordion-right{
  border-radius: 25px;
  overflow: auto;
  box-shadow: inset 0 0 80px #fcfcfc47;
  height: 900px;
  scrollbar-width: none;
}
@media  (max-width: 1200px){
.border-start {
  border-left: 0px !important;
}
}


@media (min-width: 725px) {
  .m-150 {
    margin-top: -150px;
  }
}
@media (min-width: 725px) and (max-width: 1200px){


  .btn-trans-our{
    left: 0px !important;
    position: absolute;
    bottom: -50px;
    height: 50px;
    display: flex;
    align-items: center;
    direction: rtl;
    justify-content: space-evenly;

  }

  .rouded-our{
    margin-top: 30px;
    margin-right: 10px;
  }
  .h-200 {
    height: 200px;
    font-size: 38px;
    color: rgba(255, 254, 254, 0.32);
  }
}
.liner-grad{
  min-height: 106px ;
}
.pos-accordion{
  border-right: 1px solid;
}
.pos-accordion:hover .head-text{
  font-size: 24px;
  transition:font-size 2s;
  min-height: 106px;

}
.head-text:hover{
  font-size: 18px;
}
.pos-accordion:hover .text-accordion{
  display: block;
  transition:all 0.001s;

}

.show-text{
  font-size: 20px;
 height: 150px;
  margin-top: 0px;
  text-overflow: initial;
  overflow: visible;
  white-space: normal;}

.text-accordion{
  display: none;
}
.border-start-hover:hover{
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.position-head{
  background: #273231;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  text-align: right;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(-90deg, #273231, #ffffff, #ffffff, #273231) 1;
}
.text-line{
  overflow: auto;
  height: 740px;
  scrollbar-width: none;
}
  .box-acccordion{
    border-radius: 25px;
    overflow: auto;
    height: 432px;
    scrollbar-width: none;
  }
.box-acccordion-two{
  border-radius: 25px;
  overflow: auto;
  scrollbar-width: none;
}
  .box-acccordion-row{
    border-radius: 25px;
    overflow: auto;
    box-shadow: inset 0 0 80px #0b0606;
    scrollbar-width: none;
    border: 1px solid;
  }
.text-line p{
  line-height: 2.2;
  font-size: 21px;
  text-align: justify;
}
.bg-head{
  background: url("../img/team/team-2.jpg");
  background-size: 100% 100%;
  border-radius: 25px;
  height: 600px;
  margin-top: 40px;
}
.head-text-menue{
  text-align: right;
  font-size: 35px;
}
.inputform:hover{
  font-size: 16px;
  padding: 17px;


}
.border-gradiant{
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(-90deg, #273231, #ffffff, #ffffff, #273231) 1;
}
.f-19{
  font-size: 19px;
}
.input-form{
  background: #273231 !important;
  outline: 0;
  border: 0;
  width: inherit;
  color: #ffffff;
}


.inputform {
  border: 1px solid #ccc;
  border-radius: 12px;
  box-sizing: border-box;
  font-size: 20px;
  padding: 0.7em 1em;
  width: 100%;
  background: #273231 !important;
  text-align: right;
  display: flex;
  text-wrap-mode: nowrap;

}
.bg-impload{
  padding: 10px 5px;
  word-spacing: 4px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 30px;
  width: 190px;
  border-style: solid;
  border-color: rgb(74, 77, 76);
  background: linear-gradient(98.4deg, rgb(30 35 31 / 79%) 24.25%, rgb(41 37 37 / 52%) 75.75%);
}
.input labled {
  right: 13px;
  padding: 0 0.5em;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.1s;
}
.bg-form{
  background: #e4d9d914;
  border-radius: 25px;
  padding: 40px;
}


.rtl-label{
  right: 0.5rem !important;
  left: auto !important;
}
.form-label-group.in-border input:focus~.rtl-label, .form-label-group.in-border input:not(:placeholder-shown)~.rtl-label, .form-label-group.in-border select~.rtl-label, .form-label-group.in-border textarea:focus~.rtl-label, .form-label-group.in-border textarea:not(:placeholder-shown)~.rtl-label{
  right: calc(var(--input-padding-x) - 40px) !important;
  left: auto !important;
}

.bg-pen{
  background-color: rgba(45, 45, 45, 1) !important;
  }
.bg-darkk{
  background-color: #000000;
  right: 0px;
  width: 100%;
  display: flex
;
  justify-content: end;
}
.head-title{
  text-align: right;
  font-size: 35px;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(-90deg, #273231, #ffffff, #ffffff, #273231) 1;
}
.background-video{
  right: 0;
  bottom: 0;
 height: 300px;
}
.active-btn .active {
  border-radius: 30px;
  word-spacing: 4px;
  border: 2px solid #4a4d4c;
  background: #475150;
  background: linear-gradient(98.4deg, rgba(255, 255, 255, 0.2) 24.25%, rgba(0, 0, 0, 0) 75.75%);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.text-body-card{
  border: 1px solid #383838;
  border-radius: 35px;
  background: linear-gradient(0deg, #2D3333, #2D3333), linear-gradient(158.48deg, #4E5352 1.74%, rgba(41, 46, 46, 0.4) 97.55%);
}



.body-card-img {
  display: flex;
  flex-direction: column;

}

.body-card-img:hover{
  transform: scale(1.2);
  transition: transform ease-in-out 0.3s;
}


.margin-90 {
  margin-top: -90px !important;
}
@media (min-width: 768px) {
  .margin-90 {
    margin-top: 90px !important;
  }
}
@media (min-width: 724px){
 .btn-trans-our{
   left: 0px !important;
   position: absolute;
   margin-top: 820px;
   height: 50px;
   display: flex;
   align-items: center;
   direction: rtl;
   justify-content: space-evenly;
 }

.rouded-our{
  margin-right: 10px;
}

  .rouded-our-btn{
    margin-right: 10px;
  }

  .h-200 {
    height: 200px;
    font-size: 38px;
    color: #fffefe;
  }
}
.hero .carousel {
  width: 100%;
  min-height: 190vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.hero h2 {
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

.heder-slider{
  padding: 30px 15px;
  text-align: center;
  margin: 40px 20px 0 20px;
  text-align: right;}
.member-text {
  position: relative;
  top: -20px;
  position: absolute;
  left: 45px;
  z-index: 1;
}

.aos-text{
  padding: 30px 15px;
  text-align: center;
  margin: -170px 20px 0 20px;
  text-align: right;
}

.member-size{
  position: relative;
  top: 30px;
  position: absolute;
  right: 40px;
  z-index: 1;
}

.aos-light{
  padding: 30px 15px;
  text-align: center;
  margin: -80px 20px 0 20px;
  border-radius: 8%;
  text-align: right;
}
.title-card-pos{
  text-align: right;
  color: #ffffff;
}
.jutify-text{
  text-align: justify;
  direction: rtl;
}
.content-right{
  line-height: 1;
  display: flex;
  flex-direction: column;
  line-height: 3;
  margin-top: 50px;
}

.imf-parent{
  position: relative;
  top: 30px;
  position: absolute;
  z-index: 1;
}


.text-sec{
  color: #e2dcdc;
}
.footer-dire h2{
  font-family: 'kalameh';
}
.footer-dire{

  text-align: right;
  border-right: 1px solid  var(--nav-hover-color);
  padding: 0 30px;
}
.rtl{direction: rtl}
.linght-3{
  line-height: 2.5;
}
.footer-link-text{
  text-align: left;
  padding: 0 30px;
}
.line_hieght-2{
  line-height: 2;
}

.radius-5{
  border-radius: 5% 5% 0 0;
}
.sabt_sefaresh{
  color: #f6f1f1;
  font-size: 20px;
  box-shadow: inset 0px 33px 25px 0 #fcddab36, inset 0 66px 15px 0px #3d09f9e6, inset 0 99px 5px 0px #f6d9d900;
}

.height-800{
  height: 800px;
}
.team-our{
  color: #f6f1f1;
  font-size: 20px;
  box-shadow: inset 0px 33px 25px 0 #fcddab36, inset 0 66px 15px 0px #8f08a580, inset 0 99px 5px 0px #f6d9d900;
}
.height-600{
  height: 600px;
}

.margin-180{
  margin-top: 180px;
}
.margin-120{
  margin-top: 210px;
}

.animat-team{
  padding: 30px 15px;
  text-align: center;
  margin: -170px 20px 0 20px;
  text-align: right;
}

.img-translate-back{
  height: 400px;
  width: 85%;
  border-radius: 8%;
  left: 40px;
  top: 80px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background: #6f6e6e5e;
}

.member-size{
  position: relative;
  top: 30px;
  position: absolute;
  right: 10px;
  z-index: 1;
}
.margin-240{
  margin-top: 210px;
}
.radius-8{
  border-radius: 8%;}
.member_infos{
  height: 480px;
  width: 85%;
  border-radius: 8%;
  top: 80px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background: #6f6e6e5e;
}
.w-rem{
  width: 35rem;
}




.card-back {
  height: 650px;
  background-size: 100% 100%;
  border: snow;
  border-radius: 25px !important;
}

.trans-member{
  height: 550px;
  width: 85%;
  border-radius: 8%;
  top: 80px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background: #6f6e6e5e;
}



.member-head{
  height: 440px;
  width: 85%;
  border-radius: 8%;
/* position: absolute; */
  left: 40px;
  top: 80px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background: #6f6e6e5e;
}

.margin-10{
  margin-top: 180px;
}
@media (max-width: 768px) {
  #hero {
    border-radius: 0 0 20px 20px;
  }
}
@media (min-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
  #hero{
    border-radius: 0 0 62px 62px;
  }
}


.card-back:hover  .rounded-itm{
  animation: reverseZoomRotate 1s ease forwards;
}
.card-back:not(:hover)  .rounded-itm{
  animation: zoomRotate 2s ease forwards;
}

.transition-card:hover  .body-img-home-about{
  padding-right: 0 !important;
  padding-left: 0 !important;
  transform: scale(1.01);
  transition: all 0.4s;
}
.body-img-home img{width: 100%}
@media (min-width: 1200px) {
  .navmenu .dropdown ul a {
    font-size: 15px;
    text-transform: none;
    padding: 9px 12px !important;
    margin-bottom: 10px;
    border: 1px solid var(--nav-color) !important;
    background: #100f0f;
  }
}

.text-fooer{
  font-family: 'kalameh';
  color: #e2dcdc;
}
@media (min-width: 1200px) {
  .fs-20{
    font-size: 28px !important;
  }
  .fs-21{
    font-size: 21px  !important;
  }
  .back-none  li{
    margin-bottom: 20ox;
  }
  .text-fooer{
    font-size: 28px;
    font-family: 'kalameh';
    color: #e2dcdc;
  }
  .content-text{
    width: 40%;
    line-height: 2;
    float: right;
    font-family: 'kalameh';
  }
  }
.back-none li a{
  width: 50px !important;
}
.back-none{
  background: #201f1f0a !important;
}
.dropdown a{
  border: 1px solid;
  border-radius: 15px;
  padding: 9px;
}
.dropdown-item{
  background-color: #273231;
  border: 1px solid;
  border-radius: 15px;
  padding: 9px;
}
.content{
  text-align: right;
  bottom: 50px;
  position: absolute;
}


.content-text  p{
  text-align: justify;
  text-justify: inter-word;
  font-size: 24px;
  direction: rtl;
}
.hero p {
  animation: fadeInDown 1s both 0.2s;
}
.self-end{
  flex-direction: row-reverse;
  display: flex;
}
btn-grad-t:hover{
  -webkit-transform: scale(1.2);
}
.btn-grad:hover{
  -webkit-transform: scale(1.2);
}

.rounded-itm-btn{
  width: 30px;
  height: 30px;
  border: 1px solid;
  border-radius: 100%;
  background: #ffffff;
  bottom: 15px;
}

@keyframes zoomRotate {
  to {
    border-radius: 50%;
    transform: rotate(360deg) scale(0.8);
  }
}

@keyframes reverseZoomRotate {
  from {
    width: 30px;
    height: 30px;
  }
  to {
    width: 40px;
    height: 40px;
  }
}

.btn-comming:hover  .rounded-itm-btn{
  animation: reverseZoomRotate 1s ease forwards;
}
.btn-comming:not(:hover)  .rounded-itm-btn{
  animation: zoomRotate 2s ease forwards;
}
.btn-comming{
  border-radius: 30px;
  word-spacing: 4px;
  border: 2px solid #4a4d4c;
  background: #475150;
  background: linear-gradient(98.4deg, rgba(255, 255, 255, 0.2) 24.25%, rgba(0, 0, 0, 0) 75.75%);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

@media (min-width: 1024px) {
 .fs-28{  font-size: 28px;}
  .hero h2,
  .hero p {
    max-width: 100%;
  }

  .member-text {
    width: 310px;
  }

    .member-size {
      width: 330px;
    }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);;
  font-family: 'kalameh';
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color);, transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 1;
}



@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  font-size: 32px;
  line-height: 1;
  top: 200px;
  position: absolute;
  color: #f7f7f7 !important;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

.about .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .card-item {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 30px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  position: relative;
}

.why-us .card-item span {
  color: var(--accent-color);;
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.why-us .card-item h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.why-us .card-item h4 a {
  color: var(--heading-color);
}

.why-us .card-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  padding: 0;
}

.why-us .card-item:hover {
  background: var(--accent-color);;
  padding: 30px 30px 70px 30px;
}

.why-us .card-item:hover span,
.why-us .card-item:hover h4 a,
.why-us .card-item:hover p {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--surface-color);
  color: var(--accent-color);;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: 'kalameh';
  font-size: 16px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  text-align: center;
  padding: 20px;
  transition: all ease-in-out 0.3s;
  height: 100%;
}

.services .service-item .icon {
  background-color: var(--surface-color);
  color: var(--accent-color);;
  margin: 0 auto;
  width: 80px;
  height: 80px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  font-size: 32px;
  transition: ease-in-out 0.3s;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.services .service-item h3 {
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 22px;
  transition: 0.3s;
  position: relative;
}

.services .service-item h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: var(--accent-color);;
  bottom: 0;
  left: calc(50% - 25px);
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover .icon {
  box-shadow: 0px 0 40px rgba(0, 0, 0, 0.1);
}

.services .service-item:hover h3 {
  color: var(--accent-color);;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: 'kalameh';
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);;
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}
.team .team-member .member-info {
  text-align: center;
  position: relative;
  border-radius:25px;
  text-align: right;
}
@media (min-width: 370px)  and (max-width: 480px) {
  .margin-290 {
    margin-top: 180px;
  }
}
@media (min-width: 481px)  and (max-width: 526px)   {
  .margin-290 {
    margin-top: 200px;
  }
  .f-26{
    font-size: 20px;
    line-height: 3;
  }
}

@media (min-width: 527px)  and (max-width: 767px)   {
  .margin-290 {
    margin-top: 225px;
  }
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}
@media (max-width:767px) {
  .team .team-member .member-img-tree {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    left: 20px;
    z-index: 25;
    position: relative;
    width: 93%;
    font-family: 'kalameh';
  }

}

@media (min-width:340px)  and (min-width:372px){
  .team .team-member .member-img-tree {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    left: 20px;
    z-index: 25;
    position: relative;
    width: 88%;
    font-family: 'kalameh';
  }

}
@media (min-width:390px)  and (min-width:420px){
  .team .team-member .member-img-tree {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    left: 20px;
    z-index: 25;
    position: relative;
    width: 90%;
    font-family: 'kalameh';
  }

}

@media (min-width:768px) {
  .team .team-member .member-img-tree {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    left: 20px;
    z-index: 25;
    position: relative;
    width: 95%;
    font-family: 'kalameh';
  }

}
@media (min-width:1020px) {
  .team .team-member .member-img-tree {
    margin-top: 40px;
    border-radius: 8%;
    overflow: hidden;
    left: 20px;
    z-index: 25;
    position: relative;
    width: 95%;
    font-family: 'kalameh';
  }
}
.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/


.team .team-member .member-img-one {
  border-radius: 8px;
  overflow: hidden;
  left: 20px;
  z-index: 25;
  position: relative;
}

.team .team-member .member-img-two {
  border-radius: 8px;
  overflow: hidden;
  left: 20px;
  z-index: 25;
  position: relative;
}
.h-200{
  height: 460px;
}
.m-25{
  margin-top: -25px !important;
}

.team .team-member .member-img-four {
  border-radius: 8px;
  overflow: hidden;
  left: 20px;
  z-index: 25;
  position: relative;
}.team .team-member .member-img-five {
   border-radius: 8px;
   overflow: hidden;
   left: 20px;
   z-index: 25;
   position: relative;
 }



.team .team-member .social {
  position: absolute;
  left: 0;
  top: -18px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: var(--contrast-color);
  background: var(--accent-color);;
  margin: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: 0.3s;
}

.member-info{
  height: auto;
}
#preloader{
  bottom: 0px;
  position: absolute;
}
.trans-box{
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background: #6f6e6e5e;
  height: auto;
}
.team .team-member .social a i {
  line-height: 0;
  font-size: 16px;
}

.team .team-member .social a:hover {
  background: color-mix(in srgb, var(--accent-color); 90%, black 15%);
}

.background-team{
  background-image: url("../img/portfolio/team-back.png");
  background-size: 100% 100%;
}

.background-content{
  background-image: url("../img/portfolio/team-content.png");
  background-size: 100% 100%;
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}
.f-26{
  font-size: 26px;
}
.team-member-tow{
  border-radius: 8px;

  left: 20px;
  z-index: 25;
  position: relative;
  width: 95%;
  font-family: 'kalameh';
  margin-top: 100px;
}


.team .team-member .member-info h4 {
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 20px;
}



.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.faq .faq-item i {
  color: var(--accent-color);;
  font-size: 18px;
  margin-right: 10px;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}

.faq .faq-item p {
  font-size: 15px;
}

.faq .faq-item:first-child {
  padding-top: 0;
  margin-top: 0;
}

.faq .faq-item:last-child {
  border: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.contact .info-item i {
  color: var(--accent-color);;
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color);, transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  padding: 30px;
  margin-top: 22px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}
@media (min-width: 1024px)  and (max-width: 1416px) {
  .btn-trans-our{
    margin-top: 700px !important;
  }

}
.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);;
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);;
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color);, transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
  .border-start-hover img {
    display: none;
  }
}
@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);;
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color);, transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}
.liner-grad {
  background: linear-gradient(to left, rgb(32 34 32), rgb(46 49 47 / 20%));
  height: inherit;
}
.text-accordion{
  font-size: 20px;
  max-height: 50px;
  margin-top: -20px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.head-text{
  font-size: 60px;
}
.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.liner-grad{
  background: linear-gradient(to left, rgb(32 34 32), rgb(46 49 47 / 20%));
  height: inherit;
}
.box-acccordion-row:hover{
  box-shadow:1px 1px 25px #ffffff66;
}


.box-acccordion-row{
  border-radius: 25px;
  overflow: auto;
  scrollbar-width: none;
  background-repeat: repeat-x;
  background-size: 100% 100%;
}

.gradin-border{
  padding: 15px;
  background: linear-gradient(#273231, #273231) padding-box, linear-gradient(to right, #00008b00, #f7e8ff) border-box;
  border-radius: 1em;
  border: 2px solid transparent;
  margin: 10px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color);, transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);;
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);;
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);;
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

.btn-comming:hover{
  box-shadow: 0px 5px 25px #c9c9c157;
  border: 2px solid #4a4d4c;
}
.btn-grad {
    background: linear-gradient(102.28deg, rgba(107, 49, 255, 0.3) 15.19%, rgba(252, 0, 255, 0.3) 55.57%, rgba(116, 8, 179, 0.069) 84.81%);
}
.btn-grad {
  margin: 10px;
  padding: 8px 20px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border: none;
  border-radius: 10px;
  display: block;
  font-size: 27px;
  -webkit-transition: all 0.5s ease-in-out;
}

.btn-grad:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}
.btn-grad-t:hover {
  -webkit-transform: scale(1.1);
}
.btn-grad-t {
    background: linear-gradient(101.91deg, rgba(49, 255, 180, 0.3) 14.44%, rgba(0, 36, 255, 0.3) 44.31%, rgba(67, 0, 179, 0.069) 85.56%);
  -webkit-transition: all 0.5s ease-in-out;
}
.btn-grad-t {
  margin: 10px;
  padding: 8px 20px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border: none;
  border-radius: 10px;
  display: block;
  font-size: 27px;
}

.btn-grad-t:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}
.show{
  background: none !important;
  border: none !important;
}
.bg-form:hover{
  background: #f0e3e330;
  transition: background-color 1ms;
}

.bg-form:hover  .bg-impload{
  box-shadow: 0px 5px 25px #c9c9c157;
}

.bg-impload{
  border-radius: 30px;
  background: #475150;
  background: linear-gradient(98.4deg, rgba(255, 255, 255, 0.2) 24.25%, rgba(0, 0, 0, 0) 75.75%);
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    max-width: 120px;
    height: auto;
    object-fit: contain;
}
.order-captcha{
    position: absolute;
    width: 130px;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
}
.signin-captcha-input{
    text-align: left;
    padding-left: 4px;
}
.box_notice{
    direction: rtl;
    text-align: right;
}


