:root {
    --v2-primary: #7d1010;
    --v2-secondary: #2e0000;
    --v2-primary-lighten-1: var(--v2-primary);
    --v2-btn-radius: 2rem;
    --v2-grey-bg: #f4f5f8;
    --v2-card-shadow: 8px 0px 10px 0px #ebebeb, 0px 0px 30px 0px #ebebeb;
}

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@500&display=swap');
html,
body {
    overflow-x: initial !important;
    letter-spacing: 0px !important;
    font-family: 'Tajawal', sans-serif;
}


/* preloader */

svg#loader circle {
    display: none;
}


/* /preloader */


/* button */


/* ده الكود اللي هيخلي الزر لونه أخضر */
.btn.btn-purple1 {
    background-color: #7d1010; /* لون الزر الأساسي */
}

/* وده الكود اللي هيخلي تأثير الـ hover أخضر برضه */
.btn.btn-purple1:hover {
    box-shadow: inset 0 -100px 0 #7d1010;
}

.btn {
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 25px;
    cursor: pointer;
    border-radius: 4px;
    font-family: 'Tajawal';
    transition: all 0.4s linear;
    cursor: pointer;
}

.btn.btn-primary {
    background: var(--v2-primary);
    color: #fff;
    box-shadow: inset 0 0px 0 #32408f;
}

.custom-class {
  width: 500px;
  height: 500px;
}

.btn.btn-primary.radius {
    border-radius: 100px;
}

.btn.btn-primary.sweet {
    background: #d1d6ef;
    color: #3f51b5;
}

.btn-group .btn+.btn,
.btn-group .btn+.btn-group,
.btn-group .btn-group+.btn,
.btn-group .btn-group+.btn-group,
.btn-group-vertical .btn+.btn,
.btn-group-vertical .btn+.btn-group,
.btn-group-vertical .btn-group+.btn,
.btn-group-vertical .btn-group+.btn-group {
    margin-left: -1px;
    border-radius: 12px;
}

.btn.btn-primary.sweet:hover {
    border-color: #32408f;
    box-shadow: inset 0 -100px 0 #606fc7;
    color: #fff;
}

.btn.btn-primary.sweet:focus,
.btn.btn-primary.sweet:active {
    outline: 0;
    border: 1px solid #2b387c;
    background: #3f51b5;
    color: #fff;
}

.btn.btn-primary.outline {
    background: transparent;
    color: #3f51b5;
}

.btn.btn-primary.outline:hover {
    box-shadow: inset 0 -100px 0 var(--v2-primary);
    color: #fff;
}

.btn.btn-primary.outline:focus,
.btn.btn-primary.outline:active {
    outline: 0;
    background: var(--v2-primary);
    color: #fff;
}

.btn.btn-primary:hover {
    box-shadow: inset 0 -100px 0 var(--v2-primary);
}

.btn.btn-primary:focus,
.btn.btn-primary:active {
    outline: 0;
    background: var(--v2-primary);
}

.btn.btn-success {
    background: #4caf50;
    color: #fff;
    border: 1px solid #449d48;
    box-shadow: inset 0 0px 0 #3d8b40;
}

.btn.btn-success.radius {
    border-radius: 100px;
}

.btn.btn-success.sweet {
    background: #d9eeda;
    color: #4caf50;
}

.btn.btn-success.sweet:hover {
    border-color: #3d8b40;
    box-shadow: inset 0 -100px 0 #6ec071;
    color: #fff;
}

.btn.btn-success.sweet:focus,
.btn.btn-success.sweet:active {
    outline: 0;
    border: 1px solid #357a38;
    background: #4caf50;
    color: #fff;
}

.btn.btn-success.outline {
    background: transparent;
    color: #4caf50;
}

.btn.btn-success.outline:hover {
    box-shadow: inset 0 -100px 0 #3d8b40;
    color: #fff;
}

.btn.btn-success.outline:focus,
.btn.btn-success.outline:active {
    outline: 0;
    border: 1px solid #357a38;
    background: #4caf50;
    color: #fff;
}

.btn.btn-success:hover {
    box-shadow: inset 0 -100px 0 #3d8b40;
}

.btn.btn-success:focus,
.btn.btn-success:active {
    outline: 0;
    border: 1px solid #357a38;
    background: #357a38;
}

.btn.btn-secondary {
    background: var(--v2-primary);
    color: #fff;
    box-shadow: inset 0 0px 0 var(--v2-primary);
}

.btn.btn-secondary.radius {
    border-radius: 100px;
}

.btn.btn-secondary.sweet {
    background: #d5dee2;
    color: #607d8b;
}

.btn.btn-secondary.sweet:hover {
    border-color: var(--v2-primary);
    box-shadow: inset 0 -100px 0 #7b96a3;
    color: #fff;
}

.btn.btn-secondary.sweet:focus,
.btn.btn-secondary.sweet:active {
    outline: 0;
    border: 1px solid #41545e;
    background: #607d8b;
    color: #fff;
}

.btn.btn-secondary.outline {
    background: transparent;
    color: #607d8b;
}

.btn.btn-secondary.outline:hover {
    box-shadow: inset 0 -100px 0 var(--v2-primary);
    color: #fff;
}

.btn.btn-secondary.outline:focus,
.btn.btn-secondary.outline:active {
    outline: 0;
    border: 1px solid #41545e;
    background: #607d8b;
    color: #fff;
}

.btn.btn-secondary:hover {
    box-shadow: inset 0 -100px 0 var(--v2-primary);
}

.btn.btn-secondary:focus,
.btn.btn-secondary:active {
    outline: 0;
    border: 1px solid #41545e;
    background: #41545e;
}

.btn.btn-info {
    background: #03a9f4;
    color: #fff;
    border: 1px solid #0398db;
    box-shadow: inset 0 0px 0 #0286c2;
}

.btn.btn-info.radius {
    border-radius: 100px;
}

.btn.btn-info.sweet {
    background: #c5ecfe;
    color: #03a9f4;
}

.btn.btn-info.sweet:hover {
    border-color: #0286c2;
    box-shadow: inset 0 -100px 0 #2ebcfc;
    color: #fff;
}

.btn.btn-info.sweet:focus,
.btn.btn-info.sweet:active {
    outline: 0;
    border: 1px solid #0275a8;
    background: #03a9f4;
    color: #fff;
}

.btn.btn-info.outline {
    background: transparent;
    color: #03a9f4;
}

.btn.btn-info.outline:hover {
    box-shadow: inset 0 -100px 0 #0286c2;
    color: #fff;
}

.btn.btn-info.outline:focus,
.btn.btn-info.outline:active {
    outline: 0;
    border: 1px solid #0275a8;
    background: #03a9f4;
    color: #fff;
}

.btn.btn-info:hover {
    box-shadow: inset 0 -100px 0 #0286c2;
}

.btn.btn-info:focus,
.btn.btn-info:active {
    outline: 0;
    border: 1px solid #0275a8;
    background: #0275a8;
}

.btn.btn-danger {
    background: #f44336;
    color: #fff;
    border: 1px solid #f32c1e;
    box-shadow: inset 0 0px 0 #ea1c0d;
}

.btn.btn-danger.radius {
    border-radius: 100px;
}

.btn.btn-danger.sweet {
    background: #fff8f7;
    color: #f44336;
}

.btn.btn-danger.sweet:hover {
    border-color: #ea1c0d;
    box-shadow: inset 0 -100px 0 #f77066;
    color: #fff;
}

.btn.btn-danger.sweet:focus,
.btn.btn-danger.sweet:active {
    outline: 0;
    border: 1px solid #d2190b;
    background: #f44336;
    color: #fff;
}

.btn.btn-danger.outline {
    background: transparent;
    color: #f44336;
}

.btn.btn-danger.outline:hover {
    box-shadow: inset 0 -100px 0 #ea1c0d;
    color: #fff;
}

.btn.btn-danger.outline:focus,
.btn.btn-danger.outline:active {
    outline: 0;
    border: 1px solid #d2190b;
    background: #f44336;
    color: #fff;
}

.btn.btn-danger:hover {
    box-shadow: inset 0 -100px 0 #ea1c0d;
}

.btn.btn-danger:focus,
.btn.btn-danger:active {
    outline: 0;
    border: 1px solid #d2190b;
    background: #d2190b;
}

.btn.btn-warning {
    background: #ecb12b;
    color: #fff;
    border: 1px solid #e9a815;
    box-shadow: inset 0 0px 0 #d19713;
}

.btn.btn-warning.radius {
    border-radius: 100px;
}

.btn.btn-warning.sweet {
    background: #fdf6e6;
    color: #ecb12b;
}

.btn.btn-warning.sweet:hover {
    border-color: #d19713;
    box-shadow: inset 0 -100px 0 #f0c25a;
    color: #fff;
}

.btn.btn-warning.sweet:focus,
.btn.btn-warning.sweet:active {
    outline: 0;
    border: 1px solid #ba8611;
    background: #ecb12b;
    color: #fff;
}

.btn.btn-warning.outline {
    background: transparent;
    color: #ecb12b;
}

.btn.btn-warning.outline:hover {
    box-shadow: inset 0 -100px 0 #d19713;
    color: #fff;
}

.btn.btn-warning.outline:focus,
.btn.btn-warning.outline:active {
    outline: 0;
    border: 1px solid #ba8611;
    background: #ecb12b;
    color: #fff;
}

.btn.btn-warning:hover {
    box-shadow: inset 0 -100px 0 #d19713;
}

.btn.btn-warning:focus,
.btn.btn-warning:active {
    outline: 0;
    border: 1px solid #ba8611;
    background: #ba8611;
}

.btn.btn-pink {
    background: #7d1010;
    color: #ffffff;
    border: 1px solid #7d1010;
    box-shadow: inset 0 0px 0 #7d1010;
}

.btn.btn-pink.radius {
    border-radius: 100px;
}

.btn.btn-pink.sweet {
    background: #fbd8e4;
    color: var(--v2-secondary);
}

.btn.btn-pink.sweet:hover {
    border-color: var(--v2-primary);
    box-shadow: inset 0 -100px 0 #ee4c83;
    color: #fff;
}

.btn.btn-pink.sweet:focus,
.btn.btn-pink.sweet:active {
    outline: 0;
    border: 1px solid #aa1145;
    background: var(--v2-secondary);
    color: #fff;
}

.btn.btn-pink.outline {
    background: transparent;
    color: var(--v2-secondary);
}

.btn.btn-pink.outline:hover {
    box-shadow: inset 0 -100px 0 #c1134e;
    color: #fff;
}

.btn.btn-pink.outline:focus,
.btn.btn-pink.outline:active {
    outline: 0;
    border: 1px solid #aa1145;
    background: var(--v2-secondary);
    color: #fff;
}

.btn.btn-pink:hover {
    box-shadow: inset 0 -100px 0 #c1134e;
}

.btn.btn-pink:focus,
.btn.btn-pink:active {
    outline: 0;
    border: 1px solid #aa1145;
    background: #aa1145;
}

.btn.btn-purple {
    background: var(--v2-primary);
    color: #fff !important;
    border: 1px solid;
    box-shadow: inset 0 0px 0 var(--v2-primary);
}

.btn.btn-purple.radius {
    border-radius: 100px;
    background-color: #7d1010; /* ده اللون الأخضر (Green) */
    color: #fff; /* ده لون الخط عشان يكون واضح على الخلفية الخضراء */
}

.btn.btn-purple.sweet {
    background: #daceef;
    color: var(--v2-primary);
}

.btn.btn-purple.sweet:hover {
    border-color: var(--v2-primary);
    box-shadow: inset 0 -100px 0 #7d1010;
    color: #fff !important;
}

.btn.btn-purple.sweet:focus,
.btn.btn-purple.sweet:active {
    outline: 0;
    border: 1px solid #7d1010;
    background: #7d1010;
    color: #fff !important;
}

.btn.btn-purple.outline {
    background: transparent;
    color: #a615e9;
}

.btn.btn-purple.outline:hover {
    box-shadow: inset 0 -100px 0 #672885;
    color: #fff !important;
}

.btn.btn-purple.outline:focus,
.btn.btn-purple.outline:active {
    outline: 0;
    border: 1px solid var(--v2-primary);
    background: #7d1010;
    color: #fff !important;
}

.btn.btn-purple:hover {
    /* اللون عند مرور الماوس */
    background-color: #a81616;
}

.btn.btn-purple:focus,
.btn.btn-purple:active {
    outline: 0;
    border: 1px solid var(--v2-primary);
    background: var(--v2-primary);
}

.btn.btn-brown {
    background: #795548;
    color: #fff;
    border: 1px solid #694a3e;
    box-shadow: inset 0 0px 0 #593f35;
}

.btn.btn-brown.radius {
    border-radius: 100px;
}

.btn.btn-brown.sweet {
    background: #d5c0b8;
    color: #795548;
}

.btn.btn-brown.sweet:hover {
    border-color: #593f35;
    box-shadow: inset 0 -100px 0 #996b5b;
    color: #fff;
}

.btn.btn-brown.sweet:focus,
.btn.btn-brown.sweet:active {
    outline: 0;
    border: 1px solid #49332b;
    background: #795548;
    color: #fff;
}

.btn.btn-brown.outline {
    background: transparent;
    color: #795548;
}

.btn.btn-brown.outline:hover {
    box-shadow: inset 0 -100px 0 #593f35;
    color: #fff;
}

