:root {
    /* COLORS */
    --primary: #3f4963;
    --second: #d9d9d9;
    --third: #3f4963;
    --forth: #aaca2a;
    --main-gradient: linear-gradient(
        274deg,
        rgba(156, 196, 32, 1) 21%,
        rgba(156, 196, 32, 1) 33%,
        rgba(33, 157, 125, 1) 70%,
        rgba(0, 147, 149, 1) 100%
    );
}

.color-forth {
    color: var(--forth) !important;
}


/* Custom Font */

html {
    direction: rtl;
}

.h-100 {
    height: 100%;
}

a {
    text-decoration: none !important;
}

/* #5f6368  */
/* =========================== Navbar =========================== */
.top-bar {
    background-color: var(--second) !important;
    padding: 0;
}

header .navbar {
    border: none !important;
}

@media only screen and (max-width: 991px) {
    .navbar-nav {
        overflow-x: initial;
    }
}

.navbar-light .navbar-toggler {
    border-color: #fff;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.3);
}

.navbar-nav {
    position: relative;
}

.navbar .nav-item {

}

.navbar .nav-link {
    color: #fff;
    font-size: 15px;
}

.navbar-brand img {
    width: 100px;
}

.navbar .search-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-gradient);
    cursor: pointer;
    position: relative;
}

.navbar .search-form {
    position: absolute;
    bottom: -67px;
    z-index: 1;
    left: 0;
    width: 300px;
    user-select: none;
}

@media (max-width: 992px) {
    .navbar .search-btn {
        display: none;
    }

    .navbar .search-form {
        position: initial;
        display: block !important;
    }
}

/* =========================== Hero Slider =========================== */
.hero-slider img {
    /* height: 600px; */
    border-radius: 15px;
}

.hero-slider .carousel-item {
    /* background-color: #f2f2f2;
    color: var(--primary);
    padding-top: 100px !important;
    padding-bottom: 200px !important; */
}

.hero-slider .hero-content {
    /* display: flex;
    align-items: center;
    justify-content: space-between; */
}


.hero-text-block {
    position: absolute;
    top: 23%;
    max-width: 600px;
    z-index: 1;
}

.hero-text-block h1 {
    font-size: 60px;
    color: var(--third);
}

.hero-slider .hero-desc {
    width: 50%;
}

.hero-slider .hero-desc .desc {
    font-size: 35px;
}

.hero-slider .hero-desc .title {
    font-weight: 700;
    font-size: 50px;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    width: 5rem;
    height: 5rem;
}

.carousel-control-next,
.carousel-control-prev {
    width: 10%;
}

@media (max-width: 1525px) {
    .carousel-control-next,
    .carousel-control-prev {
        width: 5%;
    }

    .carousel-control-next-icon,
    .carousel-control-prev-icon {
        width: 5rem;
        height: 5rem;
    }
}

@media (max-width: 1200px) {
    .hero-slider .hero-content {
        flex-direction: column;
    }

    .hero-slider .hero-desc .desc {
        font-size: 25px;
    }

    .hero-slider .hero-desc .title {
        font-size: 35px;
        margin-bottom: 60px;
    }
}

@media (max-width: 600px) {
    .hero-slider .hero-desc .desc {
        font-size: 15px;
    }

    .hero-slider .hero-desc .title {
        font-size: 25px;
        margin-bottom: 40px;
    }
}


.carousel-indicators li {
    background-color: #bebebe;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-right: 7px;
    margin-left: 7px;
    opacity: 1;
}

.carousel-indicators .active {
    background-color: #3f4963;
}


/* =========================== Welcome Section =========================== */
.Welcome-section {
    background-color: #ffffff;
    color: #39405a;
    padding: 60px 0;
}

.Welcome-section h2 {
    font-size: 35px;
    font-weight: 700;
}

.Welcome-section p {
    font-size: 15px;
    margin: 0;
}

@media (max-width: 767px) {
    .Welcome-section h2 {
        font-size: 27px;
        font-weight: 700;
    }

    .Welcome-section p {
        font-size: 14px;
    }
}

