@font-face {
    font-family: 'Poppins Light';
    src: url(../fonts/Poppins-Light.ttf);
}

@font-face {
    font-family: 'Poppins Medium';
    src: url(../fonts/Poppins-Medium.ttf);
}

@font-face {
    font-family: 'Poppins Bold';
    src: url(../fonts/Poppins-Bold.ttf);
}

@font-face {
    font-family: 'Poppins SemiBold';
    src: url(../fonts/Poppins-SemiBold.ttf);
}

@font-face {
    font-family: 'Poppins Regular';
    src: url(../fonts/Poppins-Regular.ttf);
}

@font-face {
    font-family: 'Tajawal Regular';
    src: url(../fonts/Tajawal/Tajawal-Regular.ttf);
}

@font-face {
    font-family: 'Tajawal Medium';
    src: url(../fonts/Tajawal/Tajawal-Medium.ttf);
}

@font-face {
    font-family: 'Tajawal Bold';
    src: url(../fonts/Tajawal/Tajawal-Bold.ttf);
}
/* Inter Font */
@font-face {
    font-family: 'Inter';
    src: url(../fonts/Inter/Inter-Regular.otf);
}

@font-face {
    font-family: 'Inter Medium';
    src: url(../fonts/Inter/Inter-Medium.otf);
}

@font-face {
    font-family: 'Inter SemiBold';
    src: url(../fonts/Inter/Inter-SemiBold.otf);
}

@font-face {
    font-family: 'Inter Bold';
    src: url(../fonts/Inter/Inter-Bold.otf);
}

@font-face {
    font-family: 'Inter Light';
    src: url(../fonts/Inter/Inter-Light-BETA.otf);
}

* {
    margin: 0;
    border: none;
    padding: 0;
    box-sizing: border-box;
}