.btn.btn-brown.outline:focus,
.btn.btn-brown.outline:active {
    outline: 0;
    border: 1px solid #49332b;
    background: #795548;
    color: #fff;
}

.btn.btn-brown:hover {
    box-shadow: inset 0 -100px 0 #593f35;
}

.btn.btn-brown:focus,
.btn.btn-brown:active {
    outline: 0;
    border: 1px solid #49332b;
    background: #49332b;
}

.btn.btn-light {
    background: #fff;
    color: #444;
    border: 1px solid #f2f2f2;
    box-shadow: inset 0 0px 0 #e6e6e6;
}

.btn.btn-light.radius {
    border-radius: 100px;
}

.btn.btn-light.sweet {
    background: white;
    color: #444;
}

.btn.btn-light.sweet:hover {
    border-color: #e6e6e6;
    box-shadow: inset 0 -100px 0 white;
    color: #444;
}

.btn.btn-light.sweet:focus,
.btn.btn-light.sweet:active {
    outline: 0;
    border: 1px solid #d9d9d9;
    background: #fff;
    color: #444;
}

.btn.btn-light.outline {
    background: transparent;
    color: #444;
}

.btn.btn-light.outline:hover {
    box-shadow: inset 0 -100px 0 #e6e6e6;
    color: #444;
}

.btn.btn-light.outline:focus,
.btn.btn-light.outline:active {
    outline: 0;
    border: 1px solid #d9d9d9;
    background: #fff;
    color: #444;
}

.btn.btn-light:hover {
    box-shadow: inset 0 -100px 0 #e6e6e6;
}

.btn.btn-light:focus,
.btn.btn-light:active {
    outline: 0;
    border: 1px solid #d9d9d9;
    background: #d9d9d9;
}

.btn.btn-dark {
    background: #444;
    color: #fff;
    border: 1px solid #373737;
    box-shadow: inset 0 0px 0 #2b2b2b;
}

.btn.btn-dark.radius {
    border-radius: 100px;
}

.btn.btn-dark.sweet {
    background: #aaaaaa;
    color: #444;
}

.btn.btn-dark.sweet:hover {
    border-color: #2b2b2b;
    box-shadow: inset 0 -100px 0 #5e5e5e;
    color: #fff;
}

.btn.btn-dark.sweet:focus,
.btn.btn-dark.sweet:active {
    outline: 0;
    border: 1px solid #1e1e1e;
    background: #444;
    color: #fff;
}

.btn.btn-dark.outline {
    background: transparent;
    color: #444;
}

.btn.btn-dark.outline:hover {
    box-shadow: inset 0 -100px 0 #2b2b2b;
    color: #fff;
}

.btn.btn-dark.outline:focus,
.btn.btn-dark.outline:active {
    outline: 0;
    border: 1px solid #1e1e1e;
    background: #444;
    color: #fff;
}

.btn.btn-dark:hover {
    box-shadow: inset 0 -100px 0 #2b2b2b;
}

.btn.btn-dark:focus,
.btn.btn-dark:active {
    outline: 0;
    border: 1px solid #1e1e1e;
    background: #1e1e1e;
}


/* /button */

button.btn-a-purple>a {
    color: var(--v2-primary);
}

.bold-pink {
    color: var(--v2-secondary);
    font-weight: bolder;
}

.navbar-nav a.btn.btn-pink.radius {
    margin-top: -2px;
    padding: 5px 15px;
}


/* nav style */

.snip1155 {
    font-family: 'Raleway', Arial, sans-serif;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
}

.snip1155 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

@media (max-width:991px) {
    .snip1155 * {
        display: none;
    }
}

.snip1155 li {
    display: inline-block;
    list-style: outside none none;
    margin: 0 2em;
    padding: 0;
}

.snip1155 .nav-link {
    display: inline-block;
    padding: 0.5em 17px;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    letter-spacing: 1px;
    text-decoration: none;
}

.snip1155 .nav-link:before {
    left: 20%;
    right: 20%;
    top: 50%;
    content: '';
    border-left: 15px solid #7d1010;
    border-right: 15px solid #7d1010;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 12px;
    opacity: 0;
    border-radius: 50px;
    position: absolute;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.snip1155 .nav-link:hover,
.snip1155 .current .nav-link {
    color: #ffffff;
}

.snip1155 .nav-link:hover:before,
.snip1155 .current .nav-link:before {
    left: -5px;
    right: -5px;
    opacity: 1;
}


/* /nav style */

.btn-custom-dark {
    background: transparent;
    border-color: #000001;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-right: 2rem;
    padding-left: 2rem;
    font-size: 18px !important;
    border-radius: var(--v2-btn-radius);
    color: #000001;
    transition: all 0.5s;
}

.btn-custom-dark:hover {
    background: #000001;
    color: white;
    transition: all 0.5s;
}

.btn-custom-grey {
    background: transparent;
    border-color: #d4d4d4;
    border-radius: var(--v2-btn-radius);
    color: #000001;
    transition: all 0.5s;
}

.btn-custom-dark:hover {
    background: #000001;
    color: white;
    transition: all 0.5s;
}

.vertical-social {
    box-shadow: 0 0 16px 0 rgba(216, 72, 123, 0.5);
}

.vertical-social .midnightHeader.default {
    background: var(--v2-secondary);
}

.grey-bg {
    background: var(--v2-grey-bg) !important;
}

.navbar.navbar-dark:not(.navbar-fixed) {
    margin-top: 0;
}

.problem-solution.section-pro:before {
    content: none;
}

.navbar.navbar-dark {
    min-height: 75px;
    background-color: transparent;
    z-index: 1001 !important;
}

img.navbar-brand-logo-dark {
    width: 150px;
    object-fit: contain;
}

.navbar .navbar-brand .brand-text {
    font-weight: 500;
    display: none;
}

.head-area {
    background-color: #f2f3f7;
}

@media(max-width: 1320px) {
    .down-arrow-row {
        display: none;
    }
}


/*header .navbar.navbar-fixed .nav-item .nav-link,*/


/*header .navbar.navbar-fixed .dropdown > a {*/


/*    color: white;*/


/*}*/


/*header .navbar.navbar-fixed .nav-item .nav-link:hover,*/


/*header .navbar.navbar-fixed .dropdown > a:hover,*/


/*header .navbar.navbar-fixed .nav-item .nav-link:focus,*/


/*header .navbar.navbar-fixed .dropdown > a:focus {*/


/*    color: white;*/


/*}*/


/*@media (max-width: 991.98px) {*/


/*    .navbar-fixed #navbarCollapse li a {*/


/*        color: white !important;*/


/*    }*/


/*}*/

#navbarCollapse li {
    margin-left: 15px !important;
}

.btn-store img {
    max-width: 100px;
}

.navbar-fixed {
    padding: 0px;
}

header .navbar.navbar-fixed {
    background: #ffffff !important;
}

header .navbar.navbar-fixed .dropdown a,
header .navbar.navbar-fixed .navbar-brand,
header .navbar.navbar-fixed li .nav-link {
    color: var(--v2-primary) !important;
}

@media (max-width: 991.98px) {
    .navbar-fixed #navbarCollapse,
    .navbar-fixed.navbar .dropdown-menu {
        background: linear-gradient(to left, var(--v2-primary), var(--v2-secondary)) !important;
    }
    .navbar-fixed #navbarCollapse li a,
    .navbar-fixed li .nav-link,
    .navbar-fixed li a {
        color: #f2f3f7!important;
    }
    /* .main-menu.navbar .navbar-toggler {
        border-color: rgb(255, 255, 255);
        background-color: #333;
    } */
    /* button.navbar-toggler {
        background: linear-gradient(to left, var(--v2-primary), var(--v2-secondary)) !important;
    } */
}

.navbar.navbar-dark.navbar-fixed {
    padding: 0px;
}

.head-area .head-content {
    background: none;
    clip-path: none;
}

.head-area .head-content h1 {
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 45px;
}

.head-area .head-content p {
    font-size: 1.2rem;
    color: #7d1010;
    margin-bottom: 0;
    padding-bottom: 0;
    line-height: 35px;
}

.head-area .head-content {
    height: auto;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: auto;
}

@media (max-width: 991.98px) {
    .head-area .head-content {
        padding-top: 0;
    }
    /*.navbar-fixed #navbarCollapse {*/
    /*    background: -moz-linear-gradient(180deg, rgb(162, 60, 198) 0%, rgb(207, 77, 182) 100%) !important;*/
    /*    background: -webkit-linear-gradient(180deg, rgb(162, 60, 198) 0%, rgb(207, 77, 182) 100%) !important;*/
    /*    background: linear-gradient(180deg, rgb(162, 60, 198) 0%, rgb(207, 77, 182) 100%) !important;*/
    /*}*/
}

@media (max-width: 991.98px) {
    #navbarCollapse {
        background: linear-gradient(to left, var(--v2-primary), var(--v2-secondary)) !important;
    }
}

.head-area .head-content .links-section {
    text-align: right;
    display: flex;
    flex-wrap: wrap;
}

.head-area .head-content .links-section .btn-services {
    background: var(--v2-primary);
    border-color: var(--v2-primary);
    margin-right: 5px;
}

.head-area .head-content .links-section .btn-services:hover {
    background: var(--v2-primary-lighten-1);
}

.head-area .head-content .links-section .btn-about {
    box-shadow: none;
    color: white;
}

.head-area .head-content .links-section .btn-about:hover {
    color: black;
}


/* .links-section .btn.btn-light.radius {
    box-shadow: 0px 0px 10px 0px #ffffff;
}

.links-section .btn.btn-purple.radius {
    box-shadow: 0px 0px 10px 0px #aa2ae5;
} */

#numbers.section-pro:before {
    background: #f4f4f4 !important;
}

.pagination {
    width: 100%;
    display: flex;
    justify-content: center;
}

#numbers {
    padding-top: 1.5rem;
    background: #f4f4f4;
}

.section-title {
    margin-bottom: 20px;
}

.section-title h3 {
    font-family: 'Tajawal', sans-serif;
    font-size: 2.5rem;
    font-weight: bolder;
    margin-bottom: 10px !important;
}

#numbers .counter-item h3 {
    font-family: 'Tajawal', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--v2-secondary);
}

#numbers .counter-item p {
    font-size: 1.2rem;
    font-weight: bold;
    color: black;
}

.blog {
    background: #f9f9fb;
}

.blog .news-item .card {
    height: auto;
}

.blog .section-title h2 {
    font-family: 'Tajawal', sans-serif;
    font-size: 2.5rem;
    font-weight: bolder;
}

.blog .news-item img {
    width: 100%;
}

.blog .news-item .card-body {
    padding: 0;
}

.blog .news-item .card-footer {
    background: transparent;
}

.blog .news-item .card-footer .read-more {
    border: 1px solid #000001 !important;
    background: transparent;
    color: #000001;
    margin-left: 0;
    padding-top: 5px;
    padding-bottom: 5px;
    transition: all 0.5s;
}

.blog .news-item .card-footer .read-more:hover {
    background: #000001;
    color: white;
    transition: all 0.5s;
}

.blog .news-item .card {
    border-radius: 2rem;
    box-shadow: 8px 0px 10px 0px #ebebeb, 0px 0px 30px 0px #ebebeb;
    margin-bottom: 0;
}

.blog .news-item .card .card-body {
    max-height: 340px;
}

.blog .news-item .card .image-wrapper {
    height: 200px;
    position: relative;
    overflow: hidden;
    display: flex;
}

.blog .news-item .card img {
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
}

.blog .news-item .card-footer {
    text-align: left;
    padding-bottom: 15px;
}

.blog .news-item .blog-content {
    padding: 15px;
}

.blog .news-item .blog-content {
    width: 100% !important;
}

.blog .news-item .card-title {
    margin-bottom: 5px;
}

.slick-prev:before,
.slick-next:before {
    font-size: 3rem;
    color: var(--v2-secondary);
}

.news-items .slick-slide {
    opacity: 0.5;
}

.news-items .slick-current {
    opacity: 1;
}

[dir='rtl'] .slick-prev {
    right: -50px;
    left: auto;
}

.footer {
    background-color: #7d1010;
    background-image: linear-gradient(to bottom, var(--v2-primary), var(--v2-secondary));
}

.footer .footer-wrapper .copyright,
.footer .footer-wrapper a,
.footer .footer-wrapper p,
.footer .footer-wrapper h5 {
    color: #ffffff !important;
}

.footer .footer-wrapper .title {
    color: #ffffff;
    font-weight: bold;
    font-family: 'Tajawal', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.links a {
    margin-left: 0.5rem;
}
img.buysocialsa-logo {
    max-width: 4rem;
}
img.greatplacetowork-logo {
    max-width: 3rem;
}
img.iso-logo {
    max-width: 3.5rem;
}

.footer ul {
    padding: 0;
}

.footer .footer-wrapper ul li {
    margin-bottom: 8px;
}

.footer .footer-wrapper .copy-right {
    margin-top: 10px;
    margin-bottom: 10px;
}

.input-group>.input-group-prepend>.input-group-text {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
}

.input-group input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important;
}

.footer .newsletter .input-group>.input-group-prepend>.input-group-text {
    padding: 5px;
    font-size: 25px;
    background: #515460;
    border-color: #515460;
    color: white;
}

.footer .newsletter .input-group {
    height: 36px;
    width: 200px;
}

.footer .newsletter .input-group input {
    padding: 5px;
    border: 2px solid #515460;
    background: #191532 !important;
    padding-right: 10px;
    color: white;
}