@media (max-width: 500px) {
    .section-title-dark {
        width: 80% !important;
    }

    .Welcome-section h2 {
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .Welcome-section p {
        font-size: 12px;
    }
}

.welcome-section-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-main {
    color: #000;
    background: transparent;
    border-radius: 30px;
    border: 2px solid black;
    height: 50px;
    min-width: 240px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 20px;
    position: relative;
    cursor: pointer;
    transition: 0.4s ease-in-out;
}

.btn-main i {
    transition: 0.4s ease-in-out
}

.btn-main:hover i {
    transform: translateX(-20px);
}

.btn-main:hover {
    transform: unset;
    opacity: 1;
    /* background: #37445a !important; */
    /* color: #fff; */
}

.btn-main.light {
    border: 2px solid #d9d9d9;
    background: #d9d9d9;
    color: #3f4963;
}

.btn-main.light:hover span {
    /* background: var(--forth);
    color: #fff !important; */
    margin-right: 10px;
    transition: all 0.5s;

}

.btn-main .btn-text {
    font-size: 14px;
}

.btn-main .btn-icon {
    position: absolute;
    left: 6px;
    background: var(--primary);
    display: inline-block;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}


/* =========================== Number Of Items Section =========================== */
.items-number {
    width: 100%;
    background-image: none;
    background-color: #fff;

}

.items-number .item-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
}

.items-number .item-card {
    position: relative;
    background-color: #fff;
    color: var(--primary);
    padding: 20px;
    border-radius: 16px;
    min-height: 200px;
    box-shadow: 0 0 10px 5px #eee;
}

.items-number .item-card .item-icon {

    width: 80px;
    aspect-ratio: 1/1;
    background: #f3f3f3;
    border-radius: 100%;
    display: grid;
    place-content: center;
}

.items-number .item-card .item-icon img {
    width: 40px;
}

.items-number .item-card .item-count {
    font-size: 30px;
    font-weight: 600;
}

@media (max-width: 500px) {
    .items-number .item-card .item-icon img {
        width: 50px;
    }

    .items-number .item-card .item-count {
        font-size: 60px;
    }
}

.item-count-1 {
    color: var(--primary);
}

.item-count-2 {
    color: var(--second);
}

.item-count-3 {
    color: var(--third);
}

.item-count-4 {
    color: var(--forth);
}

/* =========================== How Do We Get Your Creativity ? =========================== */
.how-get-your-creativity {
    background-color: #f2f2f2;
    padding: 50px 0;
}


/* =========================== Space for innovations and challenges =========================== */
.innovations-challenges-space, .gallery-filter {
    background-color: #fff;
    background-image: none;
    width: 100%;
    color: #5f6368;
    position: relative;

}

.desc-1 {
    font-size: 25px;
    line-height: 1.5;
}

.desc-2 {
    font-size: 15px;
}

.innovations-challenges-space__content,
.gallery-filter-area {
    margin-top: 60px;
}

.card {
    border: 1px solid rgb(62 62 62 / 13%);
}

.cards-gallery-tabs,
.gallery-filter-tabs {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    text-align: center;
}

.cards-gallery-tabs a,
.gallery-filter-tabs a {
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    transition: 0.4s ease-in-out;
    display: block;
    border: 2px solid #3f4963;
    font-weight: 600;
}

.home-class .card .date {
    font-size: 13px;
    color: #ffffff;

}

.home-class .card .status {
    font-size: 13px;
    color: #ffffff;

}

.gallery-filter .card .status {
    color: #5f6368;

}

.cards-gallery-tabs a.active,
.cards-gallery-tabs a:hover,
.gallery-filter-tabs a.active,
.gallery-filter-tabs a:hover {
    color: #fff;
    background-color: #3f4963;
    border-color: #3f4963 !important;

}

.cards-gallery-tabs li:not(:last-child) a,
.gallery-filter-tabs li:not(:last-child) a {
    margin-left: 15px;
}

.home-class .card {
    border: none;
    box-shadow: 0 0 10px 5px rgb(195 193 193 / 30%);
    border-radius: 40px;
    overflow: hidden;
    color: var(--primary);
}

