@font-face {
    font-family: 'lina-sans';
    src: url("../fonts/Lina sans Light.otf") format("opentype");
    font-weight: 200;
}

@font-face {
    font-family: 'lina-sans';
    src: url('../fonts/Lina\ sans\ Regular.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'lina-sans';
    src: url('../fonts/Lina\ sans\ Medium.otf') format('opentype');
    font-weight: 500;
}

@font-face {
    font-family: 'lina-sans';
    src: url('../fonts/Lina\ sans\ SemiBold.otf') format('opentype');
    font-weight: 600;
}

@font-face {
    font-family: 'lina-sans';
    src: url('../fonts/Lina\ sans\ Bold.otf') format('opentype');
    font-weight: 800;
}

:root {
    --primary-color: #1a4abf;
    /* --secondary-color: #000000; */
}

body {
    font-family: 'lina-sans', sans-serif;
    /* font-weight: lighter; */
    font-size: 20px;
    line-height: 1.5;
    color: #ffffff;
    padding: 0;
    margin: 0;
    height: 100vh;
    background-image: url(../images/main-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;

    &::after {
        content: "";
        position: absolute;
        width: 100%;
        height: calc(100% - 97px);
        inset-inline-end: 0;
        bottom: 0;
        background: #000000c9;
        z-index: 0;
    }

}

main {
    position: relative;
    scrollbar-width: none;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    overflow: hidden auto;
    max-height: 85vh;
}

a {
    text-decoration: none;
    color: #ffffff;
}

.header {
    width: 100%;
    background: #0000001c;
}

.header__nav {
    width: 100%;
    /* max-width: 93%; */
    padding-block: 20px;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__nav__logo {
    max-width: 200px;
    min-width: 200px;
}

.header__nav__menu {
    display: flex;
    gap: 10px;
    list-style: none;
    /* font-size: 20px; */
    background-color: #0000003d;
    padding: 0px 20px;
    border-radius: 33px;
}

.header__nav__menu__item {
    position: relative;

    &:not(:last-child) {
        &:after {
            content: "";
            position: absolute;
            inset-inline-end: 0;
            top: 10px;
            width: 1px;
            height: 25px;
            background-color: #fff;
        }

    }
}

.header__nav__menu__item__link {
    color: #fff;

    &:hover {
        color: #cccccc !important;
    }

    &.active {
        color: #cccccc !important;
        font-weight: 600;
    }

}

.header__nav__btn {
    display: inline-flex;
    align-items: center;
    border: 1px solid #fff;
    color: #fff;
    padding: 5px 16px;
    border-radius: 35px;
    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;

    &:hover {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

    &.active {
        color: var(--primary-color);

        &:hover {
            color: #fff;
        }

    }
}

/* main  */
.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.social-fixed__conainer {
    display: none !important;
    position: fixed;
    inset-inline-start: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #222427;
    z-index: 10;
    border-radius: 22px 0 0 22px;
}

.social-fixed__btn {
    position: relative;
    padding: 13px;
    transition: 0.3s background-color ease-in-out;
    -webkit-transition: 0.3s background-color ease-in-out;
    -moz-transition: 0.3s background-color ease-in-out;
    -ms-transition: 0.3s background-color ease-in-out;
    -o-transition: 0.3s background-color ease-in-out;

    &:not(:last-child) {
        &::after {
            content: "";
            position: absolute;
            inset-inline-end: 10px;
            bottom: -10px;
            width: 20px;
            height: 2px;
            background-color: #fff;
        }

    }

    &:hover {
        background-color: var(--primary-color);
    }

    &:first-child {
        border-radius: 22px 0 0 0;
    }

    &:last-child {
        border-radius: 0 0 0 22px;
    }

}

.grecaptcha-badge {
    display: none;
}

.social-icons {
    /* margin-bottom: 16px; */
    display: none !important;

    .social-icons__btn {
        padding: 8px;
        position: relative;
        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;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;

        &:not(:last-child) {
            &::after {
                content: "";
                position: absolute;
                inset-inline-end: -6px;
                top: 10px;
                width: 1px;
                height: 16px;
                background-color: #fff;
            }

        }

        &:hover {
            background-color: var(--primary-color);
        }

    }
}

.content {
    z-index: 9;
    position: relative;
    min-height: 55vh;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-200px);
        -webkit-transform: translateY(-200px);
        -moz-transform: translateY(-200px);
        -ms-transform: translateY(-200px);
        -o-transform: translateY(-200px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
}

@keyframes handBtn {
    0% {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
    }

    50% {
        transform: rotate(-54deg) translateY(-15px);
        -webkit-transform: rotate(-54deg) translateY(-15px);
        -moz-transform: rotate(-54deg) translateY(-15px);
        -ms-transform: rotate(-54deg) translateY(-15px);
        -o-transform: rotate(-54deg) translateY(-15px);
    }

    100% {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
    }
}

.section-center {
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.banner {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards 0.2s;
    -webkit-animation: fadeIn 0.5s ease-in-out forwards 0.2s;
    -moz-animation: fadeIn 0.5s ease-in-out;
    -ms-animation: fadeIn 0.5s ease-in-out;
    -o-animation: fadeIn 0.5s ease-in-out;
}

.banner--second {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards 0.5s;
    -webkit-animation: fadeIn 0.5s ease-in-out forwards 0.5s;
    -moz-animation: fadeIn 0.5s ease-in-out;
    -ms-animation: fadeIn 0.5s ease-in-out;
    -o-animation: fadeIn 0.5s ease-in-out;
}

.banner__header {
    font-size: 6rem;
    /* margin-bottom: 26px; */
}

.banner__btn {
    position: relative;
    background-image: linear-gradient(270deg, #173b93, #1565af);
    font-size: 1.75rem;
    padding: 5px 75px;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;

    i {
        position: absolute;
        inset-inline-start: 20px;
        bottom: 0px;
        animation: handBtn 1s ease-in-out;
        -webkit-animation: handBtn 1s ease-in-out;
        /* animation-delay: 2s; */
        animation-iteration-count: infinite;

        @media (max-width: 550px) {
            inset-inline-start: 0px;
            bottom: -20px;
        }
    }

    &:hover {
        background-image: linear-gradient(270deg, #1565af, #173b93);

        i {
            animation: none;
            transform: rotate(-54deg) translateY(-15px);
            -webkit-transform: rotate(-54deg) translateY(-15px);
            -moz-transform: rotate(-54deg) translateY(-15px);
            -ms-transform: rotate(-54deg) translateY(-15px);
            -o-transform: rotate(-54deg) translateY(-15px);
        }

    }
}

/* about us page  */
.about__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    margin-top: 20px;
    grid-gap: 16px;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
        -webkit-transform: translateX(-50px);
        -moz-transform: translateX(-50px);
        -ms-transform: translateX(-50px);
        -o-transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about__card {
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.about__card__container {
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    gap: 16px;
    outline: 2px solid var(--primary-color);
    outline-offset: 22px;
    border-radius: 80px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;

    &:hover {
        transform: scale(1.1);
        outline-color: #ffffff;
    }

}

.about__card__container::after {
    content: ". . . . .";
    color: var(--primary-color);
    position: absolute;
    inset-inline-start: 50%;
    transform: rotate(90deg) translateY(-77%);
    bottom: -50px;
}

.about__card__title {
    text-align: center;
}

.about__card__description {
    text-align: center;
    margin-top: 3rem;
}

.about__categoies {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;

    &.about__categoies--sign {
        .about__category {
            min-height: 80px;
        }

    }

    li.nav-item .nav-link.active {
        border: 2px solid;
        background-image: linear-gradient(45deg, #2058e2b3, #3257b16e);

        &::after {
            content: "";
            position: absolute;
            inset-inline-end: 30px;
            background-image: url(../images/icons/left-arrow.svg);
            width: 20px;
            height: 20px;
            background-repeat: no-repeat;
            background-size: cover;
        }

    }
}

.about__category__head {
    font-size: 2rem;
}

.about__category {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 16px;
    font-size: 1.5rem;
    background-image: linear-gradient(45deg, #3257b1, #2058e280);
    border-radius: 15px;
    min-height: 130px;

    &.nav-link {
        padding-inline-start: 30px;
    }

    &:hover {
        background-image: linear-gradient(45deg, #2058e280, #3257b1);
    }

}



@keyframes scaleCircle {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        border-color: #ffffff;
        box-shadow: 0 0 20px rgba(13, 110, 253, 0.5);
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
}

.section {
    /* width: 100vw; */
    min-height: 90vh;
    scroll-snap-align: center;

    /* display: flex;
    align-items: center; */
    &.active {
        .timeline__item {
            .timeline__circle {
                animation: scaleCircle 1s ease-in-out forwards;
                -webkit-animation: scaleCircle 1s ease-in-out forwards;
            }

            &:first-child {
                .timeline__circle {
                    animation-delay: 0s;
                }

            }

            &:nth-child(3) {
                .timeline__circle {
                    animation-delay: 0.5s;
                }

            }

            &:nth-child(5) {
                .timeline__circle {
                    animation-delay: 1s;
                }

            }

            &:last-child {
                .timeline__circle {
                    animation-delay: 1.5s;
                }

            }
        }

        .about__card {
            animation: fadeInLeft 0.5s ease-out forwards;
            -webkit-animation: fadeInLeft 0.5s ease-out forwards;

            /*Delayeachcard*/
            &:nth-child(1) {
                animation-delay: 0s;
            }

            &:nth-child(2) {
                animation-delay: 0.5s;
            }

            &:nth-child(3) {
                animation-delay: 1s;
            }

            &:nth-child(4) {
                animation-delay: 1.5s;
            }

        }

        .about__category {
            animation: fadeInLeft 1s ease-out forwards;
            -webkit-animation: fadeInLeft 1s ease-out forwards;
        }

    }
}

/* Fixed bullets */
.bullets {
    position: fixed;
    top: 50%;
    inset-inline-start: 55px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1;
}

.bullet {
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    opacity: 0.5;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

/* Highlight the bullet when section is in view */

.bullet.active {
    opacity: 1;
    background-color: var(--primary-color);
}

/* timeline page  */
.timeline {
    width: 100%;
    max-width: 1200px;
    padding: 40px 0px;
    position: relative;
    z-index: 1;
}

.timeline__header {
    text-align: right;
    margin-bottom: 80px;
}

.timeline__title {
    font-size: 3.5rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Timeline container */
.timeline__container {
    position: relative;
    /* padding: 20px 0 45px; */
}

/* Timeline items */
.timeline__items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.timeline__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

/* Timeline circles */
.timeline__circle {
    position: relative;
    width: 100px;
    height: 100px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    background: transparent;
    margin-bottom: 15px;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    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;

    &::after {
        content: ". . . . .";
        position: absolute;
        bottom: -28px;
        transform: rotate(90deg) translateY(-70%);
        inset-inline-start: 50%;
        font-size: 16px;
        color: var(--primary-color);
    }

}

.timeline__item:hover .timeline__circle {
    transform: scale(1.1) !important;
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.5);
    -webkit-transform: scale(1.1) !important;
    -moz-transform: scale(1.1) !important;
    -ms-transform: scale(1.1) !important;
    -o-transform: scale(1.1) !important;
}

/* Timeline arrows */
.timeline__arrow {
    color: var(--primary-color);
    font-size: 2rem;
    margin: 0 5px;
    height: 127px;
    min-width: 25px;
    position: relative;

    .timeline__arrow__img {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .timeline__dot {
        bottom: 0;
        position: absolute;
        background-color: var(--primary-color);
        z-index: 1;

        &::after {
            content: ". . . .";
            position: absolute;
            line-height: 0.5;
            top: -22px;
            inset-inline-start: 50%;
            font-size: 16px;
            color: var(--primary-color);
        }

        &::before {
            content: "فاعليات";
            position: absolute;
            line-height: 0.5;
            top: -29px;
            inset-inline-start: -47px;
            transform: translateX(30%);
            inset-inline-start: 50%;
            font-size: 16px;
            color: #fff;
        }

    }
}

/* Timeline line with dots */
.timeline__line {
    position: absolute;
    bottom: 4px;
    inset-inline-end: 0;
    inset-inline-start: 0;
    height: 2px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;

    &::after {
        width: 12px;
        height: 12px;
        background-color: #fff;
        border-radius: 50%;
        position: relative;
        position: absolute;
        content: "";
    }

    &::before {
        width: 12px;
        height: 12px;
        border-radius: 20%;
        border-width: 0 3px 3px 0;
        position: relative;
        position: absolute;
        content: "";
        inset-inline-end: 0;
        border-top: 10px solid #ffffff;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid transparent;
        transform: rotateZ(90deg) translateY(100%) translateX(0%);
    }

}

.timeline__dot {
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
    position: relative;
}

/* Timeline content */
.timeline__content {
    text-align: center;
}

.timeline__text {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.timeline__subtext {
    margin: 5px 0 0;
    color: #6c757d;
    font-size: 1rem;
}

/* Timeline bottom labels */
.timeline__labels {
    display: flex;
    text-align: center;
    justify-content: space-between;
    padding: 16px 22px 0;
}

.timeline__label {
    font-size: 1.5rem;
    color: white;
    text-align: center;
    max-width: 150px;
    line-height: 1.2;
}

/* about parteners logos  */
.about__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 35px 20px;
}

.partners-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    gap: 2rem;
}

.about__logos__item {
    position: relative;
    max-width: 250px;
    height: auto;
    margin-bottom: 1rem;
    /* &::before {
        content: "";
        inset-inline-end: 0px;
        top: 50%;
        transform: translateY(-50%);
        width: 2px;
        height: 50px;
        background: #fff;
        position: absolute;
    } */
}

.about__logos__img {
    max-width: 100%;
    max-height: 150px;
    padding: 16px 0;
}

/* zarqaa generation page  */

/* .about__category__desc,
.about__category__list {
    font-size: 1rem;
} */

/* tracks page , tracks child page  */

.about__category--tracks {
    background: transparent;

    &:hover {
        background: transparent;
    }

}


/* steps page  */
.steps {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 16px;
}

.steps__img {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: linear-gradient(45deg, #3257b14f, #2058e287);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

/* roles page  */
.about__category--roles {
    min-height: auto;
}

.multi-column-list {
    column-count: 2;
    column-gap: 1rem;
    /* list-style-type: decimal; */
    font-size: 0.875rem;
    padding: 0;
    /* max-height: 58%; */

    p {
        margin-bottom: 0.5rem;
        font-size: 1.2rem;
    }

    li {
        font-size: 1.2rem;
    }

}

.multi-column-list--one {
    column-count: 1;

    p {
        margin-bottom: 0.3rem;
        font-size: 1.2rem;
    }

}

.fs-7 {
    font-size: 1.2rem;
}

/* login page */
.card__login {
    background: linear-gradient(45deg, #3257b1, #2058e2b3);
    min-width: 400px;
    width: 65%;
    border-radius: 25px;
    margin-inline: auto;
    ;

    .form-group {
        position: relative;

        img {
            position: absolute;
            bottom: 5px;
        }

    }

    .form-control,
    .form-select {
        background-color: transparent;
        border-radius: 0;
        border: 0;
        border-bottom: 2px solid #94a9d4;
        text-align: start;
        color: #fff;
        direction: rtl;
        padding-inline-start: 30px;

        &:focus {
            box-shadow: 0 0 0 .25rem rgb(182 182 182 / 25%);
        }

    }

    .form-select {
        --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");

        option {
            background-color: #222427;
        }

    }

    .btn-primary {
        background: #214871;
        border-color: #fff;
        border-radius: 10px;
        min-width: 9rem;
        font-size: 1.2rem;
        line-height: 1.5;
    }

}

.forget__password {
    color: #fff;
    font-size: 0.875rem;
    text-align: end;
    margin-top: 10px;

    .form-check-input[type=checkbox] {
        background-color: transparent;
    }

    label,
    a {
        font-size: 1rem;
    }

}



.form-control,
.form-select {
    padding: .375rem .375rem;

    &::placeholder {
        color: #fff;
    }

}

.btn-outline-light {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    min-width: 9rem;
    font-size: 1.2rem;
    line-height: 1.5;
}

.choice-form-control-v {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 16px;
    color: #fff;

    label {
        padding-inline-start: 8px;
    }

}

table.form-control {
    background-color: transparent;
    border: none;
}

table.form-control tbody {
    display: flex;
    flex-direction: column;
    gap: 8px 0;
}

table.form-control tr {
    position: relative;

    &::after {
        content: "";
        position: absolute;
        inset-inline-start: 7px;
        top: 27%;
        width: 30px;
        height: 30px;
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 0;
    }

    &:first-child {
        &::after {
            background-image: url(/zarqainitiative/Style%20Library/branding/images/icons/track-1.svg);
        }

    }

    &:nth-child(2) {
        &::after {
            background-image: url(/zarqainitiative/Style%20Library/branding/images/icons/track-2.svg);
        }

    }

    &:nth-child(3) {
        &::after {
            background-image: url(/zarqainitiative/Style%20Library/branding/images/icons/track-3.svg);
        }

    }
}

table.form-control td {
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    gap: 16px;
    font-size: 1.5rem;
    background-image: linear-gradient(45deg, #3257b1, #2058e280);
    border-radius: 15px;
    min-height: 70px;
    padding-inline-start: 16px;
    width: 100%;
    cursor: pointer;

    &:has(input[type="radio"]:checked) {
        border: 2px solid #fff;

        &::after {
            content: "";
            position: absolute;
            inset-inline-end: 30px;
            background-image: url(/zarqainitiative/Style%20Library/branding/images/icons/left-arrow.svg);
            width: 20px;
            height: 20px;
            background-repeat: no-repeat;
            background-size: cover;
        }

    }

    &:hover {
        background-image: linear-gradient(45deg, #2058e280, #3257b1);
    }

}

table.form-control td label {
    color: #fff;
    width: 100%;
    height: 100%;
    text-align: start;
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    display: flex;
    padding-inline-start: 44px;
    align-items: center;
    z-index: 3;
    cursor: pointer;
}

table.form-control td input[type="radio"] {
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
}

.question-label label {
    color: #fff;
}

.card__login .form-control {
    padding: 0.2rem .75rem;
}

.form-control::file-selector-button {
    border-radius: 8px;
}

.custom-file-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (992px <=width <=1400px) {
    body {
        font-size: 17px;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .header__nav__menu__item::after {
        display: none;
    }

    .navbar-collapse {
        position: absolute;
        top: 50px;
        width: 90%;
        z-index: 10;
        background: black;
        padding: 20px;
        border-radius: 20px;
    }

    .about__logos__item {
        max-width: 170px;
        flex: 1 1 50%;
    }



    main {
        padding-inline-start: 25px;
    }
}

.question {
    margin-bottom: 1.25rem;
}

main {
    padding-block: 1rem;
}

.question span:not(.form-check>span) {
    display: block;
    height: 0px;
}

@media (max-width: 768px) {
    .banner {
        .mb-5 {
            margin-bottom: 1rem !important;
        }
    }

    table.form-control {
        margin-bottom: 16px;

        td {
            min-height: 55px;

            label {
                font-size: 1.2rem;
            }

        }
    }

    .about__logos__item::before {
        display: none;
    }

    .about__logos__img {
        max-height: 115px;
        max-width: 200px;
    }

    .timeline__items {
        /* flex-direction: column; */
        gap: 8px;
    }

    .about__logos__item {
        max-width: 100%;
        flex: 1 1 45%;
        margin-bottom: 0;
    }

    /* .timeline__arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    } */

    /* .timeline__line {
        width: 2px;
        height: 100%;
        inset-inline-start: 50%;
        top: 0;
        bottom: 0;
        transform: translateX(50%);
    } */

    /* .timeline__labels {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0;
        inset-inline-start: 20px;
    } */

    .timeline__circle {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }

    .timeline__title {
        font-size: 2.5rem;
    }

    .card__login {
        min-width: 100%;
    }

    .about__cards,
    .about__categoies {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__categoies {
        &.about__categoies--sign {
            button {
                padding: 1rem;

                >h2 {
                    display: none;
                }

                &::after {
                    display: none;
                }

            }
        }
    }

    .track-center {
        flex-direction: column;
        gap: 1rem;
        padding-top: 30px;

        >img {
            display: none;
        }

    }

    .login__form--sign {
        button [type="submit"] {
            width: 100%;
        }

    }
}

@media (max-width: 550px) {

    .partners-wrap {
        gap: .5rem;
    }

    .banner__btn {
        padding: 5px 30px;
    }

    .section .d-flex nav.my-3 {
        margin-bottom: 0 !important;
    }

    .banner__header {
        font-size: 4rem;
        margin-bottom: 1rem;
    }

    /* .about__category__head {
        font-size: 1.2rem;
    } */

    .about__category {
        min-height: 90px;
        padding: 1rem !important;
    }

    .about__card__container {
        outline-offset: -5px;
        width: 120px;
        height: 120px;
        gap: 8px;
    }

    .about__card__title {
        font-size: 1rem;
    }

    .about__categoies {
        grid-template-columns: repeat(1, 1fr);
    }

    .about__cards {
        grid-gap: 0;
    }

    .about__card__description {
        margin-top: 2rem;
    }

    .about__card__container::after {
        bottom: -20px;
    }

    .timeline__items {
        flex-direction: column;
    }

    .timeline__arrow .timeline__arrow__img {
        transform: rotate(150deg) translate(-80%, 65%);
        -webkit-transform: rotate(150deg) translate(-80%, 65%);
        -moz-transform: rotate(150deg) translate(-80%, 65%);
        -ms-transform: rotate(150deg) translate(-80%, 65%);
        -o-transform: rotate(150deg) translate(-80%, 65%);
    }

    .timeline__labels {
        display: none;
    }

    .timeline__line {
        display: none;
    }

    .timeline__circle::after,
    .timeline__dot {
        display: none;
    }

    .timeline__arrow {
        height: 30px;
    }

    .banner {
        .fs-1 {
            font-size: 1.2rem;
        }

        .fs-5 {
            font-size: 1rem;
        }

    }

    .section-center {
        flex-direction: column;
        align-items: self-start;
        margin-top: 1.5rem;
        /* justify-content: center; */
    }

    .multi-column-list {
        column-count: 1;
    }

    /* 
    .about__cards {
        grid-template-columns: repeat(1, 1fr);
    } */
}

.gallery {
    img {
        transition: all ease-in-out 0.5s;

        &:hover {
            transform: scale(1.1);
        }

    }
}

.main-scroll {
    max-height: calc(100vh - 156px);
}

.gallery {
    a {
        height: 10rem;
        overflow: hidden;
        display: block;

        img {
            height: 100%;
            object-fit: cover;
            width: 100%;
            object-position: top;
        }

    }

    &.aware-gallery {
        a {
            height: 18rem;
        }

    }
}

.mfp-bottom-bar .mfp-title {
    display: none !important;
}

.banner-text-float {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-top: -40px;
}

.banner--img-float span {
    text-align: center;
    font-size: 2rem;
    line-height: 1.2;
    margin-inline-start: -60px;
    margin-top: -36px;
    font-weight: 600;
}