.footer .newsletter .input-group>.form-control:not(:first-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

.footer .footer-wrapper ul.social-buttons li a {
    margin-right: 5px;
    box-shadow: none;
    border: none;
    padding: 5px !important;
    font-size: 18px !important;
}

.footer .footer-wrapper ul.social-buttons li a:hover {
    background: transparent;
    box-shadow: none;
}

#last_projects {
    height: 470px !important;
}

#maillist {
    background: rgb(100, 20, 146);
    background: -moz-linear-gradient(180deg, rgb(158, 59, 199) 0%, rgb(224, 83, 176) 100%);
    background: -webkit-linear-gradient(180deg, rgb(158, 59, 199) 0%, rgb(224, 83, 176) 100%);
    background: linear-gradient(180deg, rgb(158, 59, 199) 0%, rgb(224, 83, 176) 100%);
    height: auto;
}

@media (min-width: 991.98px) {
    #maillist {
        height: 390px !important;
    }
}

#maillist .swiper-slide {
    width: 100% !important;
    height: 100% !important;
}

#maillist .maillist-whatsapp,
#maillist .maillist-email {
    width: 100% !important;
    height: 100% !important;
}

@media (min-width: 991.98px) {
    #maillist .maillist-email button {
        margin-top: 55px !important;
    }
}

@media (max-width: 991.98px) {
    #maillist .maillist-whatsapp {
        margin-top: 2rem !important;
    }
}

#mc-embedded-subscribe-form {
    margin: 0;
    padding: 0;
    width: 100% !important;
}

#maillist .maillist-head i {
    font-size: 3rem;
    color: white;
}

#maillist .maillist-head h3 {
    color: white;
    font-weight: bold;
    font-family: 'Tajawal', sans-serif;
}

.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    margin-top: 10px !important;
}

.swiper-pagination-bullet-active {
    background: white;
}

.swiper-container-vertical>.swiper-pagination-bullets {
    right: 2px;
    top: 43%;
    direction: ltr;
    width: 100px;
    margin-right: auto;
}

.btn-custom-rounded {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-right: 2rem;
    padding-left: 2rem;
}

#partners {
    background: white;
}

#partners:before {
    background-image: none;
    content: none;
}


/********************************BEGIN ABOUT US***********************************/

.white-bg {
    background: white;
}

html {
    background: white;
}

.story-section {
    background: white;
}

.story-section .page-desc-title {
    color: black;
    font-weight: bold;
    font-family: 'Tajawal', sans-serif;
    font-size: 2.5rem;
}

.story-section .section-bg-inner.bg-white:before {
    content: none;
    background: none;
}

.story-section .technology .download-profile {
    color: var(--v2-secondary);
    border: 1px solid var(--v2-secondary);
    background: transparent;
    border-radius: var(--v2-btn-radius);
    padding-top: 6px;
    padding-bottom: 6px;
    padding-right: 2rem;
    padding-left: 2rem;
    transition: all 0.5s;
}

.story-section .technology .download-profile:hover {
    background: var(--v2-secondary);
    color: white;
    transition: all 0.5s;
}

.story-section .technology .download-profile img {
    width: 40px;
    margin-left: 8px;
}

.story-section .technology .content {
    line-height: 25px;
    font-weight: 500;
    font-size: 18px;
}

.section-pro .section-desc {
    color: #6c6c6c !important;
}

.section-values .features img {
    width: 100px;
}

.section-values .features .feature-name {
    font-weight: bold;
    font-family: 'Tajawal', sans-serif;
    font-size: 1.5rem;
    margin-top: 5px;
}

.section-axes .section-bg-inner {
    background: #f9f9fb;
}

.section-axes .card {
    border-radius: var(--v2-btn-radius);
    border: none;
    padding: 25px;
}

@media (max-width: 991.98px) {
    .section-axes .card {
        margin-top: 3rem;
    }
}

.section-axes .card .box-title {
    font-size: 1.8rem;
    font-weight: bold;
    font-family: 'Tajawal', sans-serif;
    margin-top: 15px;
}

.section-axes .card .box-icon {
    font-size: 3rem;
    background: rgb(100, 20, 146);
    background: -moz-linear-gradient(180deg, rgb(162, 60, 198) 0%, rgb(207, 77, 182) 100%);
    background: -webkit-linear-gradient(180deg, rgb(162, 60, 198) 0%, rgb(207, 77, 182) 100%);
    background: linear-gradient(180deg, rgb(162, 60, 198) 0%, rgb(207, 77, 182) 100%);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    color: white;
    margin-right: auto;
    margin-left: auto;
    margin-top: -4rem;
}

.section-axes .card .box-icon span {
    margin-top: 18px;
}

.section-axes .axis-items {
    margin-top: 5rem;
}

.section-axes .axis-items .card {
    height: 200px;
}

#partners .subsection-title {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.3rem;
    color: var(--v2-primary);
    margin-top: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

#partners .slider-partners {
    margin-top: 1.5rem;
}

#partners .slick-slide img {
    width: 160px;
}

@media only screen and (max-width: 520px) {
    #partners .slick-slide img {
        width: 140px;
        margin-right: auto;
        margin-left: auto;
    }
}

.section-joinus .features i {
    color: #dedee0;
    font-size: 1.2rem;
}

.section-joinus .features a {
    color: var(--v2-secondary);
}

.section-joinus .features img {
    width: 200px;
    height: 140px;
}


/********************************END ABOUT US***********************************/


/********************************BEGIN CONTACT US*********************************/

#contact {
    background: #f4f5f8;
    box-shadow: none;
}

#contact .card {
    background: transparent;
    box-shadow: none;
}

.col-contact-info {
    margin-top: 30px;
}

#contact .card .form-control {
    /*border-radius: var(--v2-btn-radius);*/
    /*padding-right: 1.5rem;*/
    /*border: 1px solid #e4e3ea;*/
    background: transparent !important;
    font-weight: bold;
}

#contact .card .form-control:focus {
    border-color: var(--v2-secondary);
    border-width: 2px;
    /*box-shadow: 0 0 8px 0 var(--v2-secondary) !important;*/
}

#contact .card .card-footer {
    background: transparent;
    box-shadow: none;
    border: none;
}

#contact .card .card-footer button {
    background: var(--v2-primary);
    color: #fff !important;
    border: 1px solid;
    box-shadow: inset 0 0px 0 var(--v2-primary);
}

.col-contact-info .title,
.col-contact-form .title {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.5rem;
    font-weight: bolder;
}

.col-contact-info .card .card-header {
    background: transparent;
    border: none;
}

.col-contact-info .card .card-body {
    padding-top: 0;
    margin-top: 0;
}

.col-contact-info ul li {
    font-size: 17px;
    margin-bottom: 9px;
    color: #666666;
}

.col-contact-info ul li {
    font-size: 17px;
    margin-bottom: 9px;
}

.col-contact-info ul a {
    color: #666666;
}

.col-contact-info ul a:hover {
    color: var(--v2-secondary)
}

.col-contact-info ul a:hover .fa {
    color: var(--v2-secondary)
}

.col-contact-info ul .fa {
    font-size: 22px;
    margin-left: 8px;
}

.col-contact-form .card {
    border-radius: var(--v2-btn-radius);
    background: white !important;
    padding: 3rem;
    padding-top: 1.5rem;
}

.col-contact-form .title {
    margin-bottom: 1.2rem;
}

#contact #map {
    height: 250px;
    width: 100%;
    display: none;
}

.projects-slider .col-text {
    padding-top: 1rem;
    text-align: right;
    font-family: 'Tajawal', sans-serif;
    padding-left: 6rem;
}

@media (min-width: 991.98px) {
    .projects-slider .col-text {
        padding-top: 4rem;
        text-align: right;
        font-family: 'Tajawal', sans-serif;
        /*padding-left: 6rem;*/
    }
    .projects-slider .col-image {
        background: url("../images/gradient-circle.png?v=2.0.0");
        background-repeat: no-repeat;
        background-position: bottom;
        background-size: 180px;
        background-position-x: center;
        background-position-y: 60%;
    }
}

.projects-slider .col-image img {
    width: 256px;
}

.projects-slider .col-text h2 {
    font-weight: 600;
    font-size: 24px;
}

.projects-slider .col-text h3 {
    font-weight: 600;
    color: var(--v2-primary);
    font-size: 22px;
}

.projects-slider .col-text p {
    font-size: 16px;
}

.projects-slider .col-text a {
    font-size: 14px !important;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

.projects-slider .col-text a {
    font-size: 14px !important;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

.projects-swiper-container .swiper-pagination-bullet-active {
    background: rgb(197, 72, 186) !important;
    background: -moz-linear-gradient(180deg, rgb(124, 21, 144) 0%, rgb(164, 43, 135) 100%) !important;
    background: -webkit-linear-gradient(180deg, rgb(124, 21, 144) 0%, rgb(164, 43, 135) 100%) !important;
    background: linear-gradient(180deg, rgb(124, 21, 144) 0%, rgb(164, 43, 135) 100%) !important;
}

.swiper-container-vertical>.swiper-pagination-bullets {
    top: 53% !important;
}


/********************************END CONTACT US***********************************/


/********************************BEGIN LIBRARY FILE***********************************/

.section-page-header {
    height: auto;
    padding: 4rem;
    background: url(../images/shape-grey.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-position-y: 102%;
}


/********************************BEGIN LIBRARY FILE***********************************/


/********************************BEGIN NEWS FILE***********************************/

.section-news-page-header .col-image {
    width: 70%;
}

.section-news-page-header .col-text {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    text-align: center;
}

.section-news-page-header .col-text .subscription .input-group {
    width: 70%;
}

.section-news-page-header .col-text .subscription form {
    display: flex;
    justify-content: center;
}

.section-news-page-header .col-text .subscription .input-group>.input-group-prepend>.input-group-text {
    padding: 14px;
    font-size: 25px;
    background: #515460;
    border-color: #515460;
    color: white;
}

.section-news-page-header .col-text .subscription .input-group input {
    padding: 15px;
    border: 2px solid #515460;
    background: white !important;
    padding-right: 10px;
    color: black;
}

@media (max-width: 991.98px) {
    .section-news-page-header .col-text .subscription .input-group {
        width: 100%;
    }
    .section-news-page-header .col-image {
        width: 100%;
    }
}

#news .post-item img {
    border-radius: var(--v2-btn-radius);
    width: 230px;
    height: 230px;
}

#news .post-item {
    margin-top: 2rem;
    padding-bottom: 30px;
    border-bottom: 2px solid #dbdbdb;
}

#news .post-item h3 {
    font-size: 1.8rem;
    font-weight: bolder;
    color: var(--v2-primary);
}

#news .post-item h3 a {
    color: var(--v2-primary);
}

#news .post-item .post-title {
    padding-top: 8px;
}

#news .post-item .post-desc p {
    padding-bottom: 0;
    margin-bottom: 0;
}

#news .post-item .read-more {
    background: transparent;
    box-shadow: none;
    color: var(--v2-primary);
}

#news .post-item .read-more:hover {
    color: #561b71;
    ;
}

#news .post-item .date-comments {
    margin-bottom: 10px;
}

#news .post-item .date-comments span,
#news .post-item .date-comments span a {
    color: var(--v2-secondary);
    font-weight: bold;
}


/********************************BEGIN LIBRARY FILE*************************************/

#library #accordion .card {
    background: transparent;
    border-radius: var(--v2-btn-radius);
    margin-bottom: 25px;
    border: 1px solid rgba(122, 121, 125, 0.45);
}

#library #accordion .card-header {
    background: transparent;
    border: none;
}

#library #accordion .arrow {
    float: left;
    margin-top: 20px;
    margin-left: 10px;
    color: rgba(130, 129, 133, 0.55);
}

#library #accordion .colapse .arrow {
    float: left;
    margin-top: 20px;
    margin-left: 10px;
    color: rgba(130, 129, 133, 0.55);
}

#library #accordion .card-header .btn-link {
    color: var(--v2-primary);
    margin-right: 0px;
    padding-right: 0;
    font-weight: bold;
    font-size: 18px;
    float: right;
    white-space: normal;
    text-align: right;
}

.pagination .btn-primary {
    background: linear-gradient(to top, var(--v2-primary), var(--v2-secondary));
    background: -moz-linear-gradient(to top, var(--v2-primary), var(--v2-secondary));
    background: -webkit-linear-gradient(to top, var(--v2-primary), var(--v2-secondary));
    background: linear-gradient(to top, var(--v2-primary), var(--v2-secondary));
}

h3.post-title {
    color: var(--v2-primary);
}

.date-comments {
    color: var(--v2-secondary);
}

#library .card-body {
    padding-top: 0px;
}

#library .file-item .icons .action {
    color: var(--v2-primary-lighten-1) !important;
    font-size: 25px;
    margin-right: 5px;
}

#library .file-item .col-text a {
    color: black !important;
    font-size: 20px;
    margin-right: 5px;
}

#library .file-item .col-text p {
    margin-bottom: 0;
    padding-bottom: 0;
}

#library .file-item .dropdown {
    display: inline;
}


/********************************END LIBRARY FILE*************************************/


/********************************BEGIN PUB*************************************/

#publications .page-bar {
    background: transparent;
    box-shadow: none;
}

#publications .card {
    background: transparent;
    box-shadow: none;
}

.single-bup {
    border-bottom: 1px solid #c1c1c1;
    margin-bottom: 10px;
}