body {
    position: relative;
    overflow-x: hidden;
    background-image: url(../images/background.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

button, a, .btn-hover {
    transition: 0.3s;
}

input:focus-visible {
    outline: none;
}

button:hover, .btn-hover:hover {
    transform: scale(0.9);
}
/* Sections */
.large-text {
    font-family: 'Poppins SemiBold';
    font-size: 68px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.Mid-text {
    font-family: 'Poppins Medium';
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    color: #FFFFFF;
}

.text-48size {
    font-family: 'Poppins Bold';
    font-size: 40px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: capitalize;
}

.text-24size {
    font-family: 'Poppins Regular';
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
}

.text-16size {
    font-family: 'Poppins Regular';
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
}

.text-32size {
    font-family: 'Poppins SemiBold';
    font-size: 28px;
    font-weight: 600;
    color: #FFFFFF;
}

.poppins-32bold {
    font-family: 'Poppins Bold';
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
}

.text-head {
    font-family: 'Inter Bold';
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    background: var(--mainColor);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-20size {
    font-family: 'Inter Bold';
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
}

.inter-28Regular {
    font-family: 'Inter Light';
    font-size: 24px;
    font-weight: 300;
    color: #FFFFFF;
}

.inter-24Regular {
    font-family: 'Inter Light';
    font-size: 20px;
    font-weight: 300;
    color: #FFFFFF;
}

.inter-28Mid {
    font-family: 'Inter Medium';
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
}

.inter-28Bold {
    font-family: 'Inter Bold';
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
}

.text-head-card {
    font-family: 'Poppins Bold';
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
}

.btn-linear {
    background: var(--mainColor);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    width: max-content;
    font-family: 'Poppins Medium';
    font-weight: 500;
}

    .btn-linear:hover {
        background: var(--secondaryColor);
    }

.text-linear {
    color: #FFFFFF;
    background: var(--mainColor);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-public {
    padding: 200px 90px;
}

.fx-general-cards {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-wrap: wrap;
}

    .fx-general-cards .fx-general-card-st {
        flex: 1 1 calc(25% - 48px);
        box-sizing: border-box;
        max-width: calc(26% - 48px);
        width: 100%;
    }
/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 48px;
}

    .pagination button {
        background: rgba(63, 31, 85, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        height: 42.64px;
        padding: 0 15px;
        border-radius: 4px;
        font-family: 'Poppins Medium';
        font-size: 18px;
        font-weight: 500;
        color: rgba(255, 255, 255, 1);
        transition: 0.3s;
    }

        .pagination button:hover,
        .pagination button.active {
            background: #3F1F55;
        }
/* Footer */
footer {
    background: #1E1F31;
}

    footer .footer-container {
        padding: 48px 70px;
    }

        footer .footer-container .footer-fx {
            display: flex;
            align-items: start;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
        }

            footer .footer-container .footer-fx .footer-column {
                flex: 1 1 calc(19% - 45px);
                box-sizing: border-box;
                max-width: calc(28% - 45px);
                width: 100%;
            }

            footer .footer-container .footer-fx .footer-links {
                display: flex;
                flex-direction: column;
                gap: 32px;
                justify-content: center;
            }

                footer .footer-container .footer-fx .footer-links a {
                    font-size: 17px;
                }

            footer .footer-container .footer-fx .footer-contactInfo {
                display: flex;
                flex-direction: column;
                gap: 16px;
            }

                footer .footer-container .footer-fx .footer-contactInfo h5 {
                    font-family: 'Poppins Bold';
                    font-size: 17px;
                    font-weight: 700;
                    color: #FFFFFF;
                    text-transform: capitalize;
                }

                footer .footer-container .footer-fx .footer-contactInfo span {
                    font-family: 'Poppins Regular';
                    font-size: 14px;
                    font-weight: 400;
                    color: #FFFFFF;
                }

            footer .footer-container .footer-fx .footer-links a {
                text-decoration: none;
            }

            footer .footer-container .footer-fx .footer-icons {
                gap: 24px;
            }

            footer .footer-container .footer-fx .fx-footer-sizes {
                flex: 1 1 calc(14% - 45px);
                max-width: calc(20% - 45px);
            }

            footer .footer-container .footer-fx .fx-footer-sizes2 {
                flex: 1 1 calc(15% - 45px);
                max-width: calc(25% - 45px);
            }

            footer .footer-container .footer-fx .fx-footer-sizes3 {
                flex: 1 1 calc(12% - 45px);
                max-width: calc(25% - 45px);
            }

        footer .footer-container .copyrights {
            font-family: 'Poppins Medium';
            font-size: 20px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            padding: 48px 0 0 0;
            text-align: center;
            margin-top: 48px;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
        }

            footer .footer-container .copyrights p {
                margin-bottom: 0px;
            }

        footer .footer-container .footer-fx .footer-column .footer-logo {
            cursor: pointer;
            max-height: 150px;
        }
/* End Pagination */
@media (max-width: 1300px) {
    .fx-general-cards .fx-general-card-st {
        flex: 1 1 calc(24% - 16px);
        max-width: calc(24% - 16px);
    }

    .fx-general-cards {
        gap: 36px;
    }
}

@media (max-width: 1150px) {
    .fx-general-cards .fx-general-card-st {
        flex: 1 1 calc(33% - 16px);
        max-width: calc(32% - 16px);
    }
}

@media (min-width:1700px) {
    .large-text {
        font-size: 68px;
    }

    .poppins-32bold {
        font-size: 32px;
    }

    .inter-24Regular {
        font-size: 24px;
    }

    .text-48size {
        font-size: 48px;
    }

    .text-head,
    .Mid-text,
    .text-head-card,
    .text-24size {
        font-size: 24px;
    }

    .text-32size {
        font-size: 32px;
    }

    .text-20size {
        font-size: 16px;
    }

    footer .footer-container .footer-fx .footer-contactInfo h5 {
        font-size: 20px;
    }

    footer .footer-container .footer-fx .footer-contactInfo span {
        font-size: 16px;
    }

    footer .footer-container .footer-fx .footer-links a {
        font-size: 20px;
    }

    .inter-28Regular, .inter-28Mid, .inter-28Bold {
        font-size: 28px;
    }
}

@media (min-width:1710px) {
}

@media (min-width:2000px) {
}

@media (max-width:1400px) {
    .large-text {
        font-size: 68px;
    }

    footer .footer-container {
        padding: 48px 90px;
    }

    .page-public {
        padding: 150px 55px;
    }
}

@media (max-width:1300px) {
    .large-text {
        font-size: 50px;
    }

    .text-20size {
        font-size: 13px;
    }

    footer .footer-container {
        padding: 48px 35px;
    }

        footer .footer-container .footer-fx .footer-column {
            flex: 1 1 calc(21% - 45px);
            max-width: calc(32% - 45px);
        }

    .inter-28Regular, .inter-28Mid, .inter-28Bold {
        font-size: 24px;
    }
}

@media (max-width:1150px) {
    .text-24size {
        font-size: 16px;
    }

    .text-32size {
        font-size: 22px;
    }

    .text-20size {
        font-size: 12px;
    }

    footer .footer-container .footer-fx .footer-column {
        flex: 1 1 calc(30% - 45px);
        max-width: calc(38% - 45px);
    }

    footer .footer-container {
        padding: 48px 24px;
    }

    .inter-28Regular, .inter-28Mid, .inter-28Bold {
        font-size: 20px;
    }

    .large-text {
        font-size: 40px;
    }

    .page-public {
        padding: 150px 45px;
    }
}

@media (max-width:1000px) {
    .large-text {
        font-size: 36px;
    }

    .text-48size {
        font-size: 24px;
    }

    .text-head {
        font-size: 16px;
    }

    .inter-28Regular, .inter-28Mid, .inter-28Bold {
        font-size: 18px;
    }

    .page-public {
        padding: 100px 20px;
    }

    footer .footer-container {
        padding: 0 20px;
    }

        footer .footer-container .footer-fx {
            flex-direction: column;
        }

            footer .footer-container .footer-fx .footer-column {
                max-width: 100%;
            }

        footer .footer-container .copyrights {
            padding: 24px 0;
        }

            footer .footer-container .copyrights p {
                font-size: 16px;
            }

        footer .footer-container .footer-fx .footer-contactInfo h5 {
            font-size: 20px;
        }

        footer .footer-container .copyrights {
            margin-top: 42px;
        }

        footer .footer-container .footer-icons {
            padding-top: 17px;
        }

        footer .footer-container .footer-fx .footer-contactInfo h5 {
            padding-top: 10px;
        }

}
