/*============= Start IS Global--=============*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

.slider-heading {
    transition: transform 0.3s ease;
}

/* fonts  */

@font-face {
    font-family: Tajawal;
    src: url(../fonts/Tajawal-Regular.ttf) format("opentype");
}

@font-face {
    font-family: bold;
    src: url(../fonts/Tajawal-Regular.ttf) format("opentype");
}

a {
    text-decoration: none;
    color: black;
}

a:hover {
    color: rgb(var(--primary-rgb));
}

ul {
    list-style-type: none;
}

/* spacing style  start */
.spacing-styles {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.spacing-styles .spacing-line {
    min-height: 2px;
    flex: 1 0;
    width: 100%;
    background: var(--space-gray);
}

@media screen and (max-width:991px) {
    .spacing-styles {
        align-items: start;
        flex-direction: column;
    }

    .spacing-styles .spacing-line {
        flex: 0 0 0%;
    }
}

/* spacing style  end*/

body,
html {
    scroll-behavior: smooth;
    font-family: Tajawal;
    /* font-family: "Cairo", sans-serif; */
    overflow-x: hidden;
}

:root {
    --bs-primary-rgb:0, 207, 232;
    --title-color: #435363;
    --bg-light: #f5f5f5;
    --bg-light-rgb: 245, 245, 245;
    --gray: #6c7379;
    --text-gray: #6c7379;
    --space-gray: #adadad;
    --text-default: black;
    --border-radius: 4px;
    --nav: 6rem;
    --primary: #00cfe8;
    --primary-rgb: 0 207 232;
    --secandary: #acacac;
    --primaryColor: #d6edec;
    --overlay-bg-rgb: 0, 0, 0;
    --overlay-bg: rgba(0, 0, 0, 0.3);
    --transition: all 0.2s linear;
}

* {
    transition: var(--transition);
    /* transition-property: display, gap, resize, resize-revers, width, backdrop-filter, background, height, margin, transform, left, right, top, bottom, visibility, opacity, min-width !important; */
}

body {
    background-color: var(--bg-light);
}

.clibpath {
    width: 100%;
    position: absolute;
    opacity: 0.3;
}

/* width */

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    /* display: none; */
}

/* Track */

::-webkit-scrollbar-track {
    background-color: rgb(var(--overlay-bg-rgb), 0.1);
    /* display: none; */
}

/* Handle */

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    /* display: none; */
}

/*============= End IS Global--=============*/

/* ========Start Navbar========= */

.navbar {
    /* background:-webkit-linear-gradient(90deg, #11316a 31%, #174390 62%, #7fa1e1 100%);
background:-o-linear-gradient(90deg, #11316a 31%, #174390 62%, #7fa1e1 100%);
background:-moz-linear-gradient(90deg, #11316a 31%, #174390 62%, #7fa1e1 100%);
background:linear-gradient(90deg, #11316a 31%, #174390 62%, #7fa1e1 100%); */
    background: rgb(var(--bs-body-bg-rgb), 0.9) !important;
    backdrop-filter: blur(100px);
    color: black;
    padding: 10px 0;
    width: 100%;
    z-index: 107;
    top:0;
    position: fixed;
}

.fiexd-tab {
    font-size: 14px;
    right: -125px;
    z-index: 108;
    transition: 0.2s all ease-in-out;
    bottom: 50%;
}

.fiexd-tab:hover {
    right: 0;
}

.fiexd-tab button {
    width: 166px;
    border-radius: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    height: 54px;
}

@media screen and (min-width: 1200px) {
    .container-fluid-ext {
        --bs-gutter-x: 70px !important;
    }
}

/* @media screen and (max-width: 993px) {
    .fiexd-tab {
        right: 0;
    }
} */

.container-fluid {
    display: flex;
    align-items: center;
}

.container-fluid-ext {
    --bs-gutter-x: 1.5rem;
    padding-left: calc(var(--bs-gutter-x)* .5);
    padding-right: calc(var(--bs-gutter-x)* .5);
    margin: auto;
}

.container-fluid,
.container-fluid-ext,
.container {
    max-width: 85%;
    width: 100% !important;
}

.navbar ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 95%;
}

.navbar-nav a {
    color: #fff;
}

.dropdown .btn {
    color: black;
    margin-top: 2px;
}

.dropdown:hover>.dropdown-menu {
    display: block;
}

.dropdown:hover>.dropdown-menu a.nav-link {
    color: var(--bs-white);
}

.dropdown:hover>.dropdown-toggle::after {
    rotate: 180deg;
}

.dropdown-menu {
    width: 180px !important;
    border-radius: 18px !important;
    background-color: rgb(0 0 0 / 64%);
    backdrop-filter: blur(150px);
}

.dropdown-menu a.nav-link {
    font-size: 16px !important;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
}

.dropdown-menu a.nav-link:hover {
    color: var(--bs-white) !important;
    margin-right: 5px;
}

.dropdown .btn {
    font-weight: bold;
    font-size: 18px;
    border-color: transparent;
}

