/**
* Template Name: QuickStart
* Template URL: https://bootstrapmade.com/quickstart-bootstrap-startup-website-template/
* Updated: Jun 27 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
@import url('../fonts/droidarabickufi.css');

:root {
    --default-font: "TD";
    --heading-font: "TD";
    --nav-font: "TD";
}

/* 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: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #3d4348; /* Default color used for the majority of the text content across the entire website */
    --default-peige-color: #D6A57Eff; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #D6A57Eff; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #D6A57Eff; /* 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. */
    --back-color: #2A2926ff; /* 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: #313336; /* The default color of the main navmenu links */
    --nav-hover-color: #77b6ca; /* 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: #313336; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #77b6ca; /* 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: #f8fbfc;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    direction: rtl;
}

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

ul, ol {
    line-height: 37px;
}

p {
    line-height: 32px;
    font-size: 20px;
}

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

/* 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);
    background-color: #ffffff00;
    padding: 20px 0;
    transition: ease-in 0.7s;
    z-index: 997;
}

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

        .header .logo img {
            max-height: 100px;
            margin-left: 10px;
        }

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

        .header .logo span {
            color: var(--accent-color);
            font-size: 24px;
            font-weight: 600;
            padding-left: 3px;
        }

    .header .btn-getstarted,
    .header .btn-getstarted:focus {
        color: var(--accent-color);
        /*background: var(--accent-color);*/
        border: 1px solid var(--accent-color);
        font-size: 14px;
        padding: 8px 26px;
        margin: 0;
        border-radius: 20px;
        transition: 0.5s;
    }

        .header .btn-getstarted:hover,
        .header .btn-getstarted:focus:hover {
            color: var(--contrast-color);
            background: var(--accent-color);
        }

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 20px;
    }

    .header .navmenu {
        order: 3;
    }
}

.scrolled .header {
    box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
    background-color: var(--background-color);
    padding: 10px 0;
}

/* Index Page Header
------------------------------*/
.index-page .header {
    --background-color: rgba(255, 255, 255, 0);
    --heading-color: #ffffff;
    --nav-color: rgba(255, 255, 255, 0.5);
    --nav-hover-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
    --background-color: #ffffff;
    --heading-color: #32353a;
    --nav-color: #3a3939;
    --nav-hover-color: #e84545;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@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: #e9e9e9;
            padding: 18px 9px;
            font-size: 16px;
            font-family: var(--nav-font);
            font-weight: 400;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
        }

    .scrolled .header .navmenu a,
    .scrolled .header .navmenu a:focus {
        color: #383838;
        padding: 5px 10px;
        font-size: 15px;
        font-family: var(--nav-font);
        font-weight: bold;
        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-right: 5px;
        /*transition: 0.3s;*/
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

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

    .scrolled .header .navmenu li:hover > a,
    .scrolled .header .navmenu .active,
    .scrolled .header .navmenu .active:focus {
        color: #d4a47f;
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        right: 14px;
        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 {
            min-width: 200px;
        }

        .navmenu .dropdown ul a {
            padding: 10px 20px;
            font-size: 15px;
            text-transform: none;
            color: var(--nav-dropdown-color);
        }

            .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: var(--accent-color);
            }

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

    .navmenu .dropdown .dropdown ul {
        top: 0;
        right: 100%;
        visibility: hidden;
    }

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

    .navmenu .megamenu {
        position: static;
    }

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

            .navmenu .megamenu ul li {
                flex: 1;
            }

                .navmenu .megamenu ul li a,
                .navmenu .megamenu ul li:hover > a {
                    padding: 10px 20px;
                    font-size: 15px;
                    color: var(--nav-dropdown-color);
                }

                    .navmenu .megamenu ul li a:hover,
                    .navmenu .megamenu ul li .active,
                    .navmenu .megamenu ul li .active:hover {
                        color: var(--nav-dropdown-hover-color);
                    }

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

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: #878787;
        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;
            position: absolute;
            inset: 60px 20px 20px 20px;
            padding: 10px 0;
            margin: 0;
            border-radius: 6px;
            background-color: var(--nav-mobile-background-color);
            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(--default-color);
            padding: 10px 20px;
            font-family: var(--nav-font);
            font-size: 17px;
            font-weight: 500;
            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;
                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: var(--accent-color);
            }

                .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%);
            transition: all 0.5s ease-in-out;
            box-shadow: none;
        }

            .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-peige-color);
    background-color: var(--back-color);
    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: 130px;
            margin-right: 6px;
        }

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

    .footer .footer-about p {
        font-size: 14px;
        font-family: var(--heading-font);
    }

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

        .footer .social-links a:hover {
            color: var(--default-peige-color);
            /*border-color: var(--default-peige-color);*/
        }

    .footer a {
        font-size: 16px;
        color: color-mix(in srgb, var(--default-peige-color), transparent 30%);
        margin-right: 5px;
        transition: 0.3s;
    }

    .footer .list-unstyled a {
        text-decoration: underline;
    }

    .footer a:hover {
        color: var(--default-peige-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-peige-color), transparent 30%);
                display: inline-block;
                line-height: 1;
            }

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

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

    .footer .footer-newsletter .newsletter-form {
        margin-top: 30px;
        margin-bottom: 15px;
        padding: 6px 8px;
        position: relative;
        border-radius: 50px;
        border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
        display: flex;
        background-color: var(--surface-color);
        transition: 0.3s;
    }

        .footer .footer-newsletter .newsletter-form:focus-within {
            border-color: var(--accent-color);
        }

        .footer .footer-newsletter .newsletter-form input[type=email] {
            border: 0;
            padding: 4px 10px;
            width: 100%;
            background-color: var(--contrsast-color);
            color: var(--default-color);
        }

            .footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
                outline: none;
            }

        .footer .footer-newsletter .newsletter-form input[type=submit] {
            border: 0;
            font-size: 16px;
            padding: 0 20px;
            margin: -7px -9px -7px 0;
            background: var(--accent-color);
            color: var(--contrast-color);
            transition: 0.3s;
            border-radius: 50px;
        }

            .footer .footer-newsletter .newsletter-form input[type=submit]:hover {
                background: color-mix(in srgb, var(--accent-color), transparent 20%);
            }

    .footer .copyright {
        padding-bottom: 10px;
        border-bottom: 1px solid color-mix(in srgb, var(--default-peige-color), transparent 60%);
    }

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

    .footer .credits {
        margin-top: 6px;
        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;
    width: 100%;
    height: 100vh;
}

    #preloader:before,
    #preloader:after {
        content: "";
        position: absolute;
        border: 4px solid var(--accent-color);
        border-radius: 50%;
        animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

    #preloader:after {
        animation-delay: -0.5s;
    }

