:root {
    --dark-mainly-green: #22302F;
    --mainly-green: #264441;
    --light-mainly-green: #5B8F8A;
    --black: #121212;
    --white: #ffffff;
    --dark-grayish-yellow: #757161;
    --grayish-yellow: #ACA68F;
    --light-grayish-yellow: #DBD4B6;
    --light-gray: #E9ECEC;
    --circle: 8px;

}

@font-face {
    font-family: 'DIN NEXTTM ARABIC';
    src: url('../fonts/din-next/DINNextLTW23-Regular.woff2') format('woff2'),
        url('../fonts/din-next/DINNextLTW23-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DIN NEXTTM ARABIC';
    src: url('../fonts/din-next/DINNextLTW23-Bold2.woff2') format('woff2'),
        url('../fonts/din-next/DINNextLTW23-Bold2.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'DIN NEXTTM ARABIC';
    color: var(--black);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--black);
}

.space-10 {
    height: 10px;
}

.space-15 {
    height: 15px;
}

.space-20 {
    height: 20px;
}

.space-25 {
    height: 25px;
}

.space-30 {
    height: 30px;
}

.space-40 {
    height: 40px;
}

.space-50 {
    height: 50px;
}

.space-100 {
    height: 100px;
}

.padding-100 {
    padding-block: 100px;
}

.padding-150 {
    padding-block: 150px;
}

.bg-overlay {
    position: relative;
}

.bg-overlay:after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--black);
    opacity: 0.9;
    z-index: -2;
}

.dark-mainly-green:after {
    background: var(--dark-mainly-green);
}

.mainly-green:after {
    background: var(--mainly-green);
}

.light-mainly-green:after {
    background: var(--light-mainly-green);
}

.light-gray:after {
    background: var(--light-gray);
    opacity: 0.95;
}

.btn {
    outline: none;
    box-shadow: none;
}

.roots-btn {
    padding-block: 0;
    padding-inline: 20px 0;
    border-radius: 30px;
    border: 1px solid;
    color: var(--white);
    border-inline-end: 0 !important;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.roots-btn:after {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    content: 0;
    content: '';
    width: 0;
    transition: all ease 0.3s;
    z-index: -1;
    border-radius: 30px;
}

.roots-btn .icon {
    display: inline-block;
    height: 50px;
    width: 50px;
    border-radius: 50px;
    line-height: 55px;

    font-size: 20px;
    margin-inline-start: 15px;
    transition: all ease 0.3s;
}

.roots-btn:hover .icon {
    transform: rotate(-40deg);
}

.roots-btn:hover:after {
    width: 100%;
}

.grayish-yellow-btn .icon,
.grayish-yellow-btn:after {
    background: var(--dark-grayish-yellow);
}

.grayish-yellow-btn,
.grayish-yellow-btn:hover,
.grayish-yellow-btn:active {
    border-color: var(--dark-grayish-yellow) !important;
    color: var(--white) !important;
}

.mainly-green-btn {
    color: var(--black);
    border-color: var(--mainly-green) !important;
}

.mainly-green-btn .icon,
.mainly-green-btn:after {
    background: var(--mainly-green);
    color: var(--white);
}

.mainly-green-btn:hover,
.mainly-green-btn:active {
    border-color: var(--mainly-green) !important;
    color: var(--white) !important;
}

.fixed-btns {
    position: fixed;
    bottom: 20px;
    transform: translateY(100px);
    z-index: 10;
}

.fixed-btns.show,
.back-to-top.show {
    transform: translateY(0px);
}

.back-to-top {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--dark-grayish-yellow);
    color: var(--white);
    font-size: 20px;
    border-radius: 50%;
    left: 20px;
    text-decoration: none;
    transition: all ease 0.3s;
}

.contact-us {
    right: 20px;
    text-decoration: none;
    overflow: hidden;
    align-items: center;
    display: flex;
    color: var(--white);
    font-size: 20px;
    border-radius: 30px;
    transition: all ease 0.3s;
    flex-wrap: nowrap;
    white-space: nowrap;
    padding-inline: 10px;
    background: var(--dark-grayish-yellow);
}