.dropdown-item {
    text-align: right;
    transition: all 0.1s linear;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    -ms-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
}

.dropdown-item:hover {
    padding-right: 20px;
}

.nav-item a {
    color: inherit;
    font-family: Tajawal;
    font-size: 20px;
}

.dropdown>.dropdown-toggle:active {
    pointer-events: none;
}

.dropdown-toggle::after {
    content: "\ea4a";
    font-family: "boxicons", serif;
    font-weight: 900;
    border: 0 !important;
    transition: 0.3s all ease-in-out;
}

.navbar-brand {
    margin: 0;
}

.navbar-brand img {
    max-width: 75px;
    height: auto
}

.nav-item .active {
    color: #fff !important;
}

.nav-item .active {
    position: relative;
    color: #fff;
}

/* hover nav */

li {
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
}

.list-style-circle {
    list-style: circle !important;
    transition: 0.3s all ease-in-out !important;
    font-size: 14px;
}

.list-style-circle::marker {
    font-size: 15px;
}

.underline {
    background: linear-gradient(0deg, var(--primary), var(--primary)) no-repeat right bottom / 0 var(--bg-h);
    transition: background-size 350ms;
    --bg-h: 100%;
    -webkit-transition: background-size 350ms;
    -moz-transition: background-size 350ms;
    -ms-transition: background-size 350ms;
    -o-transition: background-size 350ms;
}

.underline:where(:hover, :focus-visible) {
    background-size: 100% var(--bg-h);
    background-position-x: left;
    color: var(--gold);
}

.underline {
    padding-bottom: 2px;
    --bg-h: 2px;
}

.nav-item:hover:not(.active) {
    transform: matrix(1, 0, 0, 1, 0, -4);
    -ms-transform: matrix(1, 0, 0, 1, 0, -4);
    -webkit-transform: matrix(1, 0, 0, 1, 0, -4);
    -moz-transform: matrix(1, 0, 0, 1, 0, -4);
    -o-transform: matrix(1, 0, 0, 1, 0, -4);
}

/* Hover BTN*/

.tow_button {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 20px;
}

.btn_subs {
    box-shadow: none;
    font-size: 20px;
    width: 120px;
}

.ani_btn {
    border-radius: 5px;
    background: var(--primary);
    /* background: linear-gradient(90deg, #1da9bf 0%, #5687c6 100%); */
    border: none;
    color: var(--bs-white);
    font-family: Tajawal;
    font-size: 18px;
    font-style: normal;
    line-height: normal;
    padding: 5px;
    transition: all 0.5s;
    cursor: pointer;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.ani_btn {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

/*
.ani_btn:after {
content: '»';
position: absolute;
opacity: 0;
top: 2px;
right: -20px;
transition: 0.5s;
}
*/

.ani_btn:hover {
    background: rgb(var(--primary-rgb)/ 70%);
    color: var(--bs-white);
}

@media (max-width: 992px) {

    /* .nav-item .active  {
  background-color: red;
} */
    .navbar-nav {
        background-color: var(--black);
        padding: 20px;
        margin-top: 10px !important;
        text-align: center;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
    }

    .nav-item {
        margin: auto;
        padding: 5px 0;
    }

    .tow_button {
        gap: 10px;
        margin-right: 2px;
    }

    /* .container{
  padding: 0 50px;
} */
}

@media (min-width: 993px) and (max-width: 1300px) {
    ul {
        width: 100%;
        gap: 1px;
    }

    .nav-item a {
        font-size: 16px;
    }

    .navbar .container-fluid {
        width: 100%;
    }
}

/* ========End Navbar========= */

/* - ------------------------------Start header -----------------------------------------------------------*/

.header .container {
    overflow: hidden !important;
}

.header {
    position: relative;
}

.header .content_header {
    width: 28%;
    margin-right: 170px;
    /* padding-top: 15%; */
    padding: 20px;
    color: var(--bs-white);
    border-radius: 21px;
    background: var(--overlay-bg);
}

.header .ani_btn {
    height: auto;
    font-size: .8rem;
    margin-top: 20px;
}

.header .ani_btn:after {
    top: 18%;
}

.header .item_container .item_wrapper {
    /* padding:0 15px; */
    border-radius: 20px;
}

.header .item_container {
    /* max-width: 1300px; */
    border-radius: 15px;
    width: 100%;
    height: auto;
}

.header .img_slider {
    width: 100%;
    height: 100%;
}

.mt-6-5 {
    margin-top: 85px;
}

.header .img_slider img.mobile-image {
    display: none;
}

.header .img_slider img {
    height: auto;
    object-fit: cover;
    object-position: center center;
    width: 100%;
}

.header .img_slider img.desktop-image {
    max-height: 70vh !important;
}

@media screen and (max-width: 950px) {
    .header .img_slider img.desktop-image {
        display: none;
    }

    .header .img_slider img.mobile-image {
        display: block;
        height: auto;
        min-height: 230px;
        max-height: 1080px;
    }
}

.item_prev,
.item_next {
    cursor: pointer;
    display: flex;
    position: absolute;
    width: auto;
    color: white;
    margin: 0.5%;
    transition: all 0.4s linear;
    border-radius: 50%;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    user-select: none;
    background-color: #2810108a;
    padding: 10px 18px;
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity:0;
}

@media screen and (max-width: 992px) and (min-width: 551px) {

    .item_prev,
    .item_next {
        margin-top: 2%;
        padding: 9px 15px;
        height: 40px;
    }

    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 13px;
    }
}

@media screen and (max-width: 550px) and (min-width: 321px) {

    .item_prev,
    .item_next {
        margin-top: 3%;
        padding: 9px 12px;
        height: 33px;
    }

    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 13px !important;
    }
}