#publications .pub-item {
    background: transparent;
}

#publications .pub-item .download-btn {
    margin-top: 4rem;
    margin-bottom: auto;
    background: white;
    height: 100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-top-right-radius: 4rem;
    border-bottom-right-radius: 4rem;
    box-shadow: var(--v2-card-shadow);
    width: 100px;
    font-size: 25px;
    /* margin-right: 5px; */
    right: 8px;
    position: relative;
    color: var(--v2-primary);
}

#publications .pub-item .download-btn a {
    color: var(--v2-primary);
}

@media (min-width: 991.98px) {
    #publications .pub-item img {
        transform: rotate(-10deg);
    }
    #publications .pub-item .col-text {
        padding-top: 3rem;
    }
}

@media (max-width: 991.98px) {
    #publications .pub-item .download-btn {
        display: none;
    }
}

#publications .pub-item .col-image {
    display: flex;
    flex-direction: row;
    justify-content: center;
    background: transparent;
}

#publications .pub-item .col-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
}

#publications .pub-item .col-text h5 a {
    color: black;
    font-weight: bold;
    font-size: 25px;
}

#publications .pub-item .col-text .read-more {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    color: var(--v2-primary);
}

#publications .pub-item .col-text .read-more:hover {
    color: #561b71;
    ;
    border: none;
}

.search-bar {
    position: relative;
    margin-bottom: 3rem;
}

.search-bar .form-group {
    position: relative;
}

.search-bar .search-control span {
    position: absolute;
    top: 11px;
    right: 13px;
    color: #c6c6c6;
}

.search-bar .search-control input {
    border-radius: var(--v2-btn-radius);
    padding-right: 35px;
    border: 1px solid #e8e9ec;
    padding-top: 8px;
    padding-bottom: 8px;
}

.search-bar .form-control {
    border-radius: var(--v2-btn-radius);
    padding-top: 8px;
    padding-bottom: 8px;
    height: auto !important;
    margin-bottom: 0;
}

.search-bar select {
    background: transparent !important;
    border: none !important;
    font-weight: bold;
    cursor: pointer;
}

.search-bar .search-control input:focus {
    border: 1px solid var(--v2-secondary);
    box-shadow: 0 0 8px 0 var(--v2-secondary) !important;
}


/********************************END PUB***************************************/


/********************************BEGIN PROJECTS***************************************/

#projects .project-item img {
    width: 160px;
    height: 120px;
    margin-top: 10px;
}

#projects .project-item--trans {
    bottom: 0px !important;
    transition: all 0.4s;
}

#projects .project-item--trans:hover {
    bottom: 10px !important;
    transition: all 0.4s;
    cursor: pointer;
    /*cursor: pointer;*/
}

#projects .project-item .card .card-header {
    background: transparent;
    border: none;
    text-align: right;
}

#projects .project-item .card .card-body {
    margin-top: 0px;
    padding-top: 0px;
    text-align: right;
    height: 100%;
}

#projects .project-item .card {
    border-radius: var(--v2-btn-radius);
    border: none;
    padding: 25px;
    box-shadow: var(--v2-card-shadow);
    height: 370px;
}

#projects .project-item .card .card-footer {
    background: transparent;
    border: none;
    text-align: left;
}

#projects .project-item .card .card-footer .action {
    /*color: black;*/
    /*background: #d4d4d4;*/
    border-radius: 10px;
    display: inline;
    padding: 5px;
    border: 2px solid var(--v2-secondary);
    background: transparent;
    color: var(--v2-secondary);
    transition: all 0.5s;
}

#projects .project-item .card .card-footer .action:hover {
    background: var(--v2-secondary);
    color: #f2f3f7;
    transition: all .1s;
}

#projects .project-item .card .card-footer .dropdown {
    display: inline;
}

@media (max-width: 991.98px) {
    #projects .project-item {
        margin-top: 5rem;
    }
}

#projects .card .box-title {
    font-size: 1.8rem;
    font-weight: bolder;
    font-family: 'Tajawal', sans-serif;
    margin-top: 0px;
}

#projects .card .box-icon {
    font-size: 3rem;
    background: rgb(100, 20, 146);
    background: -moz-linear-gradient(180deg, rgb(162, 60, 198) 0%, rgb(207, 77, 182) 100%);
    background: -webkit-linear-gradient(180deg, rgb(162, 60, 198) 0%, rgb(207, 77, 182) 100%);
    background: linear-gradient(180deg, rgb(162, 60, 198) 0%, rgb(207, 77, 182) 100%);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    color: white;
    /*margin-right: auto;*/
    margin-right: auto;
    margin-left: 0px;
    margin-top: -5rem;
    text-align: center;
}

#projects .axis-items {
    margin-top: 5rem;
}

#projects .section-padding {
    padding-top: 8rem;
}

.section-bg-inner {
    background: #f4f5f8;
}

.swiper-slide {
    width: 100% !important;
    height: auto !important;
}


/********************************END PROJECTS***************************************/


/********************************BEGIN EVENTS***************************************/

#events .project-item img {
    width: 160px;
    height: 120px;
    margin-top: 10px;
}

#events .event-item--trans {
    bottom: 0px !important;
    transition: all 0.4s;
}

#events .event-item--trans:hover {
    bottom: 10px !important;
    transition: all 0.4s;
    cursor: pointer;
    /*cursor: pointer;*/
}

#events .event-item .card .card-header {
    background: transparent;
    border: none;
    text-align: right;
}

#events .event-item .card .card-body {
    margin-top: 0px;
    padding-top: 0px;
    text-align: right;
    height: 100%;
}

#events .event-item .card {
    border-radius: var(--v2-btn-radius);
    border: none;
    padding: 25px;
    box-shadow: var(--v2-card-shadow);
    /*height: 370px;*/
}

#events .filter-item .card {
    border-radius: var(--v2-btn-radius);
    border: none;
    padding: 25px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-right: 10px;
    margin-left: 10px;
    box-shadow: var(--v2-card-shadow);
    /*height: 370px;*/
}

#events .event-item .card .card-title a {
    color: var(--v2-secondary);
    /*height: 370px;*/
}

#events .event-item .card .card-footer {
    background: transparent;
    border: none;
    text-align: left;
}

#events .event-item .card .card-footer .action {
    /*color: black;*/
    /*background: #d4d4d4;*/
    border-radius: 10px;
    display: inline;
    padding: 5px;
    border: 2px solid var(--v2-secondary);
    background: transparent;
    color: var(--v2-secondary);
    transition: all 0.5s;
}

#events .event-item .card .card-footer .action:hover {
    background: var(--v2-secondary);
    color: #f2f3f7;
    transition: all .1s;
}

#events .event-item .card .card-footer .dropdown {
    display: inline;
}

@media (max-width: 991.98px) {
    #events .event-item {
        margin-top: 5rem;
    }
}

#events .card .box-title {
    font-size: 1.8rem;
    font-weight: bolder;
    font-family: 'Tajawal', sans-serif;
    margin-top: 0px;
}

#events .card .box-icon {
    font-size: 3rem;
    background: rgb(100, 20, 146);
    background: -moz-linear-gradient(180deg, rgb(162, 60, 198) 0%, rgb(207, 77, 182) 100%);
    background: -webkit-linear-gradient(180deg, rgb(162, 60, 198) 0%, rgb(207, 77, 182) 100%);
    background: linear-gradient(180deg, rgb(162, 60, 198) 0%, rgb(207, 77, 182) 100%);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    color: white;
    /*margin-right: auto;*/
    margin-right: auto;
    margin-left: 0px;
    margin-top: -5rem;
    text-align: center;
}

#events .axis-items {
    margin-top: 5rem;
}

.section-bg-inner {
    background: #f4f5f8;
}

.swiper-slide {
    width: 100% !important;
    height: auto !important;
}


/********************************END PROJECTS***************************************/

.btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-radius: 13px;
}

.pagination .btn-primary:not(:disabled):not(.disabled):active {
    color: #f2f3f7;
    background-color: #6C757D;
    border-color: #6C757D;
}

.slick-slider .slick-list {
    padding-bottom: 10px !important;
}

#projects .project-item .card {
    height: auto;
}

@media only screen and (min-width: 1100px) {
    .slick-slide .news-item {
        transform: translate(0, 0) scale(.75);
        transition: all .4s ease;
    }
    .slick-slide.slick-center .news-item {
        transform: scale(1);
    }
}

@media only screen and (max-width: 1100px) {
    .news-items .slick-slide {
        opacity: 1;
    }
}

@media only screen and (max-width: 768px) {
    .projects-slider .col-text {
        padding-left: 0;
    }
}

@media only screen and (max-width: 625px) {
    [dir="rtl"] .slick-prev {
        right: -29px;
    }
    [dir="rtl"] .slick-next {
        left: -2px;
    }
}

.jouinus_requirements_and_tasks ul li {
    list-style: circle;
    margin-bottom: 9px;
}

.btn,
.modal-content {
    border-radius: 0;
}

.modal-custom {
    text-align: right;
}

.form-control-custom {
    margin-bottom: 10px !important;
}

.form-control {
    margin-bottom: 0.5rem !important;
    padding: 0.5rem .5rem !important;
}

.modal-header .close {
    padding: 0.1rem 1rem;
    margin-right: auto;
}

.modal-header .close {
    margin: 0;
}

.modal-footer {
    place-self: center;
}

.blockUI.blockMsg.blockElement {
    right: 35.53% !important;
    left: 0!important;
}


/* start */


/* aboutus_modal */

*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/* --------------------------------

Main Components

-------------------------------- */

body.overflow-hidden {
    /* used when modal is visible */
    overflow: hidden;
}

.cd-section {
    text-align: center;
    z-index: 1000;
    height: max-content
}

.cd-section p {
    margin: 2em 0;
    line-height: 1.6;
    color: #fff !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media only screen and (min-width: 768px) {
    .cd-section p {
        font-size: 1.8rem;
        line-height: 2;
    }
}

@media only screen and (min-width: 1170px) {}

.cd-modal {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: visibility 0s 0.3s, opacity 0.3s 0s, z-index 0s 0.3s;
    -moz-transition: visibility 0s 0.3s, opacity 0.3s 0s, z-index 0s 0.3s;
    transition: visibility 0s 0.3s, opacity 0.3s 0s, z-index 0s 0.3s;
}