@keyframes animate-preloader {
    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1;
    }

    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0;
    }
}

/*.boxes {
  display: flex;
  background: linear-gradient(112deg, #f930f9, #0f938f);
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: white;
  filter: blur(10px) contrast(18);
  mix-blend-mode: screen;
}

.box {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #000;
}

.box:nth-child(odd) {
  animation: spinLeft 2.5s 0.2s linear both infinite;
}

.box:nth-child(even) {
  animation: spinRight 1s 0.4s linear both infinite;
}

.box:nth-child(2n) {
  animation: pulse 2s ease-in-out 0.1s infinite;
}

.box:nth-child(4n) {
  animation-direction: reverse;
}

@keyframes pulse {
  50% {
    transform: scale(1.8);
  }
  70% {
    transform: scale(0.6);
  }
}
@keyframes spinLeft {
  from {
    transform: rotate(0deg) translate(50px);
  }
  to {
    transform: rotate(360deg) translate(50px);
  }
}
@keyframes spinRight {
  from {
    transform: rotate(360deg) translate(50px);
  }
  to {
    transform: rotate(0deg) translate(50px);
  }
}*/
/*--------------------------------------------------------------
# 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);*/
    padding: 25px 0;
    position: relative;
}

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

.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 60px 0;
    text-align: center;
    position: relative;
}

    .page-title:before {
        content: "";
        background: color-mix(in srgb, var(--background-color), transparent 20%);
        position: absolute;
        inset: 0;
    }

    .page-title h1 {
        font-size: 35px;
        font-weight: 500;
        margin-bottom: 10px;
    }

main {
    min-height: 75vh;
}
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    scroll-margin-top: 100px;
    overflow: clip;
}

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Counts Section
--------------------------------------------------------------*/
.counts {
    padding: 25px 0;
}

    .counts .stats-item {
        padding: 10px;
        width: 100%;
        border: solid 2px var(--accent-color);
    }

    .counts h3 {
        font-size: 28px;
        line-height: 37px;
        font-weight: bold;
        color: var(--accent-color);
    }

    .counts p {
        color: var(--accent-color);
        font-size: 20px;
    }

    .counts .stats-item span {
        font-size: 48px;
        display: block;
        color: var(--default-color);
        font-weight: 700;
        position: relative;
    }

        .counts .stats-item span:after {
            content: "";
            position: absolute;
            display: block;
            width: 200px;
            height: 1px;
            background: var(--accent-color);
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
        }

    .counts .stats-item p {
        color: var(--accent-color);
        padding: 0;
        margin: 5px 0 0 0;
        font-family: var(--heading-font);
        font-size: 15px;
        font-weight: 600;
    }

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: right;
    position: relative;
}

    .section-title h2 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 20px;
        padding-right: 10px;
        padding-bottom: 20px;
        position: relative;
    }

        .section-title h2:after {
            content: "";
            position: absolute;
            display: block;
            width: 10px;
            height: 30px;
            background: var(--back-color);
            left: 0;
            right: -20px;
            bottom: 25px;
            /* margin: auto; */
        }

    .section-title p {
        margin-bottom: 0;
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#heroVid {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

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

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

.hero .container {
    position: relative;
    z-index: 3;
}

.hero h2 {
    margin: 0;
    font-size: 44px;
    font-weight: 700;
    color: var(--accent-color);
}

.hero p {
    color: var(--accent-color);
    margin: 5px 0 0 0;
    font-size: 20px;
}

.hero .sign-up-form {
    margin-top: 20px;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 7px;
    background: color-mix(in srgb, var(--default-color) 5%, white 90%);
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
    display: flex;
}

    .hero .sign-up-form input[type=email] {
        background-color: transparent;
        border: 0;
        padding: 4px 10px;
        width: 100%;
    }

        .hero .sign-up-form input[type=email]:focus-visible {
            outline: none;
        }

    .hero .sign-up-form input[type=submit] {
        border: 0;
        box-shadow: none;
        background-color: var(--accent-color);
        border-color: var(--accent-color);
        padding: 8px 20px 10px 20px;
        border-radius: 7px;
        color: var(--contrast-color);
        transition: 0.3s;
    }

        .hero .sign-up-form input[type=submit]:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
        }

@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }
}
/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
    --background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
    padding: 40px 0;
}

    .featured-services .service-item {
        position: relative;
        padding-top: 20px;
    }

        .featured-services .service-item .icon {
            background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
            width: 72px;
            height: 72px;
            position: relative;
            margin-right: 15px;
            line-height: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: ease-in-out 0.3s;
        }

            .featured-services .service-item .icon i {
                color: var(--accent-color);
                font-size: 32px;
                z-index: 2;
                position: relative;
            }

        .featured-services .service-item .title {
            font-weight: 700;
            margin-bottom: 5px;
            font-size: 18px;
        }

            .featured-services .service-item .title a {
                color: var(--heading-color);
            }

                .featured-services .service-item .title a:hover {
                    color: var(--accent-color);
                }

        .featured-services .service-item .description {
            font-size: 14px;
        }

        .featured-services .service-item:hover .icon {
            background-color: var(--accent-color);
        }

            .featured-services .service-item:hover .icon i {
                color: var(--contrast-color);
            }

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
    padding-bottom: 20px;
}

    .about .content .who-we-are {
        margin-bottom: 15px;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
    }

    .about .content h3 {
        font-size: 2rem;
        font-weight: 700;
    }

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

        .about .content ul li {
            padding-bottom: 10px;
        }

        .about .content ul i {
            font-size: 1.25rem;
            margin-right: 4px;
            color: var(--accent-color);
        }

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

    .about .content .read-more {
        background: var(--accent-color);
        color: var(--contrast-color);
        font-family: var(--heading-font);
        font-weight: 500;
        font-size: 16px;
        padding: 12px 24px;
        border-radius: 5px;
        transition: 0.3s;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

        .about .content .read-more i {
            font-size: 18px;
            margin-left: 5px;
            line-height: 0;
            transition: 0.3s;
        }

        .about .content .read-more:hover {
            background: color-mix(in srgb, var(--accent-color), transparent 20%);
            padding-right: 19px;
        }

            .about .content .read-more:hover i {
                margin-left: 10px;
            }

    .about .about-images img {
        border-radius: 10px;
    }

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
    border: 0;
}

.features .nav-item {
    width: 100%;
    margin-bottom: 15px;
}

    .features .nav-item:last-child {
        margin-bottom: 0;
    }