@media screen and (max-width: 320px) {

    .item_prev,
    .item_next {
        opacity: 0;
    }
}

/* Position the "next button" to the right */

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 15px;
}

@media (max-width: 767px) {
    .header .item_container {
        width: 100%;
        max-height: auto;
    }

    .header .content_header {
        width: 70%;
        padding-top: 35%;
        color: #fff;
        margin-right: 20px;
    }
}

/* ===================================End Header=========================================- */

/* ===================================Strart  About us========================================= */

.waves-about svg:first-child {}

.waves-about svg path {
    fill: var(--bs-white) !important;
}

.about_us {
    color: var(--text-default);
    position: relative;
    background-color: var(--bs-white);
    /* z-index: 100; */
}

.about_us .container {
    width: 78%;
}

.about_us {
    overflow: hidden;
}

.about_us .clibpath {
    margin-top: 50px;
    width: 180%;
    position: absolute;
    top: -50px;
    z-index: 0;
    opacity: 0.3;
    left: -200px;
    transition: left 0.5s;
}

.about_us .box {
    width: 95%;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 140px;
    border-radius: 15px;
    border: 1px solid var(--space-gray);
    background: linear-gradient(90deg, var(--bg-light) 0%, var(--bs-white) 100%);
    color: var(--text-default);
    padding: 6px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.boxes {
    margin: 70px 0;
    display: flex;
    align-items: center;
}

.about_us .box p {
    font-size: 15px;
}

.about_us .box2 {
    text-align: center;
    border-radius: 15px;
    border: 1px solid #5687c6;
    background: linear-gradient(90deg, #5687c6 0%, #1b77dd 100%);
    color: #fff;
    padding: 15px;
}

.about_us .box2 img {
    margin-bottom: 12px;
}

.about_us .boxes2 {
    margin-top: 100px;
    display: flex;
    align-items: center;
}

@media (max-width: 992px) {
    .about_us {
        margin: -10px 0;
    }

    .about_us .container {
        width: 80%;
    }

    .content_about {
        padding-top: 100px;
        width: 100%;
    }

    .about_us .clibpath {
        margin-top: 50px;
        width: 120%;
    }

    .boxes {
        margin: 40px 0;
    }

    .about_us .box {
        width: 95%;
        min-height: 160px;
        margin: 20px 0;
    }

    .about_us .box2 {
        margin: 20px 0;
    }

    .about_us .boxes2 {
        margin-top: 50px;
    }
}

/* .navbar-toggler  {
border:1px solid #FFF;
} */

/* ===================================ENd  About us========================================= */

/* ===================================Start  Media Center ========================================= */

.media_center {
    color: #fff;
    background-size: cover !important;
    /* padding-bottom: 50px; */
}

.media_center .overlay {
    padding-top: 30px;
    width: 100%;
    height: 100%;
    z-index: 100;
    background-color: var(--bs-white);
    min-height: 850px;
    height: auto;
}

.media_center .overlay.exist {
    background-color: var(--overlay-bg);

}

/* .media_center .title {
    margin-top: 120px;
} */

.container_tab {
    color: #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    position: relative;
}

.tab_box {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-default);
}

.tab_btn {
    position: relative !important;
    font-size: 18px;
    font-weight: 600;
    color: black;
    background: none;
    padding: 18px !important;
    margin: 20px;
    color: var(--text-gray);
    border: none;
    border-bottom: 5px solid transparent;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.tab_btn.active {
    position: relative;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.tab_btn.active::before {
    content: "";
    position: absolute;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    width: 40%;
    height: 4px;
    background-color: var(--primary);
    z-index: 210;
    bottom: -2px;
}

.content_tab {
    display: none;
    animation: moving 0.5s ease;
    -webkit-animation: moving 0.5s ease;
}

@keyframes moving {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0px);
        opacity: 1;
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
    }
}

.content_tab.active {
    display: block;
}

.content_box .box {
    max-width: 410px;
    min-width: 400px;
    min-height: 434px;
    background-color: #fff;
    overflow-x: hidden;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    color: var(--primary);
}

.content_box .boxes {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0;
}

.content_box .box img {
    width: 100%;
    height: 210px;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    object-fit: cover !important;
    object-position: center;
}

.content_box .box .details {
    padding: 13px 20px 20px;
}

.content_box .box h1 {
    font-weight: 700;
    font-size: 27px;
    color: var(--primary) !important;
}

.content_box .box .details p {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--secandary);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
}