.cd-modal::after {
    /* gradient overlay at bottom of modal window */
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    pointer-events: none;
    background: transparent;
    background: -webkit-linear-gradient(bottom, #34383c, rgba(52, 56, 60, 0));
    background: linear-gradient(to top, #34383c, rgba(52, 56, 60, 0));
}

.cd-modal .cd-modal-content {
    height: 100%;
    width: 100%;
    padding: 3em 5%;
    text-align: right;
    overflow-y: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cd-modal p {
    line-height: 1.6;
    margin: 1em 0;
    text-align: justify;
}

.modal-is-visible .cd-modal {
    z-index: 10;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: visibility 0s 0s, opacity 0.3s 0s, z-index 0s 0s;
    -moz-transition: visibility 0s 0s, opacity 0.3s 0s, z-index 0s 0s;
    transition: visibility 0s 0s, opacity 0.3s 0s, z-index 0s 0s;
}

.modal-is-visible .cd-modal .cd-modal-content {
    -webkit-overflow-scrolling: touch;
}

@media only screen and (min-width: 768px) {
    .cd-modal .cd-modal-content {
        padding: 4em 10%;
    }
}

@media only screen and (min-width: 1170px) {
    .cd-modal .cd-modal-content {
        padding: 6em 12%;
    }
    .cd-modal p {
        font-size: 2rem;
        line-height: 2;
    }
}

.cd-modal-action {
    position: relative;
}

.cd-modal-action .btn-see-more,
.cd-modal-action .cd-modal-bg {
    display: inline-block;
    height: 4em;
    background-image: linear-gradient(to bottom, #470a0a, #991414);
    z-index: 9 !important;
}

.cd-modal-action .btn-see-more {
    position: relative;
    margin-top: 10%;
    background: transparent;
    padding: 20px;
    font-size: 15px;
    font-family: 'tajawal';
    font-weight: 700;
    letter-spacing: 0px;
    text-transform: uppercase;
    transition: all 300ms ease-in-out;
    left: 0;
    top: 0;
    z-index: 7;
    border-radius: 50px;
}

.cd-modal-action .btn-see-more:hover {
    left: 4px;
    top: 4px;
    box-shadow: 0 0 0 0 rgb(102, 0, 51);
}

.cd-modal-action .btn-see-more {
    border: 1px solid rgb(102, 0, 51);
    color: rgb(102, 0, 51);
    box-shadow: 4px 4px 0px 0px rgb(102, 0, 51);
}

.cd-modal-action .cd-modal-bg {
    position: absolute;
    z-index: 1;
    right: 50%;
    top: 0;
    width: 4em;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transform: translateX(2em);
    -moz-transform: translateX(2em);
    -ms-transform: translateX(2em);
    -o-transform: translateX(2em);
    transform: translateX(2em);
    -webkit-transition: visibility 0s 0.5s;
    -moz-transition: visibility 0s 0.5s;
    transition: visibility 0s 0.5s;
}

.cd-modal-action .cd-modal-bg.is-visible {
    opacity: 1;
    visibility: visible;
}

.cd-modal-close {
    position: fixed;
    z-index: 1;
    top: 20px;
    left: 5%;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3) url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/cd-icon-close_copy.svg) no-repeat center center;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
    -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
    transition: transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
}

.no-touch .cd-modal-close:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-is-visible .cd-modal-close {
    visibility: visible;
    opacity: 1;
    -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
    -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
    transition: transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    z-index: 11;
    margin-top: 30px;
}

@media only screen and (min-width: 768px) {
    .cd-modal-close {
        top: 70px;
    }
}

.cd-modal-content-h3 {
    font-size: 4rem !important;
    color: #f2f3f7 !important;
    margin-bottom: 3rem !important;
    text-align: right !important;
}

.cd-modal-content-h2 {
    font-size: 3.5rem !important;
    color: #f2f3f7 !important;
    margin-bottom: 0rem !important;
    text-align: right !important;
    margin-top: 32px !important;
}

.cd-modal a {
    margin-top: 25px;
}


/*  aboutus_modal */


/* end */


/* start */


/* contact_us_section */

main.contact-main {
    height: auto;
    display: table;
    background-color: #ffffff;
    width: 100%;
    height: auto;
    padding-bottom: 50px;
    background-size: cover;
    background-attachment: fixed;
}

.contact-section {
    z-index: 2;
    display: table-cell;
    margin: 0;
    padding: 0 15px;
    text-align: center;
    vertical-align: top;
}

.contact-block {
    padding-top: 50px;
    border-radius: 30px;
}

.contact-head {
    text-align: center;
    margin-top: 100px;
}

.contact-title {
    font-size: 45px;
    color: var(--v2-primary);
    padding-bottom: 5px;
    display: inline-block;
    font-weight: bold;
}

.contact-des {
    margin-top: 10px;
    color: rgb(133, 133, 133);
    font-size: 20px;
}

.row.contact-body {
    margin-top: 25px;
}

.col-12.contact-right-content {
    text-align: center;
}

img.contact-us-back-image {
    position: absolute;
}

img.contact-us-top-image {
    position: relative;
}

@keyframes floating {
    0% {
        transform: translate(0, 0px);
    }
    50% {
        transform: translate(0, 15px);
    }
    100% {
        transform: translate(0, -0px);
    }
}

img.contact-us-back-image {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    margin-left: 30px;
    margin-top: 5px;
    left: 80px;
    width: 500px;
}

.carousel-image {
    margin-top: 60px;
    width: 330px;
    margin-right: 10px;
}

.contact-title {
    width: 100%;
}

img.contact-us-top-image {
    width: 430px;
}

img.contact-us-back-image {
    left: 20px;
}

@media (max-width: 570px) {
    .carousel-image {
        margin-top: 85px;
        width: 250px;
    }
}

@media (max-width: 1200px) {
    .contact-title {
        font-size: 35px;
    }
    img.contact-us-back-image {
        width: 400px;
    }
    img.contact-us-top-image {
        width: 350px;
    }
}

@media (max-width: 990px) {
    .contact-title {
        font-size: 30px;
    }
    img.contact-us-top-image {
        width: 295px;
    }
    img.contact-us-back-image {
        left: -34px;
        width: 340px;
    }
}

@media (max-width: 760px) {
    img.contact-us-back-image {
        width: 300px;
    }
    img.contact-us-top-image {
        width: 280px;
    }
}

@media (max-width: 690px) {
    img.contact-us-top-image {
        width: 230px;
        display: inline-block;
    }
    img.contact-us-back-image {
        width: 270px;
        left: -49px;
    }
}

@media (max-width: 560px) {
    .contact-head {
        text-align: right;
        width: 100% !important;
        display: contents;
        margin-top: 0px;
    }
    img.contact-us-top-image {
        width: 230px;
        display: inline-block;
    }
    img.contact-us-back-image {
        width: 253px;
        left: -49px;
    }
}

@media (max-width: 480px) {
    img.contact-us-back-image {
        left: -130px;
    }
}


/* contact_us_section */


/* end */


/* start */


/* header_sliders */

.header {
    position: relative;
    text-align: center;
}

.header-events {
    position: absolute;
}

h1.best-template.text-right.animated.brand-font.fadeInUpShorter {
    color: #ffffff;
}

.inner-header {
    height: 85vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

.links-section a {
    font-size: 20px;
    padding-right: 10px;
    padding-left: 10px;
}

div#carouselExampleSlidesOnly {
    background: linear-gradient(359deg);
    margin-bottom: -85px;
    background-color: #000;
    height: 100vh;
}



.video-header-youtube {
    opacity: 0.8;
}

.carousel-item>img {
    float: left;
    height: 100vh;
    margin-bottom: 0;
    bottom: 0;
    width: 100%;
    object-fit: cover;
}

.carousel-inner {
    opacity: 0.3;
}

.waves {
    position: relative;
    width: 100%;
    /*Fix for safari gap*/
    min-height: 100px;
    max-height: 150px;
}

.content {
    position: relative;
    height: 20vh;
    text-align: center;
    background-color: white;
}

.carousel-item {
    height: 100vh;
}


/* Animation */

.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}


/*Shrinking for mobile*/

@media (max-width: 768px) {
    .waves {
        height: 40px;
        min-height: 40px;
    }
    .content {
        height: 30vh;
    }
    h1 {
        font-size: 24px;
    }
}

.links-section .btn {
    padding: 10px 30px;
}


/* ---- reset ---- */

canvas {
    display: block;
    vertical-align: middle;
}


/* ---- particles.js container ---- */

#particles-js {
    position: absolute;
    width: 100%;
    height: 80%;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}


/* ---- stats.js ---- */

.count-particles {
    background: #000022;
    position: absolute;
    top: 48px;
    left: 0;
    width: 80px;
    color: #13E8E9;
    font-size: .8em;
    text-align: left;
    text-indent: 4px;
    line-height: 14px;
    padding-bottom: 2px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
}

.js-count-particles {
    font-size: 1.1em;
}

#stats,
.count-particles {
    -webkit-user-select: none;
}

#stats {
    border-radius: 3px 3px 0 0;
    overflow: hidden;
}

.count-particles {
    border-radius: 0 0 3px 3px;
}

.particles-js-canvas-el {
    height: 70vh !important;
    opacity: 0.3;
}


/* wave---------- */

.wave-line {
    width: 100%;
    position: absolute;
    bottom: -90px
}

.wave-line div {
    background-color: #4478e3;
    margin: -5px 0px 0px 0px;
    padding: 0px;
    color: #fff;
    text-align: center;
}

svg {
    width: 100%;
}

.arrow {
    stroke-width: .3px;
    stroke: yellow;
}

.topball {
    animation: ball 1.5s ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-delay: 0.3s;
    cursor: pointer;
}

.wave {
    animation: wave 3s linear;
    animation-iteration-count: infinite;
    fill: #ffffff;
}

.drop {
    fill: transparent;
    animation: drop 5s ease infinite normal;
    stroke: #4478e3;
    stroke-width: 0.5;
    opacity: .6;
    transform: translateY(80%);
}

.drop1 {
    transform-origin: 20px 3px;
}

.drop2 {
    animation-delay: 3s;
    animation-duration: 3s;
    transform-origin: 25px 3px;
}

.drop3 {
    animation-delay: -2s;
    animation-duration: 3.4s;
    transform-origin: 16px 3px;
}

.gooeff {
    filter: url(#goo);
}

#wave2 {
    animation-duration: 5s;
    animation-direction: reverse;
    opacity: .6
}

#wave3 {
    animation-duration: 7s;
    opacity: .3;
}

@keyframes drop {
    0% {
        transform: translateY(80%);
        opacity: .6;
    }
    80% {
        transform: translateY(80%);
        opacity: .6;
    }
    90% {
        transform: translateY(10%);
        opacity: .6;
    }
    100% {
        transform: translateY(0%) scale(1.5);
        stroke-width: 0.2;
        opacity: 0;
    }
}

@keyframes wave {
    to {
        transform: translateX(-100%);
    }
}

@keyframes ball {
    to {
        transform: translateY(20%);
    }
}


/* Video - Background */

.cover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