.home-class .card-img-top {
    border-radius: 40px;
    padding: 13px 13px 0;
    height: 260px;
    object-fit: cover;
}

.home-class .card-title {
    font-weight: 600;
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 20px;
    padding: 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-class .driven-innovation .card-title {
    padding: 0;
}

.home-class .card-text {
    font-size: 14px;
    padding: 0 20px;
}

.home-class .card-details {

    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--third);
    background: #4cb247;
}


.home-class .card-details i {
    margin-left: 5px;
}

.home-class .card-person {
    background-color: #868686;
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.home-class .card-person img {
    width: 50px;
    border-radius: 30%;
    margin-left: 10px;
}

.home-class .card-person span {
    font-size: 20px;
}

@media (max-width: 600px) {
    .desc-1 {
        font-size: 19px;
    }

    .desc-2 {
        font-size: 13px;
    }

    .innovations-challenges-space__content,
    .gallery-filter-area {
        padding-top: 40px;
        margin-top: 40px;
    }

    .cards-gallery-tabs,
    .gallery-filter-tabs {
        display: block;
        margin-bottom: 50px;
    }

    .cards-gallery-tabs a,
    .gallery-filter-tabs a {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 15px;
        width: 100%;
        font-size: 12px;
    }

    .home-class .card-title {
        font-size: 16px;
    }

    .home-class .card-title a {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .home-class .card-text {
        font-size: 12px;
    }

    .home-class .card-details i {
        font-size: 16px;
    }

    .home-class .card-person span {
        font-size: 16px;
    }
}

/* =========================== Concrete on the ground =========================== */
.concrete-on-the-ground {
    background-color: #fff;
    background-image: none;
    width: 100%;
    position: relative;
}

.card-text {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;

}

/* =========================== Latest Activity =========================== */
.latest-activity {
    background-color: #fff;
    background-image: none;
    width: 100%;
    position: relative;
    /* height: 800px; */
}

@media (max-width: 1178px) {
    .swiper-button-prev,
    .swiper-button-next,
    .swiper-pagination {
        display: none;
    }
}

.latest-activity .overlay {
    background: var(--main-gradient);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

.latest-activity-content {
    position: relative;
    z-index: 4;
}

.activity-content {
    padding: 65px 0;
}

.latest-activity .card-img {
    position: relative;
    overflow: hidden !important;
    height: 260px;
    border-radius: 40px;
}

.latest-activity .card-title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.latest-activity .card-title {
    font-size: 25px;
    font-weight: 600;
    position: absolute;
    bottom: 0px;
    right: 19px;
    color: #fff;
}

.latest-activity .card-text {
    font-size: 12px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.latest-activity .card-text i {
    margin-left: 5px;
}

/* =========================== Driven Innovation =========================== */
.driven-innovation {
    background-image: linear-gradient(to right top, #dfdfdf, #effdfa, #dceef3, #f0f8fd, #ffffff);
}

.driven-innovation-content {
    margin-top: 100px;
}

.driven-innovation .horizantal-card {
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    width: 70%;
    padding: 40px 20px;
    position: relative;
    margin: 0 auto;

}


.driven-innovation .horizantal-card .card-img {
    width: 100px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 100%;
    position: absolute;
    right: 50%;
    top: -57px;
    z-index: 1;
    transform: translateX(50%);
    border: 2px solid #fff;
}

.driven-innovation .swiper-pagination-bullet {
    border-color: var(--primary);
}

.driven-innovation .swiper-pagination-bullet-active {
    background: var(--primary);
    border-color: var(--primary);
}

@media (max-width: 767px) {
    .driven-innovation .horizantal-card {
        width: initial !important;
        flex-direction: column;
        padding: 30px 0;
        text-align: center;
    }


}

@media (max-width: 1199px) {
    .driven-innovation .mb-5 {
        margin-bottom: 120px !important;
    }
}

/* =========================== Gallery Filter Internal Pages (Ideas - Challenges ...) =========================== */

.gallery-filter {
    /* padding: 50px 0 !important; */
    margin-top: 50px;
    color: #39405a;
}

.gallery-filter-area {
    margin-top: 20px !important;
    padding-top: 40px !important;
}

.gallery-filter-tabs {
    justify-content: center;
    margin-bottom: 0;
}

.gallery-filter-form {
    margin: 30px 0;
}

.gallery-filter-form .search-input {
    position: relative;
}

.filter-search .create-idea-btn {
    text-wrap: nowrap;
}

@media (max-width: 992px) {
    .cards-gallery-tabs,
    .gallery-filter-tabs {
        display: block;
        margin-bottom: 50px;
    }

    .cards-gallery-tabs a,
    .gallery-filter-tabs a {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 15px;
        width: 100%;
        font-size: 12px;
    }

    .gallery-filter-form {
        display: block !important;
    }

    .filter-search {
        /* flex-direction: column; */
        gap: 10px;
    }

    .filter-search .create-idea-btn {
        margin: 10px 0px !important;
        text-wrap: nowrap;
        order: 2;
    }

    .filter-search a span {
        font-size: 12px !important;
        text-wrap: nowrap;
    }

    .gallery-filter-form .search-input {
        width: 100% !important;
    }

    .gallery-filter-form .search-input input {
        min-width: 200px !important;
        width: 100% !important;
        padding-right: 27px !important;
        font-size: 12px !important;
    }

    .gallery-filter-form .search-input i {
        right: 10px !important;
    }

    .filter-search .search-input {
        margin-top: 20px;
    }

    .filter-select {
        justify-content: center !important;
    }
}

.gallery-filter-form .search-input input {
    border: 1px solid #f5f5f5;
    background: none;
    outline: none;
    width: 300px;
    height: 50px;
    background-color: #f5f5f5;
    border-radius: 40px;
    padding-right: 45px;
    font-size: 13px;
    transition: 0.4s ease-in-out;
}

.gallery-filter-form .search-input input:focus {
    border: 1px solid #3f4963;
}

.gallery-filter-form .search-input i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}

.gallery-filter-form small.alert {
    display: inline-block;
    position: absolute;
    width: 176px;
    top: 2px;
    left: -191px;
    display: none;
}

@media (max-width: 600px) {
    .gallery-filter-form small.alert {
        top: -52px;
        left: 57px;
    }
}

.cat-select {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.cat-select select {
    border: none;
    background: none;
    outline: none;
    width: 150px;
    background: #fff;
    border: 1px solid #ccc;
    height: 50px;
    border-radius: 10px;
    text-align: center;
    padding-left: 5px;
}

.gallery-filter-form select {
    border: none;
    background: none;
    outline: none;
    width: 182px;
    background: #f5f5f5;
    height: 50px;
    border-radius: 40px;
    text-align: center;
    padding-left: 5px;
}

.gallery-filter-item .card {
    border: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.gallery-filter-item .card .card-order-number {
    position: absolute;
    top: 1px;
    left: 1px;
    background-color: #ffffff;
    width: 40px;
    color: #000;
    font-weight: bold;
    border-radius: 100%;
    aspect-ratio: 1/1;
    display: grid;
    place-content: center;
}

.gallery-filter .card-title a {
    color: #3e455e;
    font-size: 20px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery-filter-item .card i {
    margin-left: 10px;
}

.gallery-filter-item .card img {
    height: 250px;
    object-fit: cover;
}

.gallery-filter-item .card-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    font-size: 13px;

}

.gallery-filter-item .card-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--third);
    padding: 5px 10px;
    color: #fff;
}

.gallery-filter-item .card-status .status-item {
    display: flex;
    align-items: center;
    font-size: 13px;
}

.gallery-filter-item .card-status .count {
    font-size: 13px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 25px;
    aspect-ratio: 1/1;
    margin-right: 10px;
    color: #39405a;
    font-weight: bold;
}

.card-person {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #39405a;
    color: #fff;
    display: none;
}

.card-person .person-img img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    margin-left: 10px;
}

.card-person .person-name {
    font-size: 16px;
    font-weight: bold;
}

/* =========================== Footer =========================== */
footer {
    padding: 60px 0 20px;
    margin: 0;
    background-color: #fff;
}

footer a {
    color: #999;
}

.gap-10 {
    gap: 10px
}

.gap-5 {
    gap: 5px
}

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

.footer-right .footer-logo {
    width: 180px;
    margin-bottom: 30px;
}

footer p {
    color: #fff;
    line-height: 1.5;
}

footer p, footer li {
    font-size: 16px !important;
}

footer i {
    color: var(--third);
}

footer p, footer li {
    font-size: 16px !important;
}


.footer-right .desc-1 {
    font-size: 19px;
}

.footer-left h4 {
    border-bottom: 1px solid #fff;
    padding-bottom: 15px;
}

@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        align-items: initial;
        justify-content: initial;
    }

    .footer-right {
        margin-bottom: 30px;
    }
}

/* =========================== ***** Global **** =========================== */
.home-class h2 {
    line-height: 1.2 !important;
}

section {
    padding: 100px 0;
}

.section-title {
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-right: 50px;
    position: relative;
}

/*.section-title::before{*/
/*  content: '';*/
/*  position: absolute;*/
/*  top: 0;*/
/*  right: 30px;*/
/*  background-image: url('../../frontend2/images/images/title-icon.png');*/
/*  width: 60px;*/
/*  aspect-ratio: 1/1;*/
/*  background-size: contain;*/
/*  background-repeat: no-repeat;*/
/*  background-position: right;*/
/*  animation: light 1s ease-in-out alternate infinite;*/
/*}*/

@keyframes light {
    0% {
        filter: drop-shadow(0 0 10px yellow)
    }
    50% {
        filter: none
    }
    100% {
        filter: drop-shadow(0 0 10px yellow)
    }
}


.section-title-light {
    color: #fff;
}

.section-title-dark {
    color: #000;
    background-color: #f2f2f2;
    padding: 5px;
    width: 50%;
    text-align: start;
    padding-right: 20px;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .gallery-filter {
        padding-bottom: 0;
    }
}

@media (max-width: 500px) {
    .section-title {
        font-size: 23px;
        margin-bottom: 15px;
    }

    .section-title::before {
        top: -7px;
        right: 6px;
        width: 45px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1360px !important;
    }
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary);
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 30px;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 30px;
}

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