.media_center .buttom_box {
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--secandary);
}

.media_center .buttom_box .icon {
    color: var(--secandary);
}

.content_tab .box_bdf {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 0;
}

.content_tab .bdf {
    position: relative;
    /* width: 250px;
    height: 350px; */
    background-color: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

/* .content_tab .bdf::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    height: 50px;
    border-radius: 5px 0px 0px 0px;
    background: #D9D9D9;
} */

.content_tab .center {
    text-align: center;
    padding: 10px;
    display: flex;
    align-items: center;
    color: white;
    justify-content: center;
    border-radius: 5px;
    background: rgba(23, 76, 144, 0.5);
}

.center h5 {
    margin-bottom: 0;
}

.content_tab .report {
    width: 50%;
}

.more {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
    color: var(--text-default);
}

@media (max-width: 767px) {
    .content_box .box {
        width: 380px;
        min-height: 420px;
        background-color: #fff;
        border-radius: 12px;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        -ms-border-radius: 12px;
        -o-border-radius: 12px;
        color: var(--primary);
    }

    .content_tab .box_bdf {
        justify-content: center;
    }

    .content_tab .report {
        width: 100%;
    }

    .tab_btn {
        background: none;
        padding: 3px !important;
        margin: 18px;
    }
}

@media screen and (max-width: 470px) {
    .content_box .box {
        min-width: auto;
    }
}

/* ===================================End  Media Center ========================================= */

/* ===================================Start section  Our_projects=========================================  */

.Our_projects {
    color: #fff;
    width: 100%;
    padding: 80px 0;
}

.Our_projects .h1_general {
    color: var(--primary);
    font-weight: 700;
}

.Our_projects p {
    margin-top: 25px;
}

.Our_projects .title {
    margin: auto;
}

.Our_projects .boxes {
    margin-top: 100px;
    /* height: 600px; */
    width: 100%;
    /* background-color: black; */
    position: relative;
}

.Our_projects .swiper {
    width: 100%;
    height: 100%;
}

.Our_projects .swiper-slide {
    text-align: center;
    font-size: 18px;
    max-width: 500px;
    min-width: 400px;
    width: 20px;
    height: auto;
    padding-bottom: 16px;
    margin: auto;
    border-radius: 5px;
}

.content_slider {
    padding: 2px 15px;
    text-align: start;
}

.Our_projects .buttom_box2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Our_projects .buttom_box2 span {
    color: #fff;
}

.Our_projects .buttom_box2 .icon {
    color: #fff;
}

.content_slider p {
    padding-bottom: 25px;
    border-bottom: 1px solid #fff;
}

.Our_projects .swiper-slide img {
    border-radius: 10px;
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: center center;
}

.response-add-new {
    background-color: rgb(var(--overlay-bg-rgb), 0.5);
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background-color: var(--primary);
    margin-top: 50px;
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--primary);
    width: 18px;
    height: 18px;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0px;
    left: 0;
    width: 100%;
}

.swiper-slide p {
    margin-top: 20px;
}

@media (max-width: 992px) {

    /* .Our_projects .swiper-slide {
  height: 75%;
} */
    .Our_projects .boxes {
        margin-top: 50px;
    }

    .Our_projects .swiper-slide {
        height: auto;
        min-width: 350px;
        width: 300px;
        max-width: 400px;
    }

    .Our_projects .title {
        width: 80%;
        margin: auto;
        padding-left: 0px;
    }
}

/* ===================================End section  Our_projects=========================================  */

/* ===================================Start section  service=========================================  */

.service {
    padding: 40px 0;
    margin: 0 0 40px;
    color: var(--primary);
}

.service .content-description-services * {
    color: var(--title-color);
    font-weight: 500;
    --font-size-default: 2.4rem;
}

.service .content-description-services h1.title {
    font-size: calc(var(--font-size-default) / 1.09);
}

.service .content-description-services .description {
    font-size: calc(var(--font-size-default) / 1.6);

}

.service .more {
    color: var(--text-gray);
    margin-top: 50px;
}

.service .container {
    width: 70%;
}

.service .h1_general {
    font-weight: 700;
}

.service .content {
    margin-top: 60px;
}

.service .box {
    width: 100%;
    max-width: 14.5rem;
    height: 25.375rem;
    flex-direction: column;
    display: flex;
    /* height: auto; */
    /* max-height: 700px; */
    transition: all 0.4s cubic-bezier(.77, 0, .18, 1);
    overflow: hidden;
    min-width: 290px;
    text-align: center;
    /* padding: 10px; */
    border-radius: 20px;
    background: var(--bs-white);
    margin: 25px 0;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    --color-service: var(--primary-rgb);
}

.service .box .text-content {
    flex: 1 1 0;
}