.contact-us .icon {
    background: var(--dark-grayish-yellow);
    width: 30px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-us .text {
    margin-inline-end: 15px;
    color: var(--white);
    /* margin-inline-start: 50%; */
    transition: all ease 0.7s;
    display: flex;
    align-items: center;
    border-radius: 0 30px 30px 0;
    height: 50px;
    padding-inline-end: 15px;
    padding-inline-start: 30px;
    z-index: -1;
    width: 0;
    padding: 0;
    margin: 0;
    transition: all ease 0.3s;
    overflow: hidden;
}

/* .contact-us:hover{
    width: 200px;
} */
.contact-us:hover .text {
    width: 100px;
}

.form-check-input {
    box-shadow: none !important;
}

.form-check-input {
    border-color: var(--grayish-yellow);
}

.form-check-input:focus {
    border-color: var(--grayish-yellow);
}

.form-check-input:checked {
    background-color: var(--dark-grayish-yellow);
    border-color: var(--dark-grayish-yellow);
}

.form-check-label {
    user-select: none;
}

label {
    text-align: start;
}

[type=email],
[type=number],
[type=tel],
[type=url] {
    direction: inherit;
}

/* select 2  */
.roots-select2 .select2-container {
    color: var(--black);
}

.roots-select2 .select2-container .select2-selection {
    height: 46px;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.roots-select2 .select2-container .select2-selection .select2-selection__rendered {
    line-height: 44px;
    color: var(--white);
}

.roots-select2 .select2-container .select2-selection .select2-selection__arrow {
    height: 44px;
}

.select2-dropdown-style-1 {
    background: #2E5753;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.1);
}

.select2-dropdown-style-1 .select2-results__option.select2-results__option--highlighted {
    background: var(--grayish-yellow);
}

.select2-dropdown-style-1 .select2-results__option.select2-results__option--selected {
    background: var(--dark-grayish-yellow);
}

/*-----------Start Header-----------*/
.roots-header {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 5;
    padding-block: 40px;
}

.roots-header.sticky {
    position: fixed;
    top: 0;
    background: var(--mainly-green);
    animation: slideDown 0.35s ease-out;
    padding-block: 16px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}



.header-wrapper {

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.roots-header .roots-logo .logo {
    width: 100px;
}

.roots-header .roots-nav nav ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.roots-header .roots-nav nav ul li {
    margin-inline-end: 20px;
}

.roots-header .roots-nav nav ul li a.active {
    color: var(--dark-grayish-yellow);
}

.roots-header .roots-nav a {
    font-size: 18px;
    color: var(--white);
    text-decoration: none;
    padding: 10px 10px;
    transition: all ease 0.3s;
}

.roots-header .roots-nav a:hover {
    color: var(--dark-grayish-yellow);
}

.roots-header .roots-nav a.lang {
    padding: 0;
    padding-inline-start: 30px;
    border-inline-start: 1px solid rgba(255, 255, 255, 0.1);
}


/* roots-burger Menu Styling */
.roots-header .roots-burger {
    width: 40px;
    padding: 0 !important;
    height: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-inline-end: 30px;
}

.roots-header .roots-burger span {
    width: 24px;
    height: 2px;
    display: block;
    background: var(--white);
}

.roots-header .roots-burger span:nth-child(2) {
    margin-block: 6px;
}

/* body::before{
    content:'';
    position: fixed;
    background: var(--mainly-green);
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 10;
    width: 0px;
    height: 0px;
    border-radius: 50%;
    transition: all ease 0.3s;
} */
.roots-header .roots-nav .close-nav {
    display: none;
}

/* Header Responsive  */
@media (max-width:767px) {
    .open-nav {
        overflow: hidden;
    }

    .nav-wrapper .close-nav,
    .nav-wrapper nav {
        display: none;
    }

    .roots-header .roots-nav .close-nav {
        font-size: 22px;
        position: absolute;
        left: 30px;
        top: 30px;
    }

    .open-nav .nav-wrapper {
        position: fixed;
        inset: 0;
        display: block;
        z-index: 1;
    }

    .nav-wrapper:after {
        position: fixed;
        inset: 0;
        content: '';
        background: var(--mainly-green);
        transform: translateY(-100%);
        transition: all ease 0.3s;
        z-index: -1;
        opacity: 0.97;
    }

    .open-nav .nav-wrapper:after {
        transform: translateY(0%);
    }

    .open-nav .nav-wrapper nav,
    .open-nav .nav-wrapper .close-nav {
        display: block;
    }

    .nav-wrapper nav {
        height: 100%;
    }

    .roots-header .roots-nav nav ul li {
        margin: 0;
        margin-bottom: 30px;
    }

    .roots-header .roots-nav nav ul li:last-child {
        margin-bottom: 0;
    }

    .roots-header .roots-nav nav ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .open-nav .roots-header .roots-nav nav ul a {
        font-size: 32px;
    }

    .open-nav .roots-header .roots-nav nav ul li {
        animation: DropLinks 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
        animation-delay: calc(var(--animation-order) * 150ms);
        opacity: 0;
    }
}

@keyframes DropLinks {
    0% {
        /* transform: translateY(-20px); */
        opacity: 0;
        transform: translateY(-20px);
        visibility: hidden;
    }

    100% {
        /* transform: translateY(0); */
        opacity: 1;
        transform: translateY(0px);
        visibility: visible;
    }
}

/*-----------End Header-----------*/
/*-----------Start Hero Section-----------*/
.hero {
    height: 100vh;
    min-height: 600px;
    display: grid;
    align-content: center;
    text-align: center;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}



.bg-container {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    z-index: -2;

}

.bg-container video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.bg-container .img-slide{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero .content {
    max-width: 1000px;
    margin: 0 auto;
    padding-inline: 15px;
}

.hero ul.steps {
    display: inline-flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding-inline: 10px;
}

.hero ul.steps li {
    padding-inline: 15px;
    font-size: 31px;
    position: relative;
}

.hero ul.steps li:first-child::before {
    content: '*';
    position: absolute;
    left: -9px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 55px;
    line-height: 50px;
    height: 20px;
    color: #757161;
}

.hero ul.steps li:after {
    content: '*';
    position: absolute;
    right: -9px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 55px;
    line-height: 50px;
    height: 20px;
    color: #757161;
}

.hero h1 {
    font-size: 60px;
    font-weight: bold;
    color: var(--white);
}

.hero h1 span {
    color: var(--light-grayish-yellow);
}

.hero p {
    font-size: 20px;
}

.hero .animation-scroll {
    width: 19px;
    height: 32px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.hero .animation-scroll:after {
    position: absolute;
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--white);
    /* top: 4px; */
    left: 6px;
    opacity: 0;
    animation: animation_scroll 2s cubic-bezier(0.39, 0.575, 0.565, 1) forwards infinite;
}

@keyframes animation_scroll {
    0% {
        top: 4px;
    }

    25% {
        opacity: 1;
    }

    50% {
        top: 20px;
    }

    60% {
        opacity: 0;
    }

    80% {
        top: 20%;
        opacity: 0;
    }

    100% {
        top: 4px;
    }
}

/*-----------End Hero Section-----------*/
/*-----------Start About Section-----------*/
.about {
    background: #F5F5F5;
}

.about .badge {
    background: transparent !important;
    position: relative;
    padding: 10px 30px;
    border-radius: 50px;
    overflow: hidden;
    font-size: 18px;
    font-weight: 400;
    color: var(--dark-grayish-yellow) !important;
}

.about .badge:after {
    position: absolute;
    inset: 0;
    background: var(--dark-grayish-yellow);
    background: #757161;
    opacity: 0.1;
    content: '';
}

.about h2 {
    font-size: 48px;
    font-weight: 600;
}

.about h2 .colord {
    color: var(--grayish-yellow);
}

.about p {
    font-size: 18px;
}

.about .item {}

.about .item h4 {
    direction: ltr;
    font-size: 80px;
}

.about .item h4 .colord {
    color: var(--grayish-yellow);
}

.about .item h5 {
    display: flex;
    justify-content: center;
}

.about .item h5 .icon {
    margin-inline-end: 10px;
}

.clients-slider {
    width: 100%;
    height: 100%;
    padding-bottom: 50px;
}

.clients-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

.clients-slider .swiper-wrapper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.clients-slider .swiper-wrapper .swiper-slide .item {
    width: 100%;
    border-radius: 12px;
    background: var(--white);
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    height: 160px;
    margin: 0 !important;
}

/* .clients-slider .swiper-wrapper .swiper-slide img {
    border: 1px solid var(--light-grayish-yellow);
} */

.clients-slider .swiper-pagination{

}

/*-----------End About Section-----------*/
/*-----------Start Services Section-----------*/
.services-section {
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.service-col {
    flex: 0 0 auto;
    max-width: 440px;
}

.services-section .num {
    position: absolute;
    left: 0%;
    font-size: 490px;
    font-weight: 600;
    line-height: 100vh;
    color: var(--white);
    opacity: 0.1;
    z-index: -1;
}

.services-section .badge {
    background: transparent !important;
    position: relative;
    padding: 10px 30px;
    border-radius: 50px;
    overflow: hidden;
    font-size: 18px;
    font-weight: 400;
    color: var(--white) !important;
    z-index: 1;
}

.services-section .badge:after {

    position: absolute;
    inset: 0;
    /* opacity: 0.1; */
    z-index: -1;
    content: '';
}

.services-section.dark-mainly-green .badge:after {
    background: #4C5857;
}

.services-section.mainly-green .badge:after {
    background: #506865;
}

.services-section.light-mainly-green .badge:after {
    background: #7AA4A0;
}

.services-section.light-gray .badge:after {
    background: #7AA4A0;
}

.services-section.light-gray .num {
    color: var(--black);
}

.services-section .title {
    font-size: 48px;
    color: var(--white);
    font-weight: 600;
}

.services-section .description {
    font-size: 18px;
    color: var(--white);
}

.services-section.light-gray .title,
.services-section.light-gray .description {
    color: var(--black);
}

/*-----------End Services Section-----------*/
/*-----------Start Footer Section-----------*/
footer .logo {
    width: 135px;
}

.footer-widget .title {
    font-size: 24px;
    font-weight: 600;
}

.footer-widget .location-link .icon {
    width: 40px;
    height: 40px;
    background: var(--light-mainly-green);
    color: var(--white);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-inline-end: 10px;
}

.footer-widget .location-link a {
    font-size: 20px;
    color: var(--light-mainly-green);
    text-decoration: underline;
}

.social-media {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.social-media li {
    margin-inline-end: 10px;
}

.social-media li:last-child {
    margin: 0;
}

.social-media li a {
    background: var(--light-mainly-green);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 16px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-media li a:hover {
    background: var(--mainly-green);
}

.inner-page footer {
    border-top: 1px solid #ddd;
    padding-block: 30px;
}

footer.dark-footer {
    background: #2E5753;
    border: 0;
    color: var(--white);
}

footer.dark-footer .footer-widget .location-link a {
    color: var(--grayish-yellow);
}

footer.dark-footer .footer-widget .location-link .icon {
    background: var(--grayish-yellow);
}

/*-----------End Footer Section-----------*/


/*-----------Start Inner Pages-----------*/
.inner-page .hero {
    align-content: end;
    min-height: auto;
    max-height: 315px;
}

.inner-page .hero .page-title .breadcrumb .breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 18px;
}

.inner-page .hero .page-title .breadcrumb .breadcrumb-item a {
    color: var(--white);
    display: block;
    text-decoration: none;
}

.inner-page .hero .page-title .breadcrumb .breadcrumb-item a .icon {
    margin-inline-end: 10px;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--white);
    font-size: 22px;
}

.inner-page .hero .page-title h1 {
    font-size: 42px;
}

/*-----------End Inner Pages-----------*/
/*-----------Start Service Page-----------*/
.service-details .service-title {
    font-size: 40px;
    font-weight: 600;
    margin: 0;
}

.service-details p {
    font-size: 18px;
}

.other-services .item {
    background: #F0F1F5;
    padding: 15px;
    border-radius: 10px;
}

.other-services .item .num {
    font-size: 56px;
    font-weight: 600;
    color: var(--mainly-green);
    opacity: 0.1;
    display: block;
    height: 70px;
    line-height: 60px;
    padding-block: 10px;
}

.other-services .item .title {
    font-weight: 600;
    margin-bottom: 10px;
}

.service-pagination a {
    text-decoration: none;
    font-weight: 600;
    color: var(--black);
}

.service-pagination .title {
    color: #ACACAC;
    font-weight: 400;
}

@media (max-width:480px) {
    .service-pagination .col-auto {
        max-width: 50%;
    }
}

/*-----------End Service Page-----------*/
/*-----------Start Auth Pages-----------*/
.form-control {
    box-shadow: none !important;
    outline: none;
    line-height: 2;
}

.auth-pages .form-control {
    background: #F2F2F2;
    border-color: transparent;
    transition: all ease 0.3s;
}

.auth-pages .form-control:focus {
    border-color: var(--grayish-yellow);
}

.auth-pages .form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    margin-inline-start: 50px;
    /* min-height: 90vh; */
    color: var(--black);
}

.auth-pages .form-wrapper h1 {
    color: var(--black);
    font-size: 20px;
}



.auth-pages .btn,
.auth-pages .btn:active {
    background: var(--light-mainly-green);
    color: var(--white);
    border: 0;
    height: 44px;
}

.toggle-pass {
    position: relative;
}

.toggle-pass .toggle-icon {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #4D4D4D;
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.toggle-pass .form-control {
    padding-inline-end: 50px;
}

.form-wrapper hr {
    border-color: #E5E5E5;
}

.form-wrapper a {
    color: #007AFF;
}

/*-----------End Auth Pages-----------*/
/*-----------Start Contact Us Page-----------*/
.contact-us-page .contact-form {
    background: #2E5753;
    color: var(--white);
}

.contact-us-page .contact-form h2 {
    font-size: 48px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.contact-us-page .contact-form .form-control {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 12px;
}

.contact-us-page .contact-form .form-control::placeholder {
    color: #CDCDCD;
}

.contact-us-page .contact-form .form-control:focus {
    border-color: var(--light-grayish-yellow);
}

/*-----------End Contact Us Page-----------*/





/*-----------Start Responsive-----------*/
@media (max-width:1200px) {
    .cursor {
        display: none;
    }
}

@media (max-width:768px) {
    .hero h1 {
        font-size: 45px;
    }

    .hero ul.steps li {
        font-size: 28px;
    }

    .about .item h4 {
        font-size: 65px;
    }

    .services-section .num {
        font-size: 350px;
    }

    .cursor {
        display: none;
    }

    .auth-pages .hero {
        padding-inline: 16px;
    }

    .auth-pages .form-wrapper {
        margin: 0;
        padding: 50px 16px;
    }

    .contact-us-page .contact-form h2 {
        font-size: 40px;
    }
}

@media (max-width:480px) {

    .hero h1,
    .inner-page .hero .page-title h1 {
        font-size: 35px;
    }

    .hero ul.steps li {
        font-size: 22px;
    }

    .about h2 {
        font-size: 35px;
    }

    .about .item {
        margin-bottom: 30px;
    }

    .services-section .num {
        font-size: 250px;
        line-height: 45vh;
    }

    .services-section .title {
        font-size: 35px;
    }

    .service-details .service-title {
        font-size: 30px;
    }

    .contact-us-page .contact-form h2 {
        font-size: 30px;
    }
}

/*-----------End Responsive-----------*/

.servicessssss {
    text-decoration: none;
}

@media screen and (max-width: 768px)
{
    .hero {
        height: auto;
    }
    
    .contact_section_home {
        padding-top: 100px;
        border-radius: 0 !important;
    }
    
    .contact_section_home:after {
        border-radius: 0 !important;
    }
}