.features .nav-link {
    color: var(--heading-color);
    border: 0;
    padding: 30px;
    transition: 0.3s;
    border-radius: 10px;
    display: flex;
    cursor: pointer;
}

    .features .nav-link i {
        background-color: var(--surface-color);
        color: var(--accent-color);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        width: 48px;
        height: 48px;
        font-size: 22px;
        flex-shrink: 0;
        border-radius: 50px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .features .nav-link h4 {
        font-size: 20px;
        font-weight: 600;
        margin: 0 0 10px 0;
        transition: 0.3s;
    }

    .features .nav-link p {
        font-size: 15px;
        margin: 0;
    }

    .features .nav-link:hover {
        background: color-mix(in srgb, var(--accent-color), transparent 96%);
    }

    .features .nav-link.active {
        background: color-mix(in srgb, var(--accent-color), transparent 96%);
        color: var(--default-color);
    }

.features .tab-pane img {
    border-radius: 15px;
}

/*--------------------------------------------------------------
# Features Details Section
--------------------------------------------------------------*/
.features-details .features-item + .features-item {
    margin-top: 60px;
}

.features-details .features-item .content {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 30px;
    border-radius: 10px;
}

.features-details .features-item h3 {
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 15px;
}

.features-details .features-item .more-btn {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 6px 30px;
    border-radius: 6px;
}

    .features-details .features-item .more-btn:hover {
        background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    }

.features-details .features-item ul {
    list-style: none;
    padding: 0;
}

    .features-details .features-item ul li {
        padding-bottom: 10px;
        display: flex;
        align-items: center;
    }

        .features-details .features-item ul li:last-child {
            padding-bottom: 0;
        }

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

.features-details .features-item img {
    border-radius: 15px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    height: 100%;
    padding: 30px;
    transition: 0.3s;
    border-radius: 10px;
    display: flex;
}

    .services .service-item .icon {
        font-size: 32px;
        border-radius: 10px;
        position: relative;
        margin-right: 25px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 72px;
        height: 72px;
        flex-shrink: 0;
    }

    .services .service-item h3 {
        color: color-mix(in srgb, var(--heading-color), transparent 25%);
        font-weight: 700;
        font-size: 22px;
        transition: 0.3s;
    }

    .services .service-item p {
        margin-bottom: 0;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        transition: 0.3s;
    }

    .services .service-item .read-more {
        display: inline-flex;
        align-items: center;
        margin-top: 10px;
        transition: 0.3s;
        font-size: 14px;
    }

        .services .service-item .read-more i {
            margin-left: 10px;
        }

    .services .service-item.item-cyan .icon {
        color: #0dcaf0;
        border: 1px solid #0dcaf0;
        background: rgba(13, 202, 240, 0.1);
    }

    .services .service-item.item-orange .icon {
        color: #fd7e14;
        border: 1px solid #fd7e14;
        background: rgba(253, 126, 20, 0.1);
    }

    .services .service-item.item-teal .icon {
        color: #20c997;
        border: 1px solid #20c997;
        background: rgba(32, 201, 151, 0.1);
    }

    .services .service-item.item-red .icon {
        color: #df1529;
        border: 1px solid #df1529;
        background: rgba(223, 21, 4, 0.1);
    }

    .services .service-item.item-indigo .icon {
        color: #6610f2;
        border: 1px solid #6610f2;
        background: rgba(102, 16, 242, 0.1);
    }

    .services .service-item.item-pink .icon {
        color: #f3268c;
        border: 1px solid #f3268c;
        background: rgba(243, 38, 140, 0.1);
    }

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

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

        .services .service-item:hover p {
            color: color-mix(in srgb, var(--default-color), transparent 10%);
        }

/*--------------------------------------------------------------
# More Features Section
--------------------------------------------------------------*/
.more-features .features-image {
    position: relative;
    min-height: 400px;
}

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

.more-features h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.more-features .icon-box {
    margin-top: 30px;
}

    .more-features .icon-box i {
        color: var(--accent-color);
        margin-right: 15px;
        font-size: 24px;
        line-height: 1.2;
    }

    .more-features .icon-box h4 {
        font-weight: 600;
        margin-bottom: 10px;
        font-size: 18px;
    }

    .more-features .icon-box p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
    background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
    padding: 40px 40px;
    height: 100%;
    border-radius: 15px;
}

.pricing h3 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
}

.pricing h4 {
    color: var(--accent-color);
    font-size: 48px;
    font-weight: 700;
    font-family: var(--heading-font);
    margin-bottom: 0;
}

    .pricing h4 sup {
        font-size: 28px;
    }

    .pricing h4 span {
        color: color-mix(in srgb, var(--default-color), transparent 50%);
        font-size: 18px;
        font-weight: 500;
    }

.pricing .description {
    font-size: 14px;
}

.pricing .cta-btn {
    border: 1px solid var(--default-color);
    color: var(--default-color);
    display: block;
    text-align: center;
    padding: 10px 35px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--heading-font);
    transition: 0.3s;
    margin-top: 20px;
    margin-bottom: 6px;
}

    .pricing .cta-btn:hover {
        background: var(--accent-color);
        color: var(--contrast-color);
        border-color: var(--accent-color);
    }

.pricing ul {
    padding: 0;
    list-style: none;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    text-align: left;
    line-height: 20px;
}

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

        .pricing ul li:last-child {
            padding-bottom: 0;
        }

    .pricing ul i {
        color: #059652;
        font-size: 24px;
        padding-right: 3px;
    }

    .pricing ul .na {
        color: color-mix(in srgb, var(--default-color), transparent 60%);
    }

        .pricing ul .na i {
            color: color-mix(in srgb, var(--default-color), transparent 60%);
        }

        .pricing ul .na span {
            text-decoration: line-through;
        }

.pricing .featured {
    position: relative;
}

    .pricing .featured .popular {
        position: absolute;
        top: 15px;
        right: 15px;
        background-color: var(--accent-color);
        color: var(--contrast-color);
        padding: 4px 15px 6px 15px;
        margin: 0;
        border-radius: 5px;
        font-size: 14px;
        font-weight: 500;
    }

    .pricing .featured .cta-btn {
        background: var(--accent-color);
        color: var(--contrast-color);
        border-color: var(--accent-color);
    }

