/**
* 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(255, 251, 251, 0);
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #385167;
    --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

body {
    color: var(--default-color);
    font-family: 'KalamehWebFaNum', serif;
    font-weight: normal;
}
.body-home{
    background-color: #191A1A;
}

.body-other{
    background: linear-gradient(
        to bottom,
        rgba(42, 48, 40) 0%,
        rgba(41, 48, 41) 10%,
        rgba(39, 46, 40) 20%,
        rgba(39, 46, 40) 30%,
        rgba(37, 44, 39) 40%,
        rgba(37, 44, 40) 45%,
        rgba(36, 44, 41) 50%,
        rgba(36, 44, 41) 60%,
        rgba(36, 43, 42) 70%,
        rgba(33, 45, 44) 75%,
        rgba(29, 45, 44) 90%);
}

.body-other .header{
    box-shadow: none !important;
}


a {
    /*color: var(--accent-color);;*/
    text-decoration: none;
}

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: 'KalamehWebFaNum', serif;
}

/* 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-iteration-count: infinite;
    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: linear-gradient(
        180deg,
        #191919 10%,
        rgba(40, 48, 48, 0) 100%
    );
    /*   box-shadow: 0 5px 10px 10px #191919;*/
    /*
    padding-top: 10px;
    */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}
.fix-header {
    transition: transform 0s;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
/*.page{
    margin-top: 94px;
}*/
@-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;
}

.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 .logo {
    line-height: 1;
}

.scrolled .header {
   /* box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);*/
}
.logo-text{
    font-size: 45px;
    line-height: 22px;
}
.tag-line{
    font-size: 20px;
    line-height: 22px;
    border-bottom: 1px solid var(--main-color);
}