.tv {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.tv .screen {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    margin: auto;
}


/* / video background */


/* header_sliders */


/* end */


/* start */


/* header_white */


/* -------------------------- */

.vert .carousel-item-next.carousel-item-left,
.vert .carousel-item-prev.carousel-item-right {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.vert .carousel-item-next,
.vert .active.carousel-item-right {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100% 0);
}

.vert .carousel-item-prev,
.vert .active.carousel-item-left {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}


/* -------------------------- */

.carousel-item {
    height: 400px;
}


/* header_white */


/* end */


/* start */


/* join_us_section */

main.join-main {
    height: auto;
    display: table;
    background-color: #ffffff;
    width: 100%;
    height: auto;
    margin-bottom: 0;
    background-size: cover;
    background-attachment: fixed;
}

.join-section {
    z-index: 2;
    display: table-cell;
    margin: 0;
    padding: 0 15px;
    padding-bottom: 50px;
    text-align: center;
    vertical-align: top;
}

.join-block {
    padding-top: 50px;
    border-radius: 30px;
}

.join-head {
    text-align: right;
    margin-top: 100px;
}

.join-title {
    font-size: 45px;
    color: var(--v2-primary);
    padding-bottom: 5px;
    display: inline-block;
    font-weight: bold;
}

.join-des {
    margin-top: 10px;
    color: rgb(133, 133, 133);
    font-size: 20px;
}

.row.join-body {
    margin-top: 25px;
}

.col-12.join-right-content {
    text-align: right;
}

img.join-us-back-image {
    position: absolute;
}

img.join-us-top-image {
    position: relative;
}

img.join-us-back-image {
    left: -15px;
}

@keyframes floating {
    0% {
        transform: translate(0, 0px);
    }
    50% {
        transform: translate(0, 15px);
    }
    100% {
        transform: translate(0, -0px);
    }
}

img.join-us-back-image {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    margin-left: 60px;
    margin-top: 0px;
    width: 440px;
}

img.join-us-top-image {
    width: 430px;
}

.carousel-image {
    margin-top: 60px;
    width: 330px;
    margin-right: 10px;
}

.join-title {
    width: 100%;
}

@media (max-width: 570px) {
    .carousel-image {
        margin-top: 85px;
        width: 250px;
    }
}

@media (max-width: 1200px) {
    .join-title {
        font-size: 35px;
    }
    img.join-us-back-image {
        width: 400px;
    }
    img.join-us-top-image {
        width: 350px;
    }
}

@media (max-width: 990px) {
    .join-title {
        font-size: 30px;
    }
    img.join-us-top-image {
        width: 295px;
    }
    img.join-us-back-image {
        left: -34px;
        width: 340px;
    }
}

@media (max-width: 760px) {
    img.join-us-back-image {
        width: 300px;
    }
    img.join-us-top-image {
        width: 280px;
    }
}

@media (max-width: 690px) {
    img.join-us-top-image {
        width: 230px;
        display: inline-block;
    }
    img.join-us-back-image {
        width: 270px;
        left: -49px;
    }
}

@media (max-width: 560px) {
    .join-head {
        text-align: right;
        width: 100% !important;
        display: contents;
        margin-top: 0px;
    }
    img.join-us-top-image {
        width: 230px;
        display: inline-block;
    }
    img.join-us-back-image {
        width: 270px;
        left: -49px;
    }
}

@media (max-width: 480px) {
    img.join-us-back-image {
        left: -100px;
    }
}


/* join_us_section */


/* end */


/* start */


/* last_news_section */

.head-place {
    padding-top: 50px;
    margin-left: auto;
    height: 15vh;
}

.last-news-section {
    font-family: "tajawal";
    display: table-cell;
    text-align: center;
    width: 100%;
    vertical-align: middle;
    height: auto;
    background-image: linear-gradient(#7d1010, #1f0000), url("../images/bg-04.jpg");
    background-attachment: fixed;
    box-shadow: inset 0px 6px 20px 0px #424242;
    background-size: cover;
    background-repeat: no-repeat;
}

.last-news-main {
    background-color: #f2f3f7;
    min-height: 80vh;
    display: flex;
    height: auto;
}

.blog-slider {
    width: 95%;
    position: relative;
    max-width: 800px;
    margin: auto;
    background: #f2f3f7;
    box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
    padding: 25px;
    border-radius: 25px;
    height: auto !important;
    transition: all 0.3s;
}

@media screen and (max-width: 992px) {
    .blog-slider {
        max-width: 680px;
        height: 400px;
    }
}

@media screen and (max-width: 768px) {
    .blog-slider {
        min-height: 500px;
        height: auto;
        margin: 180px auto;
    }
    .all-news-btn {
        margin-left: -85px;
        padding-top: 20px;
    }
}

@media screen and (max-height: 500px) and (min-width: 992px) {
    .blog-slider {
        height: 350px;
    }
}

.blog-slider__item {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .blog-slider__item {
        flex-direction: column;
    }
}

.blog-slider__item.swiper-slide-active .blog-slider__img img {
    opacity: 1;
    transition-delay: 0.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>* {
    opacity: 1;
    transform: none;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(1) {
    transition-delay: 0.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(2) {
    transition-delay: 0.4s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(3) {
    transition-delay: 0.5s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(4) {
    transition-delay: 0.6s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(5) {
    transition-delay: 0.7s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(6) {
    transition-delay: 0.8s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(7) {
    transition-delay: 0.9s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(8) {
    transition-delay: 1s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(9) {
    transition-delay: 1.1s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(10) {
    transition-delay: 1.2s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(11) {
    transition-delay: 1.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(12) {
    transition-delay: 1.4s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(13) {
    transition-delay: 1.5s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(14) {
    transition-delay: 1.6s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(15) {
    transition-delay: 1.7s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content>a:nth-child(n) {
    transition-delay: unset;
}

.blog-slider__img {
    width: 300px;
    flex-shrink: 0;
    height: 300px;
    box-shadow: 4px 2px 6px 0px rgb(0 0 0 / 20%);
    border-radius: 20px;
    transform: translateX(-80px);
    overflow: hidden;
}

.blog-slider__img:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(147deg, rgb(128 29 0/ 52%) 0%, rgb(207 8 135 / 53%) 40%);
    border-radius: 20px;
    opacity: 0.8;
}

.blog-slider__img img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    opacity: 0;
    border-radius: 20px;
    transition: all 0.3s;
}

@media screen and (max-width: 768px) {
    .blog-slider__img {
        transform: translateY(-50%);
        width: 60%;
    }
}

@media screen and (max-width: 576px) {
    .blog-slider__img {
        width: 95%;
    }
}

@media screen and (max-height: 500px) and (min-width: 992px) {
    .blog-slider__img {
        height: 270px;
    }
}

.blog-slider__content {
    text-align: right;
    right: 45px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .blog-slider__content {
        top: -80px;
        text-align: center;
        padding: 0 30px;
        right: 0;
    }
}

@media screen and (max-width: 576px) {
    .blog-slider__content {
        padding: 0;
    }
}

.blog-slider__content>* {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.4s;
}

.blog-slider__code {
    color: #7b7992;
    margin-bottom: 15px;
    display: block;
    font-weight: 500;
}

.blog-slider__title {
    font-size: 24px;
    font-weight: 700;
    color: #9331a3;
    margin-bottom: 20px;
    height: 150px;
}

.blog-slider__text {
    color: #4e4a67;
    margin-bottom: 30px;
    width: 330px;
    height: auto;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow-wrap: break-word;
    overflow: hidden;
    display: none;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 0.6;
    text-align: right;
    direction: rtl;
    margin-left: auto;
}

.blog-slider__text img {
    display: none;
}

.blog-slider__text a {
    display: none;
}

.blog-slider__text p[data-f-id="pbf"] {
    display: none;
}

.blog-slider__button {
    display: inline-flex;
    background-image: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
    padding: 15px 35px;
    border-radius: 50px;
    color: #f2f3f7;
    box-shadow: 0px 14px 80px rgba(252, 56, 56, 0.4);
    text-decoration: none;
    font-weight: 500;
    justify-content: center;
    text-align: center;
    letter-spacing: 1px;
}

@media screen and (max-width: 576px) {
    .blog-slider__button {
        width: 100%;
    }
}

.blog-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.blog-slider .swiper-pagination-custom,
.blog-slider .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
}

.blog-slider__pagination {
    position: absolute;
    z-index: 21;
    right: 20px;
    width: 11px !important;
    text-align: center;
    left: auto !important;
    top: 50%;
    bottom: auto !important;
    transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
    .blog-slider__pagination {
        transform: translateX(-50%);
        left: 50% !important;
        top: 205px;
        width: 100% !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 8px 0;
}

@media screen and (max-width: 768px) {
    .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 5px;
    }
}

.blog-slider__pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    display: block;
    border-radius: 10px;
    background: #062744;
    opacity: 0.2;
    transition: all 0.3s;
}

.blog-slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--v2-secondary);
    height: 30px;
    box-shadow: 0px 0px 20px rgb(134 43 176 / 64%);
}

@media screen and (max-width: 768px) {
    .blog-slider__pagination .swiper-pagination-bullet-active {
        height: 11px;
        width: 30px;
    }
    img.blog-slider-back-image {
        width: 50% !important;
        margin-bottom: -339px !important;
        margin-left: unset !important;
    }
}

img.blog-slider-back-image {
    margin-bottom: -511px;
    margin-top: 20px;
    margin-left: -55px;
    width: 719px;
}

.all-news-btn {
    text-align: center;
    margin-top: -90px;
    position: absolute;
    z-index: 1;
    display: inline-block;
    margin-left: 0px;
}


/* ********************* */

.anchor--link {
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-left: auto;
    height: 75px;
}

.anchor--link div a {
    --color: #646b8c;
    position: relative;
    text-decoration: none;
    color: var(--color);
    font-family: "Inter", sans-serif;
    padding: 0.2rem 0;
}

.anchor--link div a::before {
    --line-width: 115%;
    --line-height: 1px;
    --line-easing: ease;
    --line-transition-duration: 300ms;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: var(--line-width);
    height: var(--line-height);
    transform-origin: left;
    transform: scaleX(0);
    background: #abffbe;
    transition: transform var(--line-transition-duration) var(--line-easing);
    z-index: 1;
}

.anchor--link div a:hover::before {
    transform-origin: right;
    transform: scaleX(1);
}

.anchor--link div a:hover span {
    --deg: 45deg;
}

.anchor--link div a:hover span::before {
    transform: rotate(var(--deg));
}

.anchor--link div a:hover span::after {
    transform: translateX(1px) rotate(var(--deg));
}

.anchor--link div a span {
    --line-arrow-width: 1px;
    --line-arrow-height: 6px;
    --line-arrow-easing: cubic-bezier(0.3, 1.5, 0.5, 1);
    --line-arrow-transition-duration: 200ms;
    --line-arrow-transition-delay: 240ms;
    font-family: 'Tajawal';
    color: #d9457a;
    font-weight: bold;
}

.anchor--link div a span::before,
.anchor--link div a span::after {
    content: "";
    position: absolute;
    left: -18%;
    bottom: 0px;
    background: #abffbe;
    transition: transform var(--line-arrow-transition-duration) var(--line-arrow-easing);
    transition-delay: var(--line-arrow-transition-delay);
    z-index: 2;
}


/* .anchor--link div a span::before {
    width: 2px;
    height: 10px;
    transform-origin: 100% 100%;
    transform: rotate(45deg);
}

.anchor--link div a span::after {
    height: 2px;
    width: 10px;
    transform-origin: 0% 0%;
    transform: translateX(1px) rotate(45deg);
} */

.support {
    position: absolute;
    left: 10px;
    bottom: 10px;
    padding: 10px;
    display: flex;
}

.support a {
    margin: 0 10px;
    color: #333333;
    font-size: 1.8rem;
    backface-visibility: hidden;
    transition: all 150ms ease;
}

.support a:hover {
    transform: scale3d(1.1);
}


/* last_news_section */


/* end  */


/* start */


/* opportunities */

.opportunities-head {
    margin: 90px 80px 60px;
    text-align: center;
    font-family: 'Tajawal';
}

.opportunities-title {
    font-size: 25px;
    font-weight: bold;
    color: #919191;
}

span.quotation-mark {
    font-size: 50px;
    font-family: arial;
}

.opportunities-des {
    font-size: 19px;
    font-weight: bold;
    color: #d3279a;
}

.opportunities-cont {
    max-width: 90%;
    margin: 40px auto;
    overflow: hidden;
}

.container.opportunities-cont {
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    min-height: 500px;
}

.opportunity-grid {
    position: relative;
    float: right;
    overflow: hidden;
    background-image: linear-gradient(to top, rgb(26 2 49), rgb(116 16 111 / 80%));
    border-radius: 15px;
    margin: 20px;
    max-width: 330px;
    max-height: 230px;
    font-family: 'Tajawal', sans-serif;
    box-shadow: 0 0 1px 0 rgb(24 94 224 / 15%), 0 6px 12px 0 rgb(0 0 0 / 23%);
}

.opportunity-grid-image {
    position: relative;
    display: block;
    height: 230px;
    max-width: 100%;
    opacity: 0.2;
}

.opportunity-grid-content {
    padding: 1em;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: right;
}

.opportunity-grid-content::before,
.opportunity-grid-content::after {
    pointer-events: none;
}

.opportunity-grid-link {
    position: reletive;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    /* text-indent: 200%; */
    white-space: nowrap;
    cursor: pointer;
    font-size: 15px;
    opacity: 1;
}

.opportunity-grid-title {
    letter-spacing: -1px;
    font-weight: 300;
    margin: 0;
    padding: 0.25em 0;
    line-height: 1;
}

.opportunity-grid-title span {
    font-weight: 800;
}

.opportunity-tag {
    display: inline-block;
    font-size: 0.7em;
    padding: 0.4em 1.5em;
    background: #974db9;
    border-radius: 19px;
    color: #ffffff;
    font-weight: bold;
}

.opportunity-grid h2,
.opportunity-grid p {
    margin: 0;
}

.opportunity-grid p {
    letter-spacing: 1px;
    font-size: 68.5%;
    height: 6.25em;
    overflow: hidden;
    color: #ffffff;
    display: inline;
}

a.opportunity-grid-link.btn.btn-light.radius {
    color: #000;
    width: 100px;
    padding: 10px !important;
    justify-self: left;
    margin-top: 15px;
}

a.opportunity-grid-link.btn.btn-danger.radius {
    width: 100px;
    padding: 10px !important;
    justify-self: left;
    margin-top: 15px;
}

.effect-image {
    max-width: none;
    width: -webkit-calc(100% + 50px);
    width: calc(100% + 50px);
    opacity: 0.2;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(40px, 0, 0);
    transform: translate3d(40px, 0, 0);
}

.effect-target {
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
}

.effect-target {
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
}

.effect-text {
    color: rgba(255, 255, 255);
    opacity: 0;
    -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
    transition: opacity 0.2s, transform 0.35s;
}

.effect-move:hover .effect-text {
    opacity: 1;
}

.effect-move:hover .effect-image {
    opacity: 0.3;
    background: #4a1b5f;
}

.effect-move:hover .effect-target,
.effect-move:hover .effect-image {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.effect-move:hover .effect-text {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
}


/* tabs *******************************/

.options-tabs * {
    z-index: 2;
}

input[type=radio] {
    display: none;
}

.options-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    width: 200px;
    font-size: 1.25rem;
    font-weight: 500;
    border-radius: 99px;
    cursor: pointer;
    transition: color 0.15s ease-in;
}

.notification {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-right: 0.75rem;
    border-radius: 50%;
    background-color: #abffbe;
    transition: 0.15s ease-in;
}

input[type=radio]:checked+label {
    color: #ffffff;
}

input[type=radio]:checked+label>.notification {
    background-color: #abffbe;
    color: #fff;
}

.radio-input-1:checked~.glider {
    transform: translateX(0);
}

.radio-input-2:checked~.glider {
    transform: translateX(-100%);
}

.radio-input-3:checked~.glider {
    transform: translateX(-200%);
}

.radio-check-2 {
    background-color: #000 !important;
}

.glider {
    position: absolute;
    display: flex;
    height: 54px;
    width: 200px;
    background: linear-gradient(to left, var(--v2-primary), var(--v2-secondary)) !important;
    z-index: 1 !important;
    border-radius: 99px;
    transition: 0.25s ease-out;
}

.tabs-body {
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 95px;
}

.options-tabs {
    display: flex;
    position: relative;
    background-color: #fff;
    box-shadow: 0 0 1px 0 rgba(24, 94, 224, 0.15), 0 6px 12px 0 rgba(24, 94, 224, 0.15);
    padding: 0.75rem;
    border-radius: 99px;
}

@media (max-width: 700px) {
    .options-tabs {
        transform: scale(0.6);
        border-radius: 0 !important;
    }
    .tabs-body {
        margin-top: 75px;
    }
    .service-form-home .options-tabs {
        transform: scale(0.8);
        border-radius: 99px !important;
    }
    .service-form-home .options-tab {
        font-size: 16px !important;
    }
    .service-form-home .glider {
        width: calc(30vw - 7px);
    }
    .service-form-home input[id=radio-2]:checked~.glider {
        transform: translateX(calc(-34vw + -10px));
    }
    .service-form-home .col-contact-form .card {
        padding: 0;
    }
}

@media (max-width: 350px) {
    .service-form-home input[id=radio-2]:checked~.glider {
        transform: translateX(calc(-34vw + 20px));
    }
}

@media (max-width: 570px) {
    .tabs-body {
        margin-top: 59px;
    }
}


/* end tabs*********************** */


/* opportunities */


/* end  */


/* start */


/* partners_section */

.fixed-image-bg-main {
    /* background-image: linear-gradient(rgb(101 4 148 / 1000%), rgb(0 0 0 / 69%)), url("../public/images/bg-04.jpg"); */
    background-image: linear-gradient(to left, #eeeeee, #ffffff);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    box-shadow: 1px -11px 20px 0px;
}

.our-partner-main {
    height: 85vh;
}

.partner-section-about {
    text-align: center;
    padding: 80px 50px;
    color: #7d1010;
    font-size: 18px;
    font-weight: bold;
}

.service-requist-about-des {
    color: #d1467f;
}

.partner-section-head-title {
    font-size: 35px;
    padding-bottom: 7px;
    display: inline-block;
}

.our-partner-main>svg {
    width: 378px !important;
    top: -5px !important;
    right: -850px !important;
    z-index: 0 !important;
    position: relative;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 10));
    }
}

.block-partner {
    height: auto;
    background-color: #ffffff;
    width: 95%;
    max-width: 85vh;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    box-shadow: 0px 0px 9px 0px;
    padding: 20px;
    margin-bottom: 40px;
    margin-top: -40px;
}

.customer-logos {
    background-color: #ffffff;
    height: auto;
    width: 100%;
    max-width: 85vh;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    padding: 15px 50px;
}

.customer-logos-left {
    background-color: #f2f3f7;
    height: auto;
    width: 100%;
    max-width: 85vh;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    padding: 15px 50px;
}

.wrapper {
    display: block;
}


/* Slider */

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
    object-fit: contain;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.customer-logos::before,
.customer-logos::after {
    height: 100%;
    width: 140px;
    position: absolute;
    content: "";
    background: linear-gradient(to right, white 30%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.customer-logos::before {
    left: 0;
    top: 0;
}

.customer-logos::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.customer-logos-left::before,
.customer-logos-left::after {
    height: 100%;
    width: 200px;
    position: absolute;
    content: "";
    background: linear-gradient(to right, white 30%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.customer-logos-left::before {
    left: 0;
    top: 0;
}

.customer-logos-left::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}


/* partners_section */


/* end */


/* start */


/* product_section */

:root {
    --w: 1200ms;
    --e: cubic-bezier(0.19, 1, 0.22, 1);
}

.products-grid {
    display: grid;
    margin-top: 60px;
    padding-bottom: 35px;
    place-items: center;
    height: auto;
    min-height: auto;
    box-sizing: border-box;
    /* background-image: url(../public/images/join-us-back.png);
            background-size: contain;
            background-repeat: no-repeat;
            background-position: bottom left; */
}

.page-content-body-cards {
    display: grid;
    grid-gap: 1rem;
    padding: 1rem;
    max-width: 1024px;
    margin: 0 auto;
    font-family: "tajawal";
}

@media (min-width: 600px) {
    .page-content-body-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 800px) {
    .page-content-body-cards {
        grid-template-columns: repeat(3, 1fr);
        grid-row-gap: 10px;
        grid-column-gap: 80px;
        grid-row-gap: 50px;
    }
}

.product-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 1rem;
    border-radius: 15px;
    width: 100%;
    text-align: center;
    color: var(--v2-primary);
    background-image: linear-gradient(to bottom, var(--v2-primary), var(--v2-secondary));
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
}

@media (min-width: 600px) {
    .product-card {
        height: 350px;
    }
}

.product-card:before {
    content-body-cards: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    background-size: cover;
    background-position: 0 0;
    transition: transform calc(var(--w) * 1.5) var(--e);
    pointer-events: none;
}

.product-card:after {
    content-body-cards: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    pointer-events: none;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.009) 11.7%, rgba(0, 0, 0, 0.034) 22.1%, rgba(0, 0, 0, 0.072) 31.2%, rgba(0, 0, 0, 0.123) 39.4%, rgba(0, 0, 0, 0.182) 46.6%, rgba(0, 0, 0, 0.249) 53.1%, rgba(0, 0, 0, 0.32) 58.9%, rgba(0, 0, 0, 0.394) 64.3%, rgba(0, 0, 0, 0.468) 69.3%, rgba(0, 0, 0, 0.54) 74.1%, rgba(0, 0, 0, 0.607) 78.8%, rgba(0, 0, 0, 0.668) 83.6%, rgba(0, 0, 0, 0.721) 88.7%, rgba(0, 0, 0, 0.762) 94.1%, rgba(0, 0, 0, 0.79) 100%);
    transform: translateY(-50%);
    transition: transform calc(var(--w) * 2) var(--e);
}

.content-body-cards {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 1rem;
    transition: transform var(--w) var(--e);
    z-index: 1;
    background-image: linear-gradient(to bottom, rgb(255 255 255), rgb(255 255 255 / 70%));
    border-radius: 25px;
}

.content-body-cards>*+* {
    margin-top: 1rem;
}

h2.card-title-logo {
    font-size: 9.3rem;
    line-height: 0.5;
    font-family: "Glyphter";
}

.card-copy {
    font-family: "tajawal";
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

p.card-copy {
    color: #000;
}

@media (hover: hover) and (min-width: 600px) {
    .product-card:after {
        transform: translateY(0);
    }
    .content-body-cards {
        transform: translateY(calc(100% - 5.5rem));
    }
    .content-body-cards>*:not(.card-title-logo) {
        opacity: 0;
        transform: translateY(1rem);
        transition: transform var(--w) var(--e), opacity var(--w) var(--e);
    }
    .product-card:hover,
    .product-card:focus-within {
        align-items: center;
    }
    .product-card:hover:before,
    .product-card:focus-within:before {
        transform: translateY(-4%);
    }
    .product-card:hover:after,
    .product-card:focus-within:after {
        transform: translateY(-50%);
    }
    .product-card:hover .content-body-cards,
    .product-card:focus-within .content-body-cards {
        transform: translateY(0);
    }
    .product-card:hover .content-body-cards>*:not(.card-title-logo),
    .product-card:focus-within .content-body-cards>*:not(.card-title-logo) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: calc(var(--w) / 8);
    }
    .product-card:focus-within:before,
    .product-card:focus-within:after,
    .product-card:focus-within .content-body-cards,
    .product-card:focus-within .content-body-cards>*:not(.card-title-logo) {
        transition-duration: 0s;
    }
}

img.product-image-src {
    width: 90%;
    position: absolute;
    z-index: 1;
    height: 90%;
    object-fit: contain;
    z-index: 1;
    object-position: top;
    inset: auto;
    display: table-cell;
    vertical-align: top;
}

.product-image-p {
    width: 100%;
    display: flex;
    height: 100%;
}

img.product-logo-inside {
    opacity: 1 !important;
    max-width: 90%;
}


/* product_section */


/* end */


/* start */


/* programs_initiatives */

.programs-section {
    color: #4f585e;
    font-family: 'Tajawal', sans-serif;
    text-rendering: optimizeLegibility;
    direction: rtl;
    padding: 10px 10px 0px 10px;
    background-color: transparent;
}

div.programs {
    margin: 10px auto 150px auto;
    max-width: 960px;
    text-align: center;
}

div.program {
    background: #ffffff;
    display: inline-block;
    margin: 8px;
    max-width: 300px;
    perspective: 1000;
    position: relative;
    text-align: right;
    transition: all 0.3s 0s ease-in;
    width: 300px;
    z-index: 1;
    border-radius: 0 0 20px 20px;
    box-shadow: 1px 1px 20px 1px #8c8c8c;
}

img.program-image {
    max-width: 300px;
}

.program-image-logo {
    z-index: 1;
    height: 225px;
    display: table-cell;
    vertical-align: middle;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    text-align: center;
    width: 300px;
}

div.program .program__image-holder {
    height: 0;
    padding-bottom: 75%;
    background-image: linear-gradient(to bottom, rgb(0 0 0), rgb(0 0 0));
    text-align: center;
}

div.program div.program-title {
    background: #ffffff;
    padding: 9px 5px 10px 15px;
    position: relative;
    z-index: 0;
    height: 85px;
    border-radius: 0 0 20px 20px;
}

div.program div.program-title a.toggle-info {
    border-radius: 32px;
    height: 32px;
    padding: 0;
    position: absolute;
    left: 15px;
    top: 25px;
    width: 32px;
    background: linear-gradient(to left, var(--v2-primary), var(--v2-secondary)) !important;
    border: 0.5px solid #c1c1c1;
}

div.program div.program-title a.toggle-info span {
    background: #ffffff;
    display: block;
    height: 2px;
    position: absolute;
    top: 16px;
    transition: all 0.15s 0s ease-out;
    width: 12px;
    margin: 0 -1.4px;
}

div.program div.program-title a.toggle-info span.left {
    left: 14px;
    transform: rotate(-45deg);
}

div.program div.program-title a.toggle-info span.right {
    right: 14px;
    transform: rotate(45deg);
}

div.program div.program-title h2 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.05em;
    margin: 0;
    padding: 0;
}

div.program div.program-title h2 small {
    display: block;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.025em;
}

div.program div.program-description {
    padding: 15px 15px 18px;
    position: relative;
    font-size: 14px;
}

div.program .program-actions {
    padding: 10px 15px 20px;
    text-align: center;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

div.program div.program-flap {
    background: #d9d9d9;
    position: absolute;
    width: 100%;
    transform-origin: top;
    transform: rotateX(-90deg);
}

div.program div.flap1 {
    transition: all 0.3s 0.3s ease-out;
    z-index: -1;
}

div.program div.flap2 {
    transition: all 0.3s 0s ease-out;
    z-index: -2;
}

div.programs.showing div.program {
    cursor: pointer;
    opacity: 0.6;
    transform: scale(0.88);
}

.no-touch div.programs.showing div.program:hover {
    opacity: 0.94;
    transform: scale(0.92);
}

div.program.show {
    opacity: 1 !important;
    transform: scale(1) !important;
}

div.program.show div.program-title a.toggle-info {
    background: linear-gradient(to left, var(--v2-primary), var(--v2-secondary)) !important;
}

div.program.show div.program-title a.toggle-info span {
    top: 15px;
}

div.program.show div.program-title a.toggle-info span.left {
    left: 10px;
}

div.program.show div.program-title a.toggle-info span.right {
    right: 10px;
}

div.program.show div.program-flap {
    background: #ffffff;
    transform: rotateX(0deg);
    margin-top: -16px;
}

div.program.show div.flap1 {
    transition: all 0.3s 0s ease-out;
}

div.program.show div.flap2 {
    transition: all 0.3s 0.2s ease-out;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 10px 15px 20px;
    text-align: center;
}

.program-block {
    height: 225px;
    position: absolute;
}

img.program-image {
    height: 225px;
    width: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.program-logo-image {
    width: 100%;
    object-fit: cover;
    max-width: 200px;
    opacity: 1 !important;
    z-index: 2;
    position: relative;
}

.program-head {
    text-align: center;
    padding: 10px;
}

.program-head-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--v2-primary);
}

.program-short-des {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.program-name {
    color: var(--v2-secondary);
    font-size: 1.2rem;
    font-weight: 700;
    width: 230px;
    height: 70px;
    display: table-cell;
    vertical-align: middle;
    padding-right: 5px;
}


/* programs_initiatives */


/* end */


/* start */


/* programs_services */

.program-head {
    text-align: center;
    padding: 10px;
}

.program-head-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--v2-primary);
}

.program-short-des {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

figure.snip1174 {
    font-family: 'tajawal', sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin: 10px;
    min-width: 220px;
    max-width: 295px;
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: right;
    border-radius: 17px;
    height: 295px;
}

figure.snip1174 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

figure.snip1174 img {
    max-width: 100%;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    vertical-align: top;
    opacity: 0.3;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    object-fit: cover;
    height: 295px;
}

figure.snip1174 figcaption {
    position: absolute;
    padding: 40px 25px;
    top: 0;
    right: 0;
}

figure.snip1174 h2,
figure.snip1174 p {
    margin: 0;
    padding: 0;
    color: #ffffff;
}

figure.snip1174 h2 {
    margin-bottom: 10px;
    display: inline-block;
    font-weight: 700;
    font-size: 1.8em;
    height: 80px;
}

figure.snip1174 p {
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.4em;
    height: 50px;
}

figure.snip1174 a {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #ffffff;
    text-decoration: none;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 0.8em;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    opacity: 0;
    border-radius: 20px;
}

figure.snip1174 a:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

figure.snip1174.blue-card {
    background-color: #20638f;
}

figure.snip1174.yellow-card {
    background-color: #c87f0a;
}

figure.snip1174.green {
    background-color: #1e8449;
}

figure.snip1174.navy {
    background-color: #222f3d;
}

figure.snip1174.red-card {
    background-color: #962d22;
}

figure.snip1174:hover img,
figure.snip1174.hover-card img {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
}

figure.snip1174:hover a,
figure.snip1174.hover-card a {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}


/* programs_services */


/* end */


/* start */


/* services_modal */

div#slogan {
    margin: 40px 10px;
    color: #ffffff;
    font-size: 25px;
    text-align: right;
}


/* typed cursor */

.typed-cursor {
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}

.partner-section-about-des {
    font-size: 24px;
    padding-top: 10px;
    color: #f2f3f7;
}

.revers-title-slogan {
    color: #ffffff;
    font-weight: bolder;
    padding: 3px 5px;
    border-radius: 5px;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/* services_modal */


/* end */


/* start */


/* sidebar */

.sidebar-view {
    position: fixed;
    top: 50%;
    left: -354px;
    transform: translateY(-50%);
    width: 354px;
    height: auto;
    padding: 2px;
    background-color: var(--v2-primary);
    box-shadow: 0 20px 50px rgb(0 0 0 / 50%);
    box-sizing: border-box;
    transition: .5s;
    z-index: 1001;
}

.sidebar-view.active {
    left: 0px;
}

.sidebar-view input,
.sidebar-view textarea {
    width: 100%;
    height: 36px;
    padding: 5px;
    margin-bottom: 10px;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, .5);
    outline: none;
}

.sidebar-view textarea {
    height: 60px;
    resize: none;
}

.sidebar-view input[type="submit"] {
    background-color: #00BCD4;
    color: #FFFFFF;
    cursor: pointer;
    border: none;
    font-style: 18px;
}

.sidebar-view h2 {
    margin: 0px;
    padding: 12px 0px;
    font-size: 20px;
}

.toggle {
    position: absolute;
    top: 0;
    right: -48px;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    cursor: pointer;
    background-color: var(--v2-primary);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.toggle::before {
    content: '\f144';
    font-family: fontAwesome;
    color: #FFFFFF;
    font-size: 18px;
}

.toggle.active::before {
    content: '\f00d';
}

@media (max-width: 768px) {
    .sidebar-view {
        width: 305px;
        height: 460px;
        left: -310px;
        border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;
    }
    .sidebar-view iframe {
        width: 300px !important;
        height: 300px !important;
    }
    .toggle {
        border-radius: 30px;
    }
    .sidebar-view .toggle {
        top: 50%;
        transform: translateY(-50%);
        transition: .5s;
    }
    .sidebar-view.active .toggle {
        top: 0;
        right: 0;
        transform: translateY(0);
    }
    .scroll {
        width: 100%;
        height: 100%;
        overflow-y: auto;
    }
}

.ad-elemant {
    max-width: 350px;
    height: auto;
    max-height: 350px;
}

.ad-image {
    max-width: 350px;
    object-fit: contain;
    height: auto;
    max-height: 350px;
}

.ad-video {
    max-width: 350px;
    height: auto;
    max-height: 350px;
}

.ad-title {
    text-align: center;
    color: #ffffff;
    font-weight: bold;
    background-color: var(--v2-primary);
}

.sidebar-element-title {
    color: #ffffff;
    text-align: center;
    padding: 5px 20px;
    font-size: 25px;
}

.sidebar-element-des {
    color: #fff;
    text-align: center;
    padding: 5px 20px;
}


/* sidebar */


/* end */


/* start */


/* strategies */

.main-strategies {
    height: auto;
    width: 100%;
    display: inline-block;
    background-color: #ffffff;
    margin: 20px 0px;
    border-radius: 15px;
    box-shadow: 2px -1px 20px 0px;
}

.el-strategies {
    display: flex;
    padding: 32px;
    justify-content: center;
    align-items: center;
    color: #434343;
    font-size: 18px;
}

.el-strategies .el-strategy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    width: 100%;
    height: 230px;
}

.el-strategies-head {
    padding: 35px 15px 10px 15px;
    text-align: center;
}

.el-strategies-title {
    font-size: 30px;
    font-weight: bold;
    color: #686868;
}

.el-strategies .el-strategy .el-strategy-icon {
    width: 64px;
    height: 64px;
}

.el-strategies .el-strategy img {
    width: 100%;
}

.el-strategies .el-strategy h4 {
    font-size: 100%;
    margin: 16px 0;
}

.el-strategies .el-strategy span {
    font-weight: 300;
    max-width: 240px;
    font-size: 80%;
    margin-bottom: 16px;
}

.el-strategies .el-strategy button {
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    border-radius: 32px;
    border: 0;
    cursor: pointer;
    font-size: 80%;
    font-weight: 500;
    color: #fff;
    margin-bottom: 16px 0;
}

.el-strategies .el-strategy.rattata button {
    background: linear-gradient(to right, #9F66FF, #DFCBFF);
}

.el-strategies .el-strategy.jigglypuff button {
    background: linear-gradient(to right, #FE5F8F, #FFC7D9);
}

.el-strategies .el-strategy.dewgong button {
    background: linear-gradient(to right, #3E8AFF, #BBDEFF);
}

.el-strategies .el-strategy.rattata {
    box-shadow: 20px 20px 50px -30px #DBC4FF;
}

.el-strategies .el-strategy.jigglypuff {
    box-shadow: 20px 20px 50px -30px #FFC1D5;
}

.el-strategies .el-strategy.dewgong {
    box-shadow: 20px 20px 50px -30px #AFD6FF;
}

@media screen and (max-width: 720px) {
    .el-strategies {
        flex-direction: column;
    }
    .el-strategies .el-strategy {
        margin-left: 0;
    }
    .el-strategies .el-strategy:last-child {
        margin-bottom: 0;
    }
}

.el-strategy-icon .far,
.el-strategy-icon .fab,
.el-strategy-icon .fas {
    color: #ffffff;
    padding: 15px 17px;
    background-color: #abffbe;
    font-size: 23px;
    border-radius: 18px;
}


/* strategies */


/* end */


/* strat */


/* subscribe_section */

.subscribe-main {
    background-color: #f2f3f7;
    min-height: 95vh;
    display: block;
    height: auto;
}

.subscribe-block {
    width: 38vw;
    height: 290px;
    margin: -56px;
    padding: 10px 50px;
    background-color: #f2f3f7;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
    text-align: center;
    z-index: 0;
}

.subscribe-block-1 {
    width: 42vw;
    display: none;
    height: auto;
    margin: -56px;
    padding: 10px 50px;
    background-color: #f2f3f7;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
    text-align: center;
    z-index: 0;
}

@media (max-width: 790px) {
    .subscribe-block {
        width: 55vw;
    }
    .subscribe-block-1 {
        width: 55vw;
    }
}

@media (max-width: 520px) {
    .subscribe-block {
        width: 75vw;
    }
    .subscribe-block-1 {
        width: 75vw;
    }
}

@media (max-width: 420px) {
    .subscribe-block {
        width: 82vw;
    }
    .subscribe-block-1 {
        width: 82vw;
    }
}

@media (max-width: 1012px) {
    .subscribe-block-1 {
        display: unset;
        margin: 3px;
    }
    .subscribe-block {
        display: none;
    }
    .container-subscribe {
        margin: 8px;
    }
    .new-maillest {
        margin-bottom: 0;
    }
}

.subscribe-title {
    font-size: 30px;
    margin-bottom: 10px;
    color: #a02828;
    font-weight: bolder;
}

.subscribe-des {
    font-size: 18px;
    color: #818181;
    width: 98%;
}

.new-maillest {
    background: linear-gradient(rgba(44, 44, 44, 0.9), rgba(160, 160, 160, 0.651));
    background-size: cover !important;
    background-attachment: fixed !important;
    min-height: 95vh;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    height: auto;
    border-bottom: 0px solid black;
    padding: 50px 0;
}

@media (max-width: 1010px) {
    .new-maillest {
        display: grid;
        justify-items: center;
    }
}


/* === Container Styles === */

.container-subscribe {
    width: 280px;
    margin: 10px;
    padding: 40px;
    height: 340px;
    background-color: #7d1010;
    background-image: linear-gradient(to bottom, var(--v2-primary), var(--v2-secondary));
    border-radius: 40px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    text-align: center;
}

#Subscribe-mail {
    z-index: 1;
}

#Subscribe-whatsapp {
    z-index: 1;
}

.container-subscribe form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-subscribe input {
    margin: 8px;
    width: 180px;
}

.container-subscribe input[type=field] {
    border: 0px;
    border-bottom: 3px solid #f5e5e5;
    background-color: transparent;
    font-size: 16px;
    color: #f5e5e5;
    padding: 5px;
    transition: 0.5s;
    text-align: center;
}

.container-subscribe input[type=field]:hover {
    width: 200px;
}

input::placeholder {
    color: #f5e5e5;
}

.sub-head {
    color: #f2f3f7;
    font-size: 18px;
}

.sub-text {
    color: #f2f3f7;
    font-size: 15px;
}

.container-subscribe .far,
.container-subscribe .fab {
    color: #f5e5e5;
    padding: 14px;
    font-size: 40px;
}


/* subscribe_section */


/* end */


/* start */


/* testimonial */

.testimonial-main {
    background-image: linear-gradient(#7d1010, #7d1010), url("/assets/front/images/east.png");
    padding: 50px 0;
    background-size: cover;
    background-attachment: fixed;
}

.testimonial {
    text-align: center;
    color: #353535;
    margin: 80px 30px;
    padding: 30px 40px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
}

.testimonial:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f2f3f7;
    border-radius: 30px;
    z-index: -1;
}

.testimonial:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--v2-primary);
    border-radius: 30px;
    transform: rotate(-7deg);
    z-index: -2;
    box-shadow: 1px 1px 11px 0px #202020;
}

.testimonial .pic {
    display: inline-block;
    margin-bottom: 10px;
    width: 190px;
    height: 130px;
}

.testimonial .pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonial .testimonial-content {
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 18px;
    color: #4d4d4d;
}

@media (max-width: 760px) {
    .testimonial .testimonial-content {
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 20px;
    }
    .testimonial-content p {
        font-size: 14px;
        color: #4d4d4d;
    }
    h3.testimonial-title {
        font-size: 14px;
    }
    .testimonial .testimonial-title a {
        font-size: 14px;
    }
}

.testimonial .testimonial-title a {
    display: inline-block;
    color: var(--v2-primary);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.testimonial .testimonial-title small {
    color: #353535;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.owl-theme .owl-controls {
    margin-top: 0px;
    margin-left: 10px;
    text-align: center;
}

.owl-theme .owl-controls .owl-buttons div {
    display: inline-block;
    opacity: 1;
    background: var(--v2-primary);
    color: #ffffff;
    border-radius: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-right: 5px;
    box-shadow: 1px 1px 11px 0px #202020;
}

.owl-prev:before,
.owl-next:before {
    content: "\f060";
    font-family: 'FontAwesome';
    font-size: 20px;
}

.owl-next:before {
    content: "\f061";
}

.testimonial-section-about {
    text-align: center;
    padding: 10px;
    color: #f2f3f7;
    font-size: 18px;
    font-weight: bold;
    direction: rtl;
}

.testimonial-section-head-title {
    font-size: 35px;
    padding-bottom: 7px;
    display: inline-block;
}


/* testimonial */


/* end */


/* strat */


/* values_section */

.main-values {
    height: auto;
    width: 100%;
    display: inline-block;
    margin: 20px 0px;
    border-radius: 15px;
}

.el-values {
    display: flex;
    padding: 32px;
    justify-content: center;
    align-items: center;
    color: #434343;
    font-size: 18px;
}

.el-values .el-value {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 153px;
    width: 200px;
    height: 200px;
    margin: 11px;
    box-shadow: 2px -1px 20px 0px;
}

.el-values-head {
    padding: 0px 15px;
    text-align: right;
}

.el-values-title {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0;
    padding-bottom: 0;
    line-height: 35px;
}

.el-values .el-value .el-value-icon {
    width: 64px;
    height: 64px;
}

.el-values .el-value img {
    width: 100%;
}

.el-values .el-value h4 {
    font-size: 100%;
    margin: 16px 0;
}

.el-values .el-value span {
    font-weight: 300;
    max-width: 240px;
    font-size: 80%;
    margin-bottom: 16px;
}

.el-values .el-value button {
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    border-radius: 32px;
    border: 0;
    cursor: pointer;
    font-size: 80%;
    font-weight: 500;
    color: #fff;
    margin-bottom: 16px 0;
}

.el-values .el-value.rattata button {
    background: linear-gradient(to right, #9F66FF, #DFCBFF);
}

.el-values .el-value.jigglypuff button {
    background: linear-gradient(to right, #FE5F8F, #FFC7D9);
}

.el-values .el-value.dewgong button {
    background: linear-gradient(to right, #3E8AFF, #BBDEFF);
}

.el-values .el-value.rattata {
    box-shadow: 20px 20px 50px -30px #DBC4FF;
}

.el-values .el-value.jigglypuff {
    box-shadow: 20px 20px 50px -30px #FFC1D5;
}

.el-values .el-value.dewgong {
    box-shadow: 20px 20px 50px -30px #AFD6FF;
}

@media screen and (max-width: 720px) {
    .el-values {
        flex-direction: column;
    }
    .el-values .el-value {
        margin-left: 0;
        margin-bottom: 32px;
    }
    .el-values .el-value:last-child {
        margin-bottom: 0;
    }
}

.el-value-icon .far,
.el-value-icon .fab,
.el-value-icon .fas,
.el-value-icon .fal {
    color: #abffbe;
    padding: 7px 2px;
    font-size: 47px;
    border-radius: 18px;
}


/* values_section */


/* end */


/* page Qoute */

.page-qoute {
    width: 90%;
    margin: 50px 20px -20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.page-qoute .qoute-text {
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    line-height: 2;
    color: #828282;
    width: 70%;
}

@media(max-width:671px) {
    .page-qoute .qoute-text {
        width: 100%;
    }
}

.page-qoute:before,
.page-qoute:after {
    color: var(--v2-secondary);
    display: inline-block;
}

.page-qoute:before {
    content: url("../images/right-qoute.png");
}

.page-qoute:after {
    content: url("../images/left-qoute.png");
}

.quote-author {
    color: #abffbe;
    font-size: 20px;
    font-weight: bold;
}

.quote-author:before,
.quote-author:after {
    color: #828282;
    font-size: 25px;
    content: '-';
    font-weight: bold;
}


/* / page Qoute */


/* styel update 7/2/22 */

@media (max-height: 850px) {
    img.blog-slider-back-image {
        height: auto;
        width: 46% !important;
    }
    .last-news-main {
        min-height: 100vh;
    }
    .our-partner-main {
        height: 100vh;
    }
    .partner-section-about {
        padding: 50px 50px;
    }
}

@media (max-height: 600px) {
    .our-partner-main {
        height: 110vh;
    }
}

@media (max-height: 500px) {
    img.blog-slider-back-image {
        visibility: hidden;
    }
    .our-partner-main {
        height: 120vh;
    }
}

.whatsapp-chat {
    background-color: var(--v2-secondary);
}

.navbar-brand {
    padding-top: 1rem;
}

.navbar-fixed .navbar-brand{
    padding-top: 0.40625rem;
    padding-bottom: 0.40625rem;
}

@media (max-width:991.98px) {
    .main-menu.navbar a.navbar-brand {
        padding: 1rem;
        margin-right: 0;
    }
    .navbar .navbar-brand img {
        margin-right: 0;
    }
}