.service .box:hover .actions-content {
    transform: translateY(0);
    /* transform: translateY(0); */
    /* font-size: 20px; */
}

.service .box .actions-content {
    transform: translateY(100%);
    /* transform: translateY(0); */
    /* font-size: 20px; */
}

.overflow-x-auto {
    overflow-x: auto;
    overflow-y: hidden;

}

/* .service .box:hover img {
    height: 0;
    opacity: 0;
} */
.service .box .text-content {
    background: var(--bs-white);
    color: var(--primary);
    bottom: -90%;
    /* transform: translateY(90%); */
    transition: all 0.4s;
    /* font-size: 0px; */
}

.service .box h1 {
    color: rgb(var(--color-service));
    font-size: 20px;
    line-break: normal;
    font-weight: 600;
}

.service .box .logo-content {
    background: rgb(var(--color-service) / .25);
    padding: 12px;
}

.service .box img {
    opacity: 1;
    width: 100%;
    max-height: 115px;
}

.service .box .text-content * {
    position: relative;
}

.service .box p {
    color: var(--title-color);
    font-size: 15px;
    font-weight: 500;
}

.service .box a.ani_btn {
    background: rgb(var(--color-service));
}

.service .box a.ani_btn:hover {
    background: rgb(var(--color-service) / 70%);
}

.service .box .icon-content {
    z-index: 0;
    width: 100%;
    height: auto;
}

.service .box .icon-content svg ,
.service .box .icon-content img {
    min-width: 100% !important;
    max-width: 290px !important;
    max-height: 170px !important;
    stroke: rgb(var(--color-service));
    /* fill: rgb(var(--color-service)); */
}

@media screen and (min-width: 1200px) {

    .service .content-description-services {
        min-width: 450px;
    }

    .service .content-description-services * {
        --font-size-default: 3.5rem !important;
    }
}

@media screen and (min-width:768px) and (max-width:1199px) {
    .service .content-description-services * {
        --font-size-default: 2.8rem !important;
    }
}

@media (max-width: 767px) {
    .service .box {
        width: 100%;
        margin: 20px auto;
    }
}

/* ===================================End section  service=========================================  */

/* ===================================Start section  Photo Gallery========================================= */

.photo_galary {
    background-color: var(--bs-white);
    padding: 50px 0;
    color: var(--primary);
}

.photo_galary .h1_general {
    font-weight: 700;
    font-size: 39px;
}

.photo_galary .container2 {
    width: 65%;
    margin: 80px auto;
}

.photo_galary .container2 .image {
    width: auto;
    object-fit: cover;
    height: 400px;
    border-radius: var(--border-radius);
    margin: 10px 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    -ms-border-radius: var(--border-radius);
    -o-border-radius: var(--border-radius);
}

.photo_galary .container2 .image img {
    border-radius: var(--border-radius);
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    -ms-border-radius: var(--border-radius);
    -o-border-radius: var(--border-radius);
}

.photo_galary .last_img {
    position: relative;
}

.photo_galary .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
}

.overlay h1 {
    color: var(--primary);
    font-weight: bold !important;
}

/* Zoom In #2 */

.photo_galary .image:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

@media (max-width: 767px) {
    .photo_galary .container2 {
        width: 80%;
        margin: 80px auto;
    }
}

/* ===================================End section  Photo Gallery========================================= */

/* ===================================Start section  video Gallery========================================= */

.video_galary {
    padding: 30px 0 0;
    color: var(--primary);
}
 .video_content {
    cursor: pointer;
}

.video_content.first  {
    max-width:600px
}

 .video_content img {
    border-radius: 15px;
}


.video_galary .h1_general {
    font-weight: 700;
    font-size: 39px;
}

.container_video {
    margin: 20px 0;
    height: 500px;
    background-size: cover !important;
    display: flex;
    align-items: end;
    flex-direction: column;
    justify-content: end;
    position: relative;
}

.modal {
    background-color: rgba(0, 0, 0, 0.607);
}

.more {
    /* background-color: red; */
    margin: 20px 0;
}

/* /////////////////////////////////////////////// */

.btn-play {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #ffffff;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 767px) {
    .container_video {
        margin: 15px 0;
        height: 350px;
    }

    .video_galary .h1_general {
        font-size: 30px;
    }
}

/* ===================================End section  video Gallery========================================= */

/* ===================================Start footer========================================= */

.footer {
    padding-top: 80px;
    background-color: rgb(var(--bs-body-bg-rgb), 0.3);
    color: var(--text-default);
}

.footer .container-fluid {
    width: 90%;
    margin: auto;
}

.footer .social_media {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-weight: bold;
    font-size: 18px;
}

.footer_logo {
    max-width: 300px;
    height: auto;
    margin: auto;
    display: flex;
    width: auto;
    max-height: 315px;
    object-fit: cover !important;
    object-position: center center;
}

.parent_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.parent_footer .ul {
    position: relative;
}

.parent_footer .ul::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 0;
    width: 30px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.parent_footer li {
    margin: 20px 0;
    color: inherit;
}