@media (max-width: 992px) {
    .pricing .box {
        max-width: 60%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 767px) {
    .pricing .box {
        max-width: 80%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 420px) {
    .pricing .box {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .section-title {
    padding-bottom: 20px;
}

.faq .faq-container .faq-item {
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 5px;
    overflow: hidden;
}

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

    .faq .faq-container .faq-item h3 {
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        /*margin: 0 30px 0 0;*/
        transition: 0.3s;
        cursor: pointer;
        display: flex;
        align-items: center;
    }

        .faq .faq-container .faq-item h3 .num {
            color: var(--accent-color);
            padding-right: 5px;
        }

        .faq .faq-container .faq-item h3:hover {
            color: var(--accent-color);
        }

    .faq .faq-container .faq-item .faq-content {
        display: grid;
        grid-template-rows: 0fr;
        transition: 0.3s ease-in-out;
        visibility: hidden;
        opacity: 0;
    }

        .faq .faq-container .faq-item .faq-content ul {
            display: none;
        }

        .faq .faq-container .faq-item .faq-content p {
            margin-bottom: 0;
            overflow: hidden;
        }

    .faq .faq-container .faq-item .faq-toggle {
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 16px;
        line-height: 0;
        transition: 0.3s;
        cursor: pointer;
    }

        .faq .faq-container .faq-item .faq-toggle:hover {
            color: var(--accent-color);
        }

.faq .faq-container .faq-active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

    .faq .faq-container .faq-active h3 {
        color: var(--accent-color);
    }

    .faq .faq-container .faq-active .faq-content {
        grid-template-rows: 1fr;
        visibility: visible;
        opacity: 1;
        padding-top: 10px;
    }

        .faq .faq-container .faq-active .faq-content ul {
            display: block;
        }

    .faq .faq-container .faq-active .faq-toggle {
        transform: rotate(90deg);
        color: var(--accent-color);
    }

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.Clients .Clients-item {
    /*background-color: var(--surface-color);
    box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);*/
    box-sizing: content-box;
    padding: 30px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
}

.Clients h2,
.Clients p {
    text-align: center;
    color: var(--accent-color);
    font-weight: bold;
}

.Clients .Clients-item .profile {
    display: flex;
    justify-content: center;
}

.owl-carousel.owl-rtl .owl-item {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
}

.owl-carousel .owl-stage {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
}

.Clients .Clients-item .Clients-img {
    /*width: 50%;*/
    margin: 0 auto;
    /*border-radius: 50%;
        border: 4px solid var(--background-color);
        margin: 0 auto;*/
}

.Clients .swiper-wrapper {
    height: auto;
}

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

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

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

/*.Clients .swiper-slide {
    opacity: 0.3;
}
.Clients .swiper-slide  .swiper-slide-fully-visible{
    opacity: 1;
}*/

@media (max-width: 1199px) {
    .Clients .swiper-slide-active {
        opacity: 1;
    }

    .Clients .swiper-pagination {
        margin-top: 0;
    }

    .Clients .Clients-item {
        margin: 40px 20px;
    }
}

@media (min-width: 1200px) {
    .Clients .swiper-slide-next {
        opacity: 1;
        transform: scale(1.12);
    }
}

/*--------------------------------------------------------------
# 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 {
        font-size: 20px;
        color: var(--accent-color);
        width: 56px;
        height: 56px;
        font-size: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 4px;
        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);
    height: 100%;
    padding: 30px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
    .contact .php-email-form {
        padding: 20px;
    }
}

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

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
    background-color: var(--surface-color);
    padding: 20px;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

    .service-details .service-box + .service-box {
        margin-top: 30px;
    }

.service-box .cta-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    padding: 10px 12px;
    border-radius: 10px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid var(--accent-color);
    color: black;
}

    .service-box .cta-btn:hover {
        background: var(--accent-color);
        border: 2px solid var(--accent-color);
        color: white;
    }

.service-details .service-box h4 {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.service-details .services-list {
    background-color: var(--surface-color);
}

/*.service-details .services-list a {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        background-color: color-mix(in srgb, var(--default-color), transparent 96%);
        display: flex;
        align-items: center;
        padding: 12px 15px;
        margin-top: 15px;
        transition: 0.3s;
    }

        .service-details .services-list a:first-child {
            margin-top: 0;
        }

        .service-details .services-list a i {
            font-size: 16px;
            margin-right: 8px;
            color: var(--accent-color);
        }

        .service-details .services-list a.active {
            color: var(--contrast-color);
            background-color: var(--accent-color);
        }

            .service-details .services-list a.active i {
                color: var(--contrast-color);
            }

        .service-details .services-list a:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
            color: var(--accent-color);
        }

.service-details .download-catalog a {
    color: var(--default-color);
    display: flex;
    align-items: center;
    padding: 10px 0;
    transition: 0.3s;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .service-details .download-catalog a:first-child {
        border-top: 0;
        padding-top: 0;
    }

    .service-details .download-catalog a:last-child {
        padding-bottom: 0;
    }

    .service-details .download-catalog a i {
        font-size: 24px;
        margin-right: 8px;
        color: var(--accent-color);
    }

    .service-details .download-catalog a:hover {
        color: var(--accent-color);
    }*/

.service-details .help-box {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    margin-top: 30px;
    padding: 30px 15px;
}

    .service-details .help-box .help-icon {
        font-size: 48px;
    }

    .service-details .help-box h4,
    .service-details .help-box a {
        color: var(--contrast-color);
    }

.service-details .services-img {
    margin-bottom: 20px;
    cursor: pointer;
    border-radius: 10px;
}

.service-details .date {
    position: absolute;
    right: 0;
    bottom: 20px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    font-size: 13px;
    padding: 6px 12px;
    font-weight: 500;
    border-bottom-right-radius: 10px;
}

.service-details .catagory {
    position: absolute;
    right: 0;
    top: 10px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    font-size: 13px;
    padding: 6px 12px;
    font-weight: 500;
}

.service-details h3 {
    font-size: 26px;
    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 */
}

.rain_1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rain_2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rain_3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 15px;
    padding-top: 10px;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    padding: 80px 0;
    position: relative;
    clip-path: inset(0);
}

    .call-to-action img {
        position: fixed;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

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

    .call-to-action .container {
        position: relative;
        z-index: 3;
    }

    .call-to-action h3 {
        font-size: 28px;
        line-height: 40px;
        font-weight: bold;
        color: var(--accent-color);
    }

    .call-to-action p {
        color: var(--accent-color);
        line-height: 37px;
        /*font-size: 20px;*/
    }

    .call-to-action .cta-btn {
        font-family: var(--heading-font);
        font-weight: 500;
        font-size: 16px;
        display: inline-block;
        padding: 10px 12px;
        border-radius: 10px;
        transition: 0.5s;
        margin: 10px;
        border: 2px solid var(--accent-color);
        color: var(--contrast-color);
    }

        .call-to-action .cta-btn:hover {
            background: var(--accent-color);
            border: 2px solid var(--accent-color);
        }

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action2 {
    padding: 80px 0;
    position: relative;
    clip-path: inset(0);
}

    .call-to-action2 img {
        position: fixed;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

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

    .call-to-action2 .container {
        position: relative;
        z-index: 3;
    }

    .call-to-action2 h3 {
        font-size: 28px;
        line-height: 40px;
        font-weight: bold;
        color: var(--accent-color);
    }

#call-to-action2 h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 10px;
    height: 35px;
    background: var(--accent-color);
    left: 0;
    right: -20px;
    bottom: 95px;
    /* margin: auto; */
}

#call-to-action3 h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 10px;
    height: 30px;
    background: var(--accent-color);
    left: 0;
    right: -20px;
    bottom: 125px;
    /* margin: auto; */
}

.call-to-action2 p {
    color: var(--accent-color);
    line-height: 37px;
    /*font-size: 20px;*/
}

.call-to-action2 .cta-btn {
    color: var(--accent-color);
    /* background: var(--accent-color); */
    border: 1px solid var(--accent-color);
    font-size: 14px;
    padding: 4px 39px;
    margin: 0;
    border-radius: 20px;
    transition: 0.5s;
}

    .call-to-action2 .cta-btn:hover {
        background: var(--accent-color);
        color: var(--default-color);
        /*border: 2px solid var(--accent-color);*/
    }

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts .post-item {
    background: var(--surface-color);
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    border-radius: 10px;
}

    .recent-posts .post-item .post-img img {
        transition: 0.5s;
        height: 20rem;
        width: 100%;
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
    }

    .recent-posts .post-item .post-date {
        position: absolute;
        right: 0;
        bottom: 0;
        background-color: var(--accent-color);
        color: var(--contrast-color);
        font-size: 13px;
        padding: 6px 12px;
        font-weight: 500;
    }

    .recent-posts .post-item .post-Type {
        position: absolute;
        right: 0;
        top: 10px;
        background-color: var(--accent-color);
        color: var(--contrast-color);
        font-size: 13px;
        padding: 6px 12px;
        font-weight: 500;
    }

    .recent-posts .post-item .post-content {
        padding: 30px;
    }

    .recent-posts .post-item .post-title {
        color: var(--heading-color);
        font-size: 18px;
        font-weight: 700;
        transition: 0.3s;
        line-height: 40px;
        margin-bottom: 15px;
    }

    .recent-posts .post-item .meta i {
        font-size: 16px;
        color: var(--accent-color);
    }

    .recent-posts .post-item .meta span {
        font-size: 15px;
        color: color-mix(in srgb, var(--default-color), transparent 50%);
    }

    .recent-posts .post-item hr {
        color: color-mix(in srgb, var(--default-color), transparent 80%);
        margin: 20px 0;
    }

    .recent-posts .post-item .readmore {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        font-weight: 600;
        line-height: 1;
        transition: 0.3s;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
    }

        .recent-posts .post-item .readmore i {
            line-height: 0;
            position: relative;
            font-size: 16px;
        }

    .recent-posts .post-item:hover .post-title,
    .recent-posts .post-item:hover .readmore {
        color: var(--accent-color);
    }

        .recent-posts .post-item:hover .readmore i {
            right: 10px;
        }

    .recent-posts .post-item:hover .post-img img {
        transform: scale(1.1);
    }

.recent-posts .cta-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    padding: 10px 12px;
    border-radius: 10px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

    .recent-posts .cta-btn:hover {
        background: var(--accent-color);
        border: 2px solid var(--accent-color);
        color: white;
    }

.vision:after {
    content: "";
    position: absolute;
    display: block;
    width: 600px;
    height: 1px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.Line_After:after {
    content: "";
    position: absolute;
    display: block;
    width: 75%;
    height: 1px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.side_header:after {
    content: "";
    position: absolute;
    display: block;
    width: 8px;
    height: 25px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    /* margin: auto; */
}

.video video {
    width: 68%;
    height: 80vh;
}

/*.Clients_Page .clients_All{
        display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    }*/
.Clients_Page img {
    width: 160px;
    margin: auto;
}

.Clients_Page .col-lg-3 {
    display: flex;
    justify-content: center;
    flex-direction: column-reverse;
}

#FacilitiesSlider .swiper {
    width: 100%;
    height: 100%;
    direction: ltr;
    /*border-radius: 10px;*/
}

#FacilitiesSlider .swiper-slide {
    background-position: center;
    background-size: cover;
}

    #FacilitiesSlider .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

#FacilitiesSlider .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    /*transition-property: transform;
    transition: .7s ease-in-out;*/
    /*display: flex;
    justify-content: center;*/
}

#FacilitiesSlider .swiper-pagination-bullet {
    background: #fff;
    /*opacity: var(--swiper-pagination-bullet-inactive-opacity, .4);*/
}

#FacilitiesSlider .swiper-slide:before {
    content: "";
    background: color-mix(in srgb, black, transparent 30%);
    position: absolute;
    inset: 0;
    z-index: 0;
}
/*.registration #FacilitiesSlider .swiper-slide:after {
    content: "";
    background: color-mix(in srgb, black, transparent 30%);
    position: absolute;
    inset: 0;
    z-index: 0;
}*/

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