/*--------------------------------------------------------------
# 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-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 {
        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-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-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.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: inherit !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-footer{ 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-opacity{
        font-size: 12px;
        opacity: 0;
        padding: 5px;
    }
}

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

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

.card-back:not(:hover)  .card-text-opacity{
    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: 276px;
    }

    .mt-card-220{margin-top: -220px;}
    .mt-card-2{
        margin-top: 90px;
    }
    .pt-btn-0{
        padding-top: 0 !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;
        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;
    }
}

@media (min-width: 768px) {
    .member-info {
        height: 400px;
    }
}
@media (max-width: 723px) {
    .btn-coming {
        position: relative !important;
    }
    .border-sm-0{
        border: none !important;
    }
}
@media (max-width: 999px) {
    .mt-300{
        margin-top: 276px;
    }

}

@media (max-width: 1024px){

    .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: 0;
        border-radius: 35px;
    }
}

@media  (min-width: 620px) and (max-width: 1024px) {
    .body-img-home{
        position: relative;
        z-index: 2;
        width: 100%;
        top: 170px;
        left: 0;
        border-radius: 35px;
    }
}
@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 img-hover {
    from {
        top: 0;
        left: 0;
    }
    to {
        top: -2.5rem;
        left: 2.5rem;
    }
}

@keyframes img-hover-back {
    from {
        top: -2.5rem;
        left: 2.5rem;
    }
    to {
        top: 0;
        left: 0;
    }
}



@keyframes mystatte {
    to {
        top: 276px;
        left: 0;
    }
    from {
        top: 246px;
        left: 40px;
    }
}


@keyframes mymove {
    from {
        top: 0;
        left: 0;
    }
    to {
        top: 2.5rem;
        left: 2.5rem;
    }
}



@media (max-width: 767px){
    .f-sm{
        font-size: 10px;
    }
}
@media (min-width: 767px) {
    .transition-card:hover .img-card-trans {
        animation: mymove 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        box-shadow: 11px 11px 6px -10px #FFFFFF33 inset !important;
    }

    .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-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: 0;
        border-radius: 25px;
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }

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

@media (min-width: 1024px){

    .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-accordion-right{
    border-radius: 25px;
    overflow: auto;
    height: 900px;
    scrollbar-width: none;
    box-shadow: 30px 30px 200px 5px #00000059;
    background: linear-gradient(
        305.85deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(255, 255, 255, 0.1) 100%
    );
}
@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: 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-accordion-left{
    border-radius: 1.563rem;
    overflow: auto;
    min-height: 7rem;
    scrollbar-width: none;
    background: linear-gradient(
        305.85deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(255, 255, 255, 0.1) 100%),
            linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.22),
            rgba(0, 0, 0, 0.22
        )
    );
    border: 1px solid #FFFFFFCC;
    margin-bottom: 4rem;

}
.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{
    text-align: center;
    margin-top: 10rem;
    margin-bottom: 3.125rem;
}
.bg-head img{
    border-radius: 1.563rem;
    width: 100%;
}
.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 label {
    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: 0;
    width: 100%;
    display: flex;
    justify-content: end;
}
.head-title {
    text-align: right;
    font-weight: 400;
    font-size: 2.5rem;
    line-height: 2.5rem;
    padding: 1.25rem;
    background: #00000003;
    border-bottom: 1px solid;
    border-image: linear-gradient(
        89.99deg,
        rgba(255, 255, 255, 0) 4.06%,
        #FFFFFF 49.64%,
        rgba(153, 153, 153, 0) 95.23%
    ) 1;
    border-image-slice: 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;
}
.text-body-card{
    box-shadow:
        29px 28px 50px -14px #000000,
        inset 11px 11px 6px -10px #FFFFFF33 ;
}

.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: 0 !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;
    margin: 40px 20px 0 20px;
    text-align: right;
}
.member-text {
    top: -20px;
    position: absolute;
    left: 45px;
    z-index: 1;
}

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

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

.aos-light{
    padding: 30px 15px;
    margin: -80px 20px 0 20px;
    border-radius: 8%;
    text-align: right;
}
.title-card-pos{
    text-align: right;
    color: #ffffff;
    font-weight: bold;
}
.justify-text{
    text-align: justify;
    direction: rtl;
}
.content-right{
    display: flex;
    flex-direction: column;
    line-height: 2;
}

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

.text-sec{
    color: #e2dcdc;
}

.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-70{
    border-radius: 70px 70px 0 0;
}
.sabt_sefaresh{
    color: #f6f1f1;
    font-size: 20px;
    box-shadow:
        inset 0 33px 25px 0 #fcddab36,
        inset 0 66px 15px 0 #3d09f9e6,
        inset 0 99px 5px 0 #f6d9d900;
}

.height-800{
    height: 800px;
}
.team-our{
    color: #f6f1f1;
    font-size: 20px;
    box-shadow: inset 0 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;
    margin: -170px 20px 0 20px;
    text-align: right;
}

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

.member-size{
    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: 0 2px 15px rgba(0, 0, 0, 0.1);
    background: #6f6e6e5e;
}
.w-rem{
    width: 35rem;
}


.trans-member{
    height: 550px;
    width: 85%;
    border-radius: 8%;
    top: 80px;
    box-shadow: 0 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%;
    border-radius: 35px;
    box-shadow:11px 11px 6px -10px #FFFFFF33 inset !important;
}
@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-footer{
    color: #e2dcdc;
}
@media (min-width: 1200px) {
    .fs-20{
        font-size: 28px !important;
    }
    .fs-21{
        font-size: 21px  !important;
    }
    .back-none  li{
        margin-bottom: 20px;
    }
    .text-footer{
        color: #e2dcdc;
    }
    .content-text{
        width: 40%;
        line-height: 2;
        float: right;
    }
}
.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: 30px;
    direction: rtl;
    font-weight: normal;
}
.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;
    }
}



@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-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-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;
}

.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;
}

@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;
    }
}

.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;
}



/*--------------------------------------------------------------
# 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: 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;
    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 */
}
.soft-effect{
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-work-us {
    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%
    );
    background-blend-mode: overlay;
    border-radius: 30px;
    text-align: center;
    background-size: 200% auto;
    color: white;
    border: none;
    display: block;
    box-shadow:
        inset 11px 11px 6px -10px #FFFFFF33,
        30px 30px 200px 5px #00000059;
    font-weight: 900;
    font-size: 30px;
    line-height: 40px;
    padding: 15px 40px;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    text-transform: uppercase;
}

.btn-work-us:hover {
    background: linear-gradient(
        106.28deg,
        #594784 9.19%,
        #cf48d9 64.57%,
        #b552d9 81.81%
    );
    box-shadow:
        inset 11px 11px 6px -10px #FFFFFF33,
        30px 30px 200px 5px #00000059,
        0 0 39px 0 #F476FF66;

}

.btn-contact-us {
    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%
    );
    background-blend-mode: overlay;
    box-shadow:
        30px 30px 200px 5px #00000059,
        inset 11px 11px 6px -10px #FFFFFF33 ;
    border-radius: 30px;
    text-align: center;
    background-size: 200% auto;
    color: white;
    border: none;
    display: block;
    font-weight: 900;
    font-size: 30px;
    line-height: 40px;
    padding: 15px 40px;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    text-transform: uppercase;
}

.btn-contact-us:hover {
    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%
    );
    background-blend-mode: overlay;
    box-shadow:
        30px 30px 200px 5px #00000059,
        inset 11px 11px 6.4px -10px #FFFFFF33,
        0px 0px 39px 0px #6B80FF66;

}
.show {
    background: none !important;
    border: none !important;
}

.bg-form:hover {
    background: #f0e3e330;
    transition: background-color 1ms;
}