.parent_footer li a {
    color: inherit;
}

.footer .map_img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
}

.footer .copy_rights {
    margin-top: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 10px 3px;

    min-height: 50px;
    background-color: rgb(var(--bs-body-bg-rgb));
}

.footer .copy_rights p {
    margin-bottom: 0;
    font-weight: bold;
}

.number_of_visitors {
    font-weight: bold;
    text-align: start;
}

@media (max-width: 767px) {
    .footer .social_media {
        justify-content: center;
    }

    .footer {
        padding-top: 60px;
    }

    .parent_footer .box {
        margin: 20px 0;
    }

    .footer .parent_footer {
        text-align: center;
    }

    .footer .copy_rights {
        margin-top: 80px;
    }
}

/* ===================================End footer========================================= */

/* ===================================          ===================================
===================================Start news_title =========================
===================================          ===================================
*/

.header_global {
    height: 490px;
    background-size: cover !important;
    color: #fff;
}

.header_global .content {
    width: 80%;
    height: 85%;
    margin: auto;
    padding-top: 20px;
    display: flex;
    align-items: center;
}

.breadcrumb {
    width: 100%;
    bottom: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.3);
    height: 72px;
    display: flex;
    align-items: center;
    gap: 0px;
    padding-right: 50px;
    margin: 0;
}

.breadcrumb li a {
    color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
    float: right;
    margin: 0 5px;
}

/* exceptional case start*/
.breadcrumb-item.custom+.breadcrumb-item.custom::before {
    color: var(--primary) !important;
    margin: 0 2px 0 5px;
    padding: 0;
}

.breadcrumb-item.custom a.active {
    color: var(--primary) !important;
}

/* exceptional case end*/

.breadcrumb-item .active {
    color: rgb(0, 200, 255) !important;
}

.news_title {
    position: relative;
    padding: 120px 0;
    background-color: #f5fdfe;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news_title .container {
    width: 50%;
    margin: auto;
}

.news_title p {
    margin: 50px 0;
}

.news_title .clibpath {
    position: absolute;
    top: 1px;
    opacity: 0.3;
    width: 100%;
}

@media screen and (min-width: 993px) {
    .h-lg-450 {
        height: 450px !important;
    }

    .w-lg-auto {
        width: auto !important;
    }

    .w-lg-75 {
        width: 89% !important;
    }

    .overflow-x-auto {
        overflow-x: auto;
    }
}

@media (max-width: 767px) {
    .header_news {
        height: 400px;
    }

    .header_global .content {
        width: 80%;
        height: 82%;
        margin: auto;
        padding-top: 100px;
    }

    .breadcrumb {
        height: 72px;
        gap: 5px;
        padding-right: 20px;
    }

    .news_title .container {
        width: 95%;
        margin: auto;
    }

    .news_title {
        padding: 50px 0;
    }
}

/* ===================================          ===================================
===================================End news_title page =========================
===================================          ===================================
*/

/* ===================================          ===================================
===================================End bod =page========================
===================================          ===================================
*/

.hbdo {
    position: relative;
}

.bod .clibpath {
    position: absolute;
    bottom: -100px;
    opacity: 0.3;
    width: 100%;
}

.hbdo .overlays {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.img-news-details {
    max-width: 100%;
    max-height: 440px;
    object-fit: cover;
    object-position: center center;
}

.bod , .videos {
    min-height: 50vw;
    height: auto
}

.bod .container {
    padding-top: 150px;
}

.bod .box {
    width: 100%;
    height: 392px;
    background-size: cover !important;
    position: relative;
    border-radius: 10px;
    margin-top: 40px;
    object-fit: cover !important;
}

.bod .overlay_box {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    border-radius: 10px;

    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.9) 100%);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.bod .content_box {
    width: 100%;
    color: #fff;
    text-align: right;
    position: absolute;
    bottom: 0;
    padding: 15px;
    border-radius: 0px 0px 10px 10px;

    background: linear-gradient(180deg, rgba(57, 128, 210, 0) 0%, rgb(var(--primary-rgb) / 60%) 100%), linear-gradient(180deg, rgba(57, 128, 210, 0) 0%, rgb(var(--primary-rgb) / 70%) 100%);
}

.bod .content_box h1 {
    font-size: 24px;
    font-weight: 700;
}

.bod .content_box p {
    font-size: 14px;
    font-weight: 400;
}

#load_more_button {
    margin-top:10px
}

@media (max-width: 992px) {
    .bod .c {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bod .clibpath {
        position: absolute;
        bottom: 80px;
        opacity: 0.3;
        width: 100%;
    }

}

/* ===================================          ===================================
===================================End bod page=========================
===================================          ===================================
*/

/* ===================================          ===================================
===================================Start News page=========================
===================================          ===================================
*/

.news h2 {
    margin-bottom: 50px;
}

.news .parent_news {
    padding: 80px 0;
    width: 95%;
    margin: auto;
}

.clibpath {
    z-index: -100;
}

.buttom_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--secandary);
}