.swiper-slide .caption {
    position: absolute;
    top: 38%;
    width: 43%;
    right: 4%;
}

.registration .swiper-slide .caption {
    position: absolute;
    top: 11%;
    width: 65%;
    right: 4%;
}

#FacilitiesSlider .swiper-slide .title {
    font-size: 30px;
    font-weight: bold;
    color: var(--accent-color);
    text-align: right;
    direction: rtl;
}

.swiper-slide .title {
    font-size: 41px;
    font-weight: bold;
    color: var(--accent-color);
    text-align: right;
    direction: rtl;
}

.swiper-slide.reg .caption {
    position: absolute;
    top: 18%;
    width: 43%;
    right: 4%;
}

.swiper-slide.reg .title {
    font-size: 25px;
    font-weight: bold;
    color: var(--accent-color);
    text-align: right;
    direction: rtl;
}

.swiper-slide p {
    color: var(--accent-color);
    text-align: right;
    direction: rtl;
}

#FacilitiesSlider .swiper-slide p {
    font-size: 18px;
    color: var(--accent-color);
    text-align: right;
    direction: rtl;
}

.facility .facility_item {
    background-position: center;
    background-size: cover;
    height: 23vh;
    position: relative;
}

    .facility .facility_item:before {
        content: "";
        background: color-mix(in srgb, black, transparent 30%);
        position: absolute;
        inset: 0;
        z-index: 0;
    }