.swiper-pagination-bullet {
    border: 2px solid #fff;
    width: 14px;
    height: 14px;
    background: transparent;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #fff;
    border-color: #fff;
}

.section-full:last-child {
    margin-bottom: 10px !important;
}

.btn-solid {
    background: transparent;
    color: #39405a;
    border: 2px solid #39405a;
    height: 50px;
}

.btn-solid .btn-text {
    transform: translateX(-37px);
    font-weight: bold;
}

.btn-solid .btn-icon {
    color: #fff;
    height: 40px;
    font-size: 20px;
}


@media (max-width: 600px) {

    .btn-main .btn-icon {
        height: 40px;
        font-size: 15px;
    }
}

.btn-solid {
    background: transparent;
    color: #39405a;
    border: 2px solid #39405a;
    height: 50px;
}

.btn-solid .btn-text {
    transform: translateX(-37px);
    font-weight: bold;
}

.btn-solid .btn-icon {
    color: #fff !important;
    height: 40px;
    font-size: 20px;
}

.btn-solid.light {
    color: #fff !important;
    border: 2px solid #fff !important;
}

.btn-solid.light .btn-text {
    color: #fff !important;
}

.btn-solid.light .btn-icon {
    color: #39405a !important;
    background-color: #fff;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}


.magnific-img {
    transition: .3s ease-in-out;
}

.magnific-img:hover {
    opacity: .5;
}

.switch-site-btn {
    position: fixed;
    bottom: 20px;
    left: 0px;
    width: 140px;
    cursor: pointer;
    z-index: 1000;
    background: #000000;
    padding: 10px 20px;
    border-radius: 0 50px 50px 0;
}

.page-content {
    margin-top: 120px;
}

.custom-file-label {
    padding: 13px 124px 37px !important;
}

[type=email],
[type=tel] {
    text-align: right;
    direction: rtl;
}