@media (max-width: 767px) {
    .content_box {
        width: 100%;
    }

    .news .container {
        width: 100%;
    }

    .news .box {
        width: 380px;
        height: 420px;
        background-color: #fff;
        border-radius: 12px;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        -ms-border-radius: 12px;
        -o-border-radius: 12px;
        color: var(--primary);
    }

    .header_global {
        height: 50vh;
    }
}

/* ===================================          ===================================
===================================End News page=========================
===================================          ===================================
*/

/* ===================================          ===================================
===================================Strat video page=========================
===================================          ===================================
*/

.videos .container {
    padding-top: 120px;
}

.videos h2 {
    padding-bottom: 50px;
}

.video {
    width: 390px;
    height: 239px;
    position: relative;
    background-size: cover !important;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.overlay_video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px !important;
    -webkit-border-radius: 13px !important;
    -moz-border-radius: 13px !important;
    -ms-border-radius: 13px !important;
    -o-border-radius: 13px !important;
}

@media (max-width: 992px) {
    .videos .container {
        padding-top: 60px;
    }

    .videos h2 {
        padding-bottom: 30px;
    }

    .v {
        margin: 20px 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.v {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-header .btn-close {
    color: #fff;
    background-color: #fff;
}

.modal-header {
    border: none;
}

.modal-content {
    margin-top: 50%;
    background-color: transparent;
    border: none !important;
}

.modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.video {
    width: 100%;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

/* ===================================          ===================================
===================================End video page=========================
===================================          ===================================
*/

/* ===================================          ===================================
===================================Start photo_galary page=========================
===================================          ===================================
*/

.photo_galary_main h1 {
    color: black;
    margin-right: 80px;
}

.photo_galary_main .container-fluid {
    padding: 80px 0;
}

.wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 35px;
    align-items: center;
    flex-wrap: wrap;
    margin: 15px 0;
}

.wrapper ul:after {
    content: "";
    display: table;
    clear: both;
}

.wrapper ul li .img {
    border-radius: var(--border-radius);
    width: 100%;
    margin: 0;
    height: 250px;
    background: no-repeat;
    background-size: cover !important;
    background-position: center center;
    float: left;
}

/* Zoom In #2 */

.wrapper ul li:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.wrapper ul li:nth-child(1n + 4) {
    max-height: 0;
    opacity: 0;
    transition: 0.2s ease-in;
}

.wrapper .btn-area {
    display: block;
    background-color: rgba(132, 133, 138, 0.26);
    color: #fff;
    cursor: pointer;
    text-align: center;
    font-weight: 900;
    width: 100%;
    line-height: 50px;
    margin: 0px auto 0;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    margin-top: 20px;
    position: absolute;
    width: 60%;
    right: 0;
    left: 0;
}

.wrapper .btn-area .btn2 {
    display: none;
}

.wrapper #btnBox {
    display: none;
}

.wrapper #btnBox:checked~ul li:nth-child(1n + 4) {
    max-height: 1000px;
    opacity: 1;
    transition: 0.2s ease-in;
    -webkit-transition: 0.2s ease-in;
    -moz-transition: 0.2s ease-in;
    -ms-transition: 0.2s ease-in;
    -o-transition: 0.2s ease-in;
}

.wrapper #btnBox:checked~.btn-area .btn2 {
    display: block;
}

.wrapper #btnBox:checked~.btn-area .btn1 {
    display: none;
}

@media (max-width: 992px) {
    .wrapper ul li {
        width: calc(100% - 3px);
    }

    .photo_galary_main .container-fluid {
        padding: 20px 0;
    }

    .wrapper ul {
        gap: 15px;
    }
}

/* ===================================          ===================================
===================================End photo_galary page=========================
===================================          ===================================
*/

.conntact {
    bottom: 80px;
    right: -40px;
    z-index: 1;
    position: fixed;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}

.ani {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.ani:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 50px;
    height: 50px;
    background: #0c0c0c;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
}

.ani:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
    -webkit-transition: all 200ms;
    -moz-transition: all 200ms;
    -ms-transition: all 200ms;
    -o-transition: all 200ms;
}