.facility .text {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    height: 100%;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.facility .facility_Icon {
    background-color: var(--accent-color);
    margin: 0;
}

    .facility .facility_Icon .col-3 {
        display: flex;
        justify-content: center;
        align-content: center;
        flex-wrap: wrap;
    }

    .facility .facility_Icon i {
        font-size: 85px;
    }

.facility .facility_item h4, .facility .facility_item p {
    color: var(--accent-color);
    font-weight: bold;
}

.facility .facility_Icon h4, .facility .facility_Icon p {
    color: var(--default-color);
    font-weight: bold;
}

.open_Image {
    height: 70vh;
    background-position: center;
    background-size: cover;
    position: relative;
    /* padding: 0; */
    margin: 0 12px 0 0;
    width: 100vw;
    background-attachment: fixed;
}

    .open_Image:before {
        content: "";
        /*background: color-mix(in srgb, black, transparent 30%);*/
        background: linear-gradient(60deg, color-mix(in srgb, black, transparent 41%) 19%, rgb(18 18 18) 95%);
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .open_Image .caption {
        position: absolute;
        top: 38%;
        width: 50%;
        right: 4%;
    }

    .open_Image .title {
        font-size: 41px;
        font-weight: bold;
        color: var(--accent-color);
        text-align: right;
        direction: rtl;
    }

    .open_Image p {
        color: var(--accent-color);
        text-align: justify;
        direction: rtl;
    }

.snip1482 {
    position: relative;
    margin: 10px 20px;
    min-width: 230px;
    max-width: 295px;
    min-height: 220px;
    width: 100%;
    color: #ffffff;
    text-align: right;
    line-height: 1.4em;
    background-color: #1a1a1a;
    font-size: 16px;
    border-radius: 10px;
}

    .snip1482 * {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: all 0.35s ease;
        transition: all 0.35s ease;
    }

    .snip1482 img {
        position: absolute;
        right: 0%;
        top: 50%;
        opacity: 1;
        width: 100%;
        -webkit-transform: translate(0%, -50%);
        transform: translate(0%, -50%);
        border-radius: 10px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

    .snip1482 figcaption {
        position: absolute;
        width: 50%;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        padding: 20px 0 20px 20px;
    }

    .snip1482 h2,
    .snip1482 p {
        margin: 0;
        width: 100%;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
        opacity: 0;
    }

    .snip1482 h2 {
        margin-bottom: 5px;
    }

    .snip1482 p {
        font-size: 0.8em;
    }

    .snip1482 a {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1;
    }

    .snip1482:hover img,
    .snip1482.hoverx img {
        width: 55%;
        right: -10%;
    }

    .snip1482:hover figcaption h2,
    .snip1482.hoverx figcaption h2,
    .snip1482:hover figcaption p,
    .snip1482.hoverx figcaption p {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
        opacity: 1;
    }

.c-accordion {
    list-style: none;
    padding: 0;
    margin: 0;
    height: 55vh;
    display: flex;
    flex: 1 1 auto;
    overflow: hidden;
}

.c-accordion__item {
    --cover: var(--cover-placeholder);
    background-position: center center;
    background-size: cover;
    /*background-color: var(--cover-placeholder);*/
    background-blend-mode: linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, #111111 100%);
    position: relative;
    flex-grow: 1;
    height: 100%;
    width: 100px;
    min-width: 2.05rem;
    transition: all 0.7s ease-in-out;
}

    .c-accordion__item:hover, .c-accordion__item:focus-within, .c-accordion__item:target {
        _flex-grow: 2;
        width: 50%;
        background-color: transparent;
    }

        .c-accordion__item:hover .c-accordion__title--hover-hide, .c-accordion__item:focus-within .c-accordion__title--hover-hide, .c-accordion__item:target .c-accordion__title--hover-hide {
            max-height: 0;
            opacity: 0;
        }

        .c-accordion__item:hover .c-accordion__title--hover-show, .c-accordion__item:focus-within .c-accordion__title--hover-show, .c-accordion__item:target .c-accordion__title--hover-show {
            opacity: 1;
        }

        .c-accordion__item:hover .c-accordion__description, .c-accordion__item:focus-within .c-accordion__description, .c-accordion__item:target .c-accordion__description {
            opacity: 1;
        }

    .c-accordion__item:hover {
        cursor: pointer;
    }

.c-accordion__action {
    position: absolute;
    display: flex;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 15, 0.75);
    background: linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, #111111 100%);
    text-decoration: none;
}

.c-accordion__title {
    color: white;
    /*font-family: "Roboto Condensed";*/
    padding: 0 0 10% 0;
    margin: 0;
    max-height: 100%;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.c-accordion__title--hover-show {
    opacity: 0;
    width: 100%;
}

.c-accordion__title--hero {
    font-size: 3rem;
    /*line-height: 100%;*/
    font-weight: 700;
    /*
  margin-left: -145px;*/
}

.c-accordion__aside {
    padding: 1rem;
    position: absolute;
    height: 100%;
    right: 1rem;
    bottom: 0;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

    .c-accordion__aside:before {
        content: "+";
        color: #fff;
        margin-bottom: 1rem;
        font-size: 2rem;
        display: inline-block;
    }

    .c-accordion__aside:after {
        content: "";
        flex-grow: 1;
        width: 1px;
        display: block;
        margin-top: 1rem;
        background-color: rgba(255, 255, 255, 0.2);
    }

.c-accordion__content {
    /*padding: 24rem 4.5rem 0rem 8rem;
  width: 55%;
  text-align: left;*/
    line-height: 4px;
    font-size: 16px;
    left: -50rem;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}

.c-accordion__description {
    color: white;
    font-weight: 500;
    line-height: 120%;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    margin-left: -145px;
    width: 85%;
}

.image_Lib img {
    width: 100%;
}

.fig .outer {
    border: 1px solid black;
    border-radius: 20px;
}

.fig .inner {
    display: flex;
    justify-content: space-around;
}

    .fig .inner p {
        font-size: 40px;
        margin: 10px;
        color: var(--accent-color);
        line-height: 60px;
    }

        .fig .inner p span {
            color: var(--default-color);
        }

    .fig .inner i {
        font-size: 100px;
        color: var(--accent-color);
    }

.middle_p {
    background: var(--back-color);
    color: var(--accent-color);
    padding: 20px 10%;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.open_Image2 {
    height: 70vh;
    background-position: center;
    background-size: cover;
    position: relative;
    /* padding: 0; */
    margin: 0 12px 0 0;
    width: 100vw;
    /*background-attachment:fixed;*/
}

    .open_Image2:before {
        content: "";
        background: linear-gradient(63deg, rgb(52 52 52 / 86%) 22%, color-mix(in srgb, #5c5c5c40, transparent 41%) 39%);
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .open_Image2 .caption {
        position: absolute;
        top: 26%;
        width: 40%;
        right: 4%;
    }

    .open_Image2 .title {
        font-size: 41px;
        font-weight: bold;
        color: black;
        text-align: right;
        direction: rtl;
    }

    .open_Image2 p {
        color: black;
        text-align: justify;
        direction: rtl;
        line-height: 40px;
    }

#FacilitiesSlider .furn .swiper-slide {
    height: 50vh;
}

.facility.industry .text {
    align-content: center;
}

.facility.industry .facility_item:before {
    background: color-mix(in srgb, black, transparent 30%);
}

.facility.industry .facility_item.pop:before {
    background: color-mix(in srgb, #ffe7d4, transparent 30%);
}

.facility.industry .facility_item.pop .text h4 {
    color: #323232;
}

.news {
    position: relative;
}

    .news p {
        color: var(--accent-color);
        padding: 6px 0;
        margin: 0;
        font-size: 19px;
    }
    /*.news .date{
    color: var(--default-color);
}*/
    .news:before {
        content: "";
        position: absolute;
        display: block;
        /*width: 600px;*/
        height: 1px;
        background: var(--accent-color);
        left: 0;
        right: 0;
        margin: auto;
    }

    .news:after {
        content: "";
        position: absolute;
        display: block;
        /*width: 600px;*/
        height: 1px;
        background: var(--accent-color);
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
    }

.indust .swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.indust .swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
}

.indust .mySwiper2 {
    /*height: 80%;*/
    width: 100%;
}

.indust .mySwiperx {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

    .indust .mySwiperx .swiper-slide {
        width: 25%;
        height: 100%;
        opacity: 0.4;
    }

    .indust .mySwiperx .swiper-slide-thumb-active {
        opacity: 1;
    }

.indust .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.indust .mySwiper2 .swiper-slide-active img {
    width: 30%;
    cursor: pointer;
    border-radius:10px;
}

/*--------------------------------------------------------------
# Counts Section
--------------------------------------------------------------*/
.countsx {
    padding: 25px 0;
}

    .countsx .stats-item i {
        font-size: 65px;
    }

    .countsx h3 {
        font-size: 28px;
        line-height: 37px;
        font-weight: bold;
        color: var(--accent-color);
    }

    .countsx p {
        color: var(--accent-color);
        /*font-size: 20px;*/
    }

    .countsx .stats-item span {
        font-size: 40px;
        display: block;
        border: 1px solid;
        border-radius: 15px;
        margin: 8px 105px;
        color: var(--default-color);
        font-weight: 700;
        position: relative;
    }

    .countsx .stats-item p {
        color: var(--accent-color);
        padding: 0;
        margin: 5px 0 0 0;
        font-family: var(--heading-font);
        font-size: 15px;
        font-weight: 600;
    }

.invest .circle i {
    font-size: 42px;
    background: white;
    border-radius: 50%;
    padding: 8px;
    cursor: pointer;
    transition: 0.7s;
}

.invest .circle div:hover i {
    font-size: 42px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
}

.invest .circle .active i {
    font-size: 42px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
}

.invest .circle .active {
    box-shadow: rgb(0 0 0 / 45%) -1px 6px 15px 3px;
    border-radius: 50%;
}

.invest .circle {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .invest .circle div {
        position: absolute;
    }

        .invest .circle div img {
            width: 50px;
            height: 50px;
        }

.invest_img {
    background-image: url(../img/investments/2.png);
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 16%;
    height: 55vh;
    position: relative;
}

.invest #place {
    top: -27px;
    left: 50%;
    transform: translateX(-50%);
}

.invest #shipping {
    top: 40px;
    left: 10px;
}

.invest #industries {
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.invest #technology {
    bottom: 45px;
    right: 0;
}

.invest #gear {
    top: 40px;
    right: 10px;
}

.invest #briefcase {
    bottom: 45px;
    left: 0;
}

.invest .content {
    margin-top: 30px;
}

#CircleTitle {
    position: relative;
    font-size: 21px;
    font-weight: bold;
    text-align: center;
}

#CircleText {
    font-size: 16px;
    max-width: 230px;
    line-height: 21px;
    text-align: center;
    margin: 0;
}

/*.invest_img:after{
    background: color-mix(in srgb, black, transparent 30%);
}*/

.invest_img:before {
    content: "";
    /*background: 
color-mix(in srgb, var(--background-color), transparent 30%);*/
    background: linear-gradient(230deg, #00000059 37%, rgb(84 84 84 / 75%) 47%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.invest .caption h3 {
    color: white;
    font-weight: bold;
}

.invest .caption p {
    color: white;
    font-size:16px;
}

.invest .caption {
    z-index: 2;
}

.caption2 ul {
    list-style: none;
}

.caption2 h2 {
    color: black;
    position: relative;
    padding: 0 10px;
}

    .caption2 h2:after {
        content: "";
        position: absolute;
        display: block;
        width: 8px;
        height: 37px;
        background: black;
        left: 0;
        right: 0;
        bottom: 0;
        /* margin: auto; */
    }

.Media .swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.Media .swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    position: relative;
}

.Media .mySwiper2 {
    height: 80vh;
    width: 100%;
    position: relative;
}

.Media .swiper-slide-active img {
    position: relative;
}

.Media .swiper-slide:before {
    content: "";
    /*background: linear-gradient(304deg, #0000007a 35%, rgb(84 84 84 / 15%) 49%);*/
    background: linear-gradient(191deg, rgb(25 28 36 / 78%) 21%, rgb(124 124 124 / 0%) 75%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.Media .mySwiperx {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

    .Media .mySwiperx .swiper-slide {
        width: 25%;
        height: 25vh;
        opacity: 0.4;
    }

    .Media .mySwiperx .swiper-slide-thumb-active {
        opacity: 1;
    }

.Media .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper_caption {
    position: absolute;
    width: 35%;
    top: 65%;
    right: 10%;
    z-index: 3;
    background-color: #00000094;
    padding: 20px;
    border-radius: 10px;
}

    .swiper_caption h2 {
        color: white;
        font-weight: bold;
        font-size: 20px;
    }

    .swiper_caption p {
        color: white;
        font-size: 16px;
    }

.swiper_caption2 {
    position: absolute;
    width: 80%;
    bottom: 30px;
    z-index: 3;
    background-color: #00000094;
    padding: 5px;
    border-radius: 10px;
}

    .swiper_caption2 p {
        color: white;
        font-weight: bold;
        margin: 0;
        font-size: 16px;
    }

.form-select {
    background-position: left 0.75rem center;
    padding: 6px;
}

.cert i{
    color:var(--accent-color);
    font-size:90px;
}
.btn-outline-main {
    --bs-btn-color: var(--accent-color);
    --bs-btn-border-color: var(--accent-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--accent-color);
    --bs-btn-hover-border-color: var(--accent-color);
    --bs-btn-focus-shadow-rgb: 13,110,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--accent-color);
    --bs-btn-active-border-color: var(--accent-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--accent-color);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--accent-color);
    --bs-gradient: none;
}

.image_Lib img {
    cursor: pointer;
}

label {
    display: inline-block;
    font-weight: bold;
    margin: 0 0 7px 0;
}

/*.toast-body{
        background: #0cf10cad;
    color: black;
    text-align: center;
    height: 8vh;
    display: flex;
    justify-content: center;
    align-items: center;
    }*/

.good {
    background: #0cf10cad;
    color: black;
    text-align: center;
    height: 8vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bad {
    background: #f10c0cad;
    color: white;
    text-align: center;
    height: 8vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-close {
    position: absolute;
    color: red;
    font-size: 15px;
}

.swiper-wrapper.rev {
    justify-content: center;
}

.new .cta-btn {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    display: block;
    text-align: center;
    padding: 6px 15px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--heading-font);
    transition: 0.3s;
    width: 21%;
    margin: 0 auto;
}

    .new .cta-btn:hover {
        background: var(--accent-color);
        color: var(--contrast-color);
        border-color: var(--accent-color);
    }

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

    .portfolio #portfolio-flters li {
        cursor: pointer;
        display: inline-block;
        padding: 8px 20px 10px 20px;
        font-size: 14px;
        font-weight: 400;
        line-height: 1;
        color: #4d4643;
        transition: all 0.3s;
        border-radius: 4px;
    }

        .portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
            color: #fff;
            background: var(--accent-color);
        }

        .portfolio #portfolio-flters li:last-child {
            margin-right: 0;
        }

.neighbor .neighbor_images {
    display: flex;
    justify-content: center;
    align-items: center;
}

.neighbor .image_item {
    padding: 10px;
    position: relative;
}

.neighbor p {
    position: absolute;
    width: 65%;
    text-align: center;
    bottom: 10px;
    font-size: 20px;
    color: white;
    font-weight: bold;
    background-color: #00000096;
    padding: 5px 10px;
    border-radius: 10px;
    margin: 15px 14%;
}

.neighbor img {
    width: 250px;
    height: 400px;
    cursor: pointer;
    border-radius: 10px;
}

.under_progress {
    position: absolute;
    right: 0;
    top: 80px;
    background-color: white;
    color: var(--default-color);
    font-size: 13px;
    padding: 6px 30px;
    font-weight: 500;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.fancybox__slide.has-pdf {
    top: -15%;
    max-width: 100%;
    height: 130%;
}

.caption2 i {
    font-size: 22px;
}

.reg_img {
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.form {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 10px;
    border-radius: 10px;
    background-color: #d4a47f38;
}

    .form .btn-outline-main {
        color: #484848;
        border: #545454 1px solid;
    }

.form-check {
    display: flex;
    min-height: 1.5rem;
    padding-right: 1.5em;
    padding-left: 0;
    margin-bottom: 0;
}

    .form-check input {
        width: 25px;
        height: 25px;
    }

.FootModal {
    display: flex;
    justify-content: flex-end;
    padding: 10px 4px 0 5px;
}

.footer .text-center.mb-0 a {
    color: #cfcfcf;
}

.footer p {
    font-size: 17px;
}

.footer .text-center.mb-0 a:hover {
    color: white;
}

.round_ox{
    border-radius: 10px;
}

.Clients_Page i {
    color: #d7ad14;
    font-size: 23px;
    margin: 0 4px;
}
.social-links img{
    width:20px;
}

@media (max-width: 768px) {
    h3 {
        font-size: 20px !important;
    }

    p {
        line-height: 26px;
        font-size: 15px;
    }

    .call-to-action2 h3 {
        text-align: center;
        font-size: 20px;
    }

    .call-to-action h3 {
        text-align: center;
        font-size: 20px;
    }

    .call-to-action3 h3 {
        text-align: center;
        font-size: 20px;
    }

    .call-to-action3 p {
        font-size: 16px;
        text-align: center;
    }

    .call-to-action p {
        font-size: 16px;
        text-align: center;
    }

    .call-to-action2 p {
        font-size: 16px;
        text-align: center;
    }

    #call-to-action2 h3:after {
        display: none;
    }

    #call-to-action h3:after {
        display: none;
    }

    #call-to-action3 h3:after {
        display: none;
    }

    .call-to-action2 .cta-btn {
        padding: 4px 21px;
        margin: 0;
        border-radius: 20px;
        transition: 0.5s;
        width: 30%;
        text-align: center;
        display: block;
        margin: 0 auto;
    }

    .page-title h1 {
        font-size: 23px;
    }

    .side_header:after {
        bottom: 5px;
    }

    .video video {
        height: auto;
    }

    .footer p {
        font-size: 16px;
        line-height: 36px;
    }

    #FacilitiesSlider .swiper {
        height: 65vh;
    }

    .swiper-slide .caption {
        position: absolute;
        top: 8%;
        width: 80%;
        right: 4%;
    }

    .facility .text {
        padding: 10px 20px;
    }

    .open_Image .caption {
        position: absolute;
        top: 7%;
        width: 75%;
        right: 4%;
    }

    .neighbor .neighbor_images {
        flex-wrap: wrap;
    }

    .row.fig {
        overflow: auto;
    }

    .fig .inner p {
        font-size: 15px;
        font-weight: bold;
        margin: 3px;
        color: var(--accent-color);
        line-height: 25px;
    }

        .fig .inner p span {
            font-size: 20px;
        }

    .fig .inner i {
        font-size: 60px;
    }

    .section-title h2:after {
        right: -8px;
    }

    .faq .faq-container .faq-item h3 {
        font-size: 16px !important;
        margin-left: 16px;
    }

    .open_Image2 .caption {
        position: absolute;
        top: 1%;
        width: 95%;
        right: 4%;
    }

    .under_progress {
        top: 25px;
    }

    .under.open_Image .caption {
        top: 21%;
    }

    .industry_slider .swiper-slide .caption {
        top: 39%;
    }

    .indust .mySwiper2 .swiper-slide-active img {
        width: 100%;
    }
    .invest_img{
        height: 60vh;
    }
    .caption2{
        margin: 15px 0;
    }
    .caption2 ul{
        padding: 10px 0px;
    }
    .swiper_caption{
        position: absolute;
    width: 96%;
    top: 65%;
    right: 2%;
    z-index: 3;
    background-color: #00000094;
    padding: 20px;
    border-radius: 10px;
    }
    .new .cta-btn{
        width: 25%;
    }
    .Media .mySwiperx .swiper-slide{
        height: 12vh;
    }
    .media_slider{
      width: 335px;
        height: 65vh;
    }
}