.bg-form:hover  .bg-impload{
    box-shadow: 0 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;
}
.color-white{
    color:#ffffff !important;
}
.toc-list{
    padding: 0;
    margin: 0;
    list-style: none;
}
.toc-list li{
    padding-top: 8px;
}
.toc-list li a{
    color: #ffffff !important;
    font-size: 1.75rem !important;
}
.copy-right-section{
    text-align: right;
    font-size: 20px;
    font-weight: 100;
}
.social-logo{
    width: 25px;
    height: 25px;
}
/*
    project
 */
.first-row{
    margin-top: 6.25rem;
}
.project-box , .project-box-smiler,.project-box2{
    display: flex;
    flex-direction: column;
    border: 1px solid #383838;
    border-radius: 2.813rem;
    background: linear-gradient(
        0deg,
        #2D3333,
        #2D3333
    ), linear-gradient(
        158.48deg,
        #4E5352 1.74%,
        rgba(41, 46, 46, 0.4) 97.55%
    );
    box-shadow: 29px 28px 50px -14px #000000, inset 11px 11px 6px -10px #FFFFFF33;
    padding: 0 !important;
    position: relative;
}

.project-box a:hover .project-box-img img{
    animation: img-hover 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    box-shadow: 11px 11px 6px -10px #FFFFFF33 inset !important;
}

.project-box a:hover .section_dot_bottom .dot{
    width: 2.813rem;
    height: 2.813rem;
}

.project-box a:not(:hover) .project-box-img img {
    animation: img-hover-back 1s ease forwards;
}


  .project-box2:hover .project-box-img img{
      animation: img-hover 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
      box-shadow: 11px 11px 6px -10px #FFFFFF33 inset !important;
  }

.project-box2:hover .section_dot_bottom .dot{
    width: 2.813rem;
    height: 2.813rem;
}

.project-box2:not(:hover) .project-box-img img {
    animation: img-hover-back 1s ease forwards;
}

.project-box-img img{
    position: relative;
    width: 100%;
    min-height: 16.188rem;
    border-radius: 2.813rem;
    transition: all 0.3s ease;
}
.project-box-content{
    padding: 0.625rem 0.625rem 4.625rem 0.625rem;
    direction: rtl;
    color: #ffffff !important;
    position: relative;
    min-height: 270px;
}

.project-box-title{
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    text-align: right;
    width: 85%;
    margin-top: 10px;
    margin-bottom: 15px;
}

.project-box-summary{
    font-weight: 200;
    font-size: 20px;
    text-align: justify;
    overflow: hidden;
}
.section_dot_bottom{
    position: absolute;
    bottom: 22px;
    left: 18px;
}
.section_dot_bottom2{
    position: absolute;
    top:13.5rem;
    left: 22px;
}


.section_dot_bottom .dot , .section_dot_bottom2 .dot{
    width: 2.188rem;
    height: 2.188rem;
    border-radius: 100%;
    background: #ffffff;
    transition: all 0.3s ease;
}
.btn-coming:hover  .rounded-itm-btn{
  /*  animation: reverseZoomRotate 1s ease forwards;
    box-shadow: 11px 11px 6px -10px #FFFFFF33 inset;*/
}
.btn-coming:not(:hover)  .rounded-itm-btn{
    /*animation: zoomRotate 2s ease forwards;*/
}
.btn-coming {
    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;
    gap: 10px;
    border-radius: 45px;
    box-shadow: 25px 25px 200px 5px #00000059;
    transition:
        background 0.4s ease,
        box-shadow 0.4s ease,
        transform 0.3s ease;
    font-size:25px ;
    font-weight: normal;
}

.btn-coming:hover {
    background: #ffffff4d;
    box-shadow:
        25px 25px 20px 5px #00000059;
}
.section-smiler{
    margin-top: 4rem;
}
.highlight-blink {
    animation: softBlink 1s ease-in-out 2;
}

@keyframes softBlink {
    0% { background-color: rgba(255, 255, 0, 0.2); }
    50% { background-color: rgba(255, 255, 0, 0.6); }
    100% { background-color: transparent; }
}

.project-gallery{
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.project-gallery li {
    border-radius: 25px;
    align-items: center;
    float: right;
    position: relative;
    background: linear-gradient(
        120.05deg,
        rgba(255, 255, 255, 0.147) 2.99%,
        rgba(255, 255, 255, 0.021) 44.13%,
        rgba(0, 0, 0, 0) 96.49%
    );
    box-shadow: 11px 11px 6px -10px #FFFFFF33 inset;
    margin-left: 16px;
    margin-bottom: 20px;
}
.project-gallery li img{
    width: 200px;
    height: 112px;
    opacity: 1;
    border-radius: 10px;
}
.section-gallery{
    margin-top: 100px;
}
.service-line{
    overflow: auto;
    height: 440px;
    scrollbar-width: none;
}
.aspect-9-16 {
    /*aspect-ratio: 9 / 16;*/
    width: 100%;
    /*object-fit: cover;*/
}
.section-gif{
    margin-top: 240px;
    margin-bottom: 40px;
    padding: 10px;
    min-height: 230px;
}