.con {
    position: absolute;
    z-index: 2;
    top: -12px;
    right: -11px;
    color: #dbdbdb;
    font-size: 25px;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.pop_image {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #0c0c0c88;
    height: 100%;
    z-index: 1000;
    display: none;
}

.photo_galary_main .pop_img {
    width: 50%;
    height: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    border: var(--border-radius);
    object-fit: cover !important;
}

.pop_image .span_close {
    position: absolute;
    top: 15%;
    right: 5%;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
}

@media (max-width: 767px) {
    .photo_galary_main .pop_img {
        width: 85%;
        height: 40%;
    }

    .pop_image .span_close {
        position: absolute;
        top: 20%;
        right: 10%;
        font-size: 40px;
        color: #fff;
        cursor: pointer;
        z-index: 10000;
    }
}

/* ===================================          ===================================
===================================STart Contact page=========================
===================================          ===================================
*/

.contact_us.volunteer {
    max-width: 800px !important;

}

.contact_us {
    width: 100%;
    background: rgba(var(--bs-white-rgb) , 60%);
    padding: 20px;
    backdrop-filter: blur(11px);
    max-width: 400px;
    margin: auto;
    border-radius: var(--border-radius);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    -ms-border-radius: var(--border-radius);
    -o-border-radius: var(--border-radius);
    margin: 30px auto;
}

.btn_send {
    text-align: left;
    margin-top: 20px;
}

.label {
    font-weight: bold;
    color: var(--primary);
    margin: 7px 5px;
}

.btn {
    background-color: var(--primary);
    border: none;
    min-width: 120px;
    width: 150px;
    color: white;
}

.Contact .h1 {
    color: var(--primary);
    margin-top: 50px;
}

.error {
    width: 60%;
    color: red;
    font-size: 12px;
    text-align: start;
    margin-top: 5px;
    padding: 2px;
    border-radius: var(--border-radius);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    -ms-border-radius: var(--border-radius);
    -o-border-radius: var(--border-radius);
}

.input-error {
    border: 1px solid red;
}

/* .select {
position: relative;
}
.arrows {
position: absolute;
bottom: -48px;
left: 15%;
z-index: 1000;
background-color: red;
} */

@media (max-width: 767px) {
    .contact_us {
        width: 100%;
    }
}

/* ===================================          ===================================
===================================End Contact page=========================
===================================          ===================================
*/

/* MAppppppppppppp */

iframe {
    width: 100%;
    /* height: 300px ; */
    border-radius: 10px;
}

iframe.map-iframe {
    width: 100%;
    height: 300px !important;
    border-radius: 10px;
}
.mapouter {
    position: relative;
    height: 400px;
    width: 100%;
}

.gmap_canvas {
    overflow: hidden;
    height: 400px;
    width: 100%;
}

.gmap_canvas iframe {
    position: relative;
    z-index: 2;
}

.gmap_canvas a {
    top: 0;
    z-index: 0;
}

/* ===================================          ================================
=================================== Start Regulations page =========================
===================================          ===================================
*/

.accordion-button::after {
    margin-right: auto;
    margin-left: 0;
}

.accordion-button:not(.collapsed) {
    background-color: var(--bs-body-bg);
    color: var(--primary);
}

.accordion-item:first-of-type {
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.accordion-button.notArrow::after {
    display: none;
}

.card-header.collapsed {
    transition: .1s all ease-in-out;
    border: 0 !important;
}

.text-dawonload {
    font-size: 12px !important;
}

/* ================================          =================================
 ======================== End About the association pages =========================
===================================          =================================
*/
.w-text-sm {
    max-width: 550px;
}

.sechen_editor {
    max-width: 1000px;
    min-width: 450px;
    overflow-y: hidden;
    overflow-x: auto;
}

.overflow-x-auto {
    overflow-x: auto;
}

.img-responsive-content {
    max-width: 700px;
    width: 100%;
}

@media (max-width: 992px) {
    .mw-lg-700 {
        max-width: 750px;
    }
}

.thumbnail_video {
    padding: 30%;
    background-size: cover;
    background-position: center center;
    border-radius: 3px;
}

.videos_block3_learn {
    bottom: 0;
    left: 0;
    z-index: 1;
}

.thumbnail_video svg {
    display: flex;
    width: 30px;
    align-items: center;
    justify-content: center;
    height: 30px;
    background: rgb(23 76 144 / 70%);
    padding: 8px 6px 8px 10px;
    color: white;
    border-radius: 50%;
    transition: 0.25s all ease-in-out;
    border: 3px solid white;
}

.card-custom {
    max-width: 240px;
}

.card-custom:hover .thumbnail_video svg {
    transform: scale(1.2);
    background-color: var(--primary);
}

.custom-css-b svg {
    display: none;
}

@media screen and (min-width: 993px) {
    .videos_block3_learn {
        left: 0;
        bottom: -100%;
        opacity: 0;
        visibility: hidden;
        transition: 0.25s all ease-in-out;
        background-color: var(--primary);
        border-radius: var(--border-radius);
        backdrop-filter: blur(5px);
        z-index: -1;
    }

    .thumbnail_video svg {
        width: 0;
        height: 0;
        display: none;
    }

    .custom-css-b svg {
        display: block;
        width: 30px;
        height: 30px;
        background: rgb(23 76 144 / 70%);
        padding: 8px 6px 8px 10px;
        color: white;
        border-radius: 50%;
        transition: 0.25s all ease-in-out;
        border: 3px solid white;
    }

    .card-custom:hover .videos_block3_learn {
        bottom: 0;
        opacity: 0.9;
        z-index: 1;
        visibility: visible;
    }
}

.img-card-rispon {
    max-height: 180px;
    object-fit: cover;
}

/* ===================================          ================================
======================== Start About the association pages =========================
===================================          ===================================
*/

.grecaptcha-badge { visibility: hidden !important; }
