:root {
    --default-font: "yekan", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "yekan", sans-serif;
    --nav-font: "yekan", sans-serif;
}

:root {
    --background-color: #ffffff;
    --default-color: #444444;
    --heading-color: #5f687b;
    --accent-color: #202c49;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
}




:root {
    --nav-color: #5f687b;
    --nav-hover-color: #3F51B5;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #5f687b;
    --nav-dropdown-hover-color: #5f687b;
}

@font-face {
    font-family: yekan;
    src: url("../fonts/yekanbakhfanum-light.woff") format("woff"), url("../fonts/yekanbakhfanum-regular.woff") format("woff"), url("../fonts/yekanbakhfanum-semibold.woff") format("woff"), url("../fonts/yekanbakhfanum-bold.woff") format("woff"), url("../fonts/yekanbakhfanum-extrabold.woff") format("woff");
}

.light-background {
    --background-color: #f9f9f9;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

.accent-background {
    --background-color: #202c49;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #14eb83;
    --contrast-color: #ffffff;
}

:root {
    scroll-behavior: smooth;
}

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    margin: 0;
    padding: 0;
    height: 100% !important;
    width: 100%;
    padding-top: 90px;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

    a:hover {
        color: color-mix(in srgb, var(--accent-color), transparent 25%);
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-weight: bold;
}

.php-email-form .error-message {
    display: none;
    background: rgb(223, 21, 41);
    color: rgb(255, 255, 255);
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: rgb(255, 255, 255);
    background: rgb(5, 150, 82);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

    .php-email-form .loading::before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0px 10px -6px 0px;
        border-top-style:;
        border-top-width:;
        border-right-color:;
        border-right-style:;
        border-right-width:;
        border-bottom-color:;
        border-bottom-style:;
        border-bottom-width:;
        border-left-color:;
        border-left-style:;
        border-left-width:;
        border-image-source:;
        border-image-slice:;
        border-image-width:;
        border-image-outset:;
        border-image-repeat:;
        border-top-color: var(--surface-color);
        animation: 1s linear 0s infinite normal none running php-email-form-loading;
    }

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

    .pulsating-play-btn::before {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        animation: 2s ease 0s infinite normal none running pulsate-play-btn;
        opacity: 1;
        border-radius: 50%;
        border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
        top: -15%;
        left: -15%;
        background: rgba(198, 16, 0, 0);
    }

    .pulsating-play-btn::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0px;
        height: 0px;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid rgb(255, 255, 255);
        z-index: 100;
        transition: 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    .pulsating-play-btn:hover::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0px;
        height: 0px;
        border-right: none;
        border-image: initial;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid rgb(255, 255, 255);
        z-index: 200;
        animation: auto ease 0s 1 normal none running none;
        border-radius: 0px;
    }

    .pulsating-play-btn:hover::after {
        border-left: 15px solid var(--accent-color);
        transform: scale(20);
    }

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

.header {
    color: var(--default-color);
    /* background-color: var(--background-color); */
    padding: 15px 0px;
    transition: 0.5s;
    z-index: 997;
    background-color: #202c49;
}

    .header .logo {
        line-height: 1;
    }

        .header .logo img {
            max-height: 130px;
            margin-right: 8px;
            position: fixed;
            top: 10px;
        }

        .header .logo h1 {
            font-size: 30px;
            margin: 0px;
            font-weight: 700;
            color: var(--heading-color);
        }

    .header .btn-getstarted,
    .header .btn-getstarted:focus {
        color: var(--contrast-color);
        background: var(--accent-color);
        font-size: 14px;
        padding: 8px 25px;
        margin: 0px 30px 0px 0px;
        border-radius: 50px;
        transition: 0.3s;
    }

        .header .btn-getstarted:hover,
        .header .btn-getstarted:focus:hover {
            color: var(--contrast-color);
            background: color-mix(in srgb, var(--accent-color), transparent 15%);
        }

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0px 15px 0px 0px;
        padding: 6px 15px;
        text-align: center;
    }

    .header .navmenu {
        order: 3;
    }
    .header .logo img {
        max-height: 50px;
        margin-right: 8px;
        position: relative;
        top: 0;
    }
    body {
        padding-top: 80px;
    }
}

.scrolled .header {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 18px;
}
.hero {
    width: 100%;
    min-height: 70vh;
    position: relative;
    padding: 0px 0px 60px;
    display: flex;
    align-items: center;
    /*margin-top: 90px;*/
}
@media (min-width: 1200px) {
    .navmenu {
        padding: 0px;
    }

        .navmenu ul {
            margin: 0px;
            padding: 0px;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navmenu li {
            position: relative;
        }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-color);
            padding: 18px 15px;
            font-size: 16px;
            font-family: var(--nav-font);
            font-weight: 400;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
            color: #fff;
        }

    .header .navmenu > ul > li > a.btn-getstarted {
        color: #202c49;
        background: #fff;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-right: 5px;
        transition: 0.3s;
    }

    
    .navmenu li:last-child a {
        color: #fff;
        cursor: pointer;
    }
    .navmenu li:last-child a:hover {
        color: #999;
        
    }
    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: #999999;
    }

    .navmenu .dropdown ul {
        margin: 0px;
        padding: 10px 0px;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 30px;
    }

        .navmenu .dropdown ul li {
            min-width: 200px;
        }

        .navmenu .dropdown ul a {
            padding: 10px 20px;
            font-size: 15px;
            text-transform: none;
            color: var(--nav-dropdown-color);
        }

            .navmenu .dropdown ul a i {
                font-size: 12px;
            }

            .navmenu .dropdown ul a:hover,
            .navmenu .dropdown ul .active:hover,
            .navmenu .dropdown ul li:hover > a {
                color: var(--nav-dropdown-hover-color);
            }

    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0px;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0px;
        left: -100%;
        visibility: visible;
    }

    .login-wrap {
        width: 50%;
    }
    
}

@media (max-width: 1199px) {
    
    .mobile-nav-toggle {
        color: #fff;
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0px;
        z-index: 9997;
    }

        .navmenu ul {
            display: none;
            list-style: none;
            position: absolute;
            inset: 60px 20px 20px;
            padding: 10px 0px;
            margin: 0px;
            border-radius: 6px;
            background-color: var(--nav-mobile-background-color);
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
            box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 30px;
        }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-dropdown-color);
            padding: 10px 20px;
            font-family: var(--nav-font);
            font-size: 17px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: 0.3s;
                background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
            }

                .navmenu a i:hover,
                .navmenu a:focus i:hover {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                }

            .navmenu a:hover,
            .navmenu .active,
            .navmenu .active:focus {
                color: var(--nav-dropdown-hover-color);
            }

                .navmenu .active i,
                .navmenu .active:focus i {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                    transform: rotate(180deg);
                }

        .navmenu .dropdown ul {
            position: static;
            display: none;
            z-index: 99;
            padding: 10px 0px;
            margin: 10px 20px;
            background-color: var(--nav-dropdown-background-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            box-shadow: none;
            transition: 0.5s ease-in-out;
        }

            .navmenu .dropdown ul ul {
                background-color: rgba(33, 37, 41, 0.1);
            }

        .navmenu .dropdown > .dropdown-active {
            display: block;
            background-color: rgba(33, 37, 41, 0.03);
        }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .mobile-nav-toggle {
            color: rgb(255, 255, 255);
            position: absolute;
            font-size: 32px;
            top: 15px;
            right: 15px;
            margin-right: 0px;
            z-index: 9999;
        }

        .mobile-nav-active .navmenu {
            position: fixed;
            overflow: hidden;
            inset: 0px;
            background: rgba(33, 37, 41, 0.8);
            transition: 0.3s;
        }

            .mobile-nav-active .navmenu > ul {
                display: block;
            }
}

@media(max-width: 992px) {
    .login-wrap {
        width: 62%;
    }
}

.footer {
    color: var(--default-color);
    background-color: #202c49;
    font-size: 14px;
    position: relative;
}

    .footer .footer-newsletter {
        background-color: color-mix(in srgb, var(--default-color), transparent 97%);
        padding: 50px 0px;
    }

        .footer .footer-newsletter h4 {
            font-size: 24px;
        }

        .footer .footer-newsletter .newsletter-form {
            margin-top: 30px;
            margin-bottom: 15px;
            padding: 6px 8px;
            position: relative;
            background-color: var(--surface-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 25px;
            display: flex;
            transition: 0.3s;
            border-radius: 50px;
        }

            .footer .footer-newsletter .newsletter-form:focus-within {
                border-color: var(--accent-color);
            }

            .footer .footer-newsletter .newsletter-form input[type="email"] {
                border: 0px;
                padding: 4px;
                width: 100%;
                background-color: var(--surface-color);
                color: var(--default-color);
            }

                .footer .footer-newsletter .newsletter-form input[type="email"]:focus-visible {
                    outline: none;
                }

            .footer .footer-newsletter .newsletter-form input[type="submit"] {
                border: 0px;
                font-size: 16px;
                padding: 0px 20px;
                margin: -7px -8px -7px 0px;
                background: var(--accent-color);
                color: var(--contrast-color);
                transition: 0.3s;
                border-radius: 50px;
            }

                .footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
                    background: color-mix(in srgb, var(--accent-color), transparent 20%);
                }

    .footer .footer-top {
        padding-top: 50px;
    }

    .footer .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid #a3a3a3;
        font-size: 16px;
        color: #a3a3a3;
        margin-right: 10px;
        transition: 0.3s;
    }

        .footer .social-links a:hover {
            color: #fff;
            border-color: #fff;
        }

    .footer h4 {
        font-size: 16px;
        font-weight: bold;
        position: relative;
        padding-bottom: 12px;
        color: #fff;
    }

    .footer .footer-links {
        margin-bottom: 30px;
    }

        .footer .footer-links ul {
            list-style: none;
            padding: 0px;
            margin: 0px;
        }

            .footer .footer-links ul i {
                margin-right: 3px;
                font-size: 12px;
                line-height: 0;
                color: #ffffff;
            }

            .footer .footer-links ul li {
                padding: 10px 0px;
                display: flex;
                align-items: center;
            }

                .footer .footer-links ul li:first-child {
                    padding-top: 0px;
                }

            .footer .footer-links ul a {
                display: inline-block;
                color: #a3a3a3;
                line-height: 1;
            }

                .footer .footer-links ul a:hover, .footer i {
                    color: #fff;
                }

    .footer p {
        color: #a3a3a3;
    }

    .footer .footer-about a {
        color: #ffffff;
        font-size: 24px;
        font-weight: 600;
        font-family: var(--heading-font);
    }

    .footer .footer-contact p {
        margin-bottom: 5px;
    }

    .footer .copyright {
        padding: 25px 0px;
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .footer .copyright p {
            margin-bottom: 0px;
            color: #a3a3a3;
        }

    .footer .credits {
        margin-top: 6px;
        font-size: 13px;
    }

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

    #preloader i {
        font-size: 3rem;
        animation: spin 2s linear infinite;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: 0.4s;
    border: 1px solid #a3a3a3;
}

    .scroll-top i {
        font-size: 24px;
        color: var(--contrast-color);
        line-height: 0;
    }

    .scroll-top:hover {
        background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
        color: var(--contrast-color);
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
        bottom: 15px;
    }

@media screen and (max-width: 768px) {
    [data-aos-delay] {
    }

    .login-wrap {
        width: 100%;
    }
}

.page-title {
    --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 25px 0px;
    position: relative;
}

    .page-title h1 {
        font-size: 24px;
        font-weight: 700;
    }

    .page-title .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0px;
        margin: 0px;
        font-size: 14px;
        font-weight: 400;
    }

        .page-title .breadcrumbs ol li + li {
            padding-left: 10px;
        }

            .page-title .breadcrumbs ol li + li::before {
                content: "/";
                display: inline-block;
                padding-right: 10px;
                color: color-mix(in srgb, var(--default-color), transparent 70%);
            }

section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0px;
    scroll-margin-top: 100px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

.section-title {
    text-align: center;
    padding: 30px 0px;
    margin-bottom: 30px;
    position: relative;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 20px;
        padding-bottom: 0px;
        position: relative;
        z-index: 2;
    }

    .section-title span {
        position: absolute;
        top: 4px;
        color: color-mix(in srgb, var(--heading-color), transparent 95%);
        left: 0px;
        right: 0px;
        z-index: 1;
        font-weight: 700;
        font-size: 52px;
        text-transform: uppercase;
        line-height: 1;
    }

    .section-title p {
        margin-bottom: 0px;
        position: relative;
        z-index: 2;
    }

@media (max-width: 575px) {
    .section-title h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .section-title span {
        font-size: 38px;
    }
}



    .hero h1 {
        margin: 0px;
        font-size: 48px;
        font-weight: 400;
        line-height: 56px;
    }

    .hero p.justify {
        color: #2c58a5;
        margin: 5px 0px 0px;
        font-size: 20px;
        font-weight: 600;
        text-align-last: justify;
    }

.hero .btn-get-started {
        color: var(--contrast-color);
        background: var(--accent-color);
        font-family: var(--heading-font);
        font-weight: 400;
        font-size: 15px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 28px 12px;
        border-radius: 50px;
        transition: 0.5s;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 28px;
    }

        .hero .btn-get-started:hover {
            color: var(--contrast-color);
            background: color-mix(in srgb, var(--accent-color), transparent 15%);
            box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 28px;
        }

    .hero .btn-watch-video {
        font-size: 16px;
        transition: 0.5s;
        margin-right: 25px;
        color: var(--default-color);
        font-weight: 600;
    }

        .hero .btn-watch-video i {
            color: var(--accent-color);
            font-size: 32px;
            transition: 0.3s;
            line-height: 0;
            margin-left: 8px;
        }

        .hero .btn-watch-video:hover {
            color: var(--accent-color);
        }

            .hero .btn-watch-video:hover i {
                color: color-mix(in srgb, var(--accent-color), transparent 15%);
            }

    .hero .animated {
        animation: 2s ease-in-out 0s infinite alternate-reverse both running up-down;
    }

.hero {
    background-image: url('../img/background-hero.jpg');
    background-position: center center;
    background-size: 100% 100%;
}

#jahan-tasme {
    font-size: 55px;
    font-weight: 600;
    position: relative;
    top: 4px;
}

    #jahan-tasme + p {
        font-size: xx-large;
    }

@media (max-width: 640px) {
    .hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .hero p.justify {
        font-size: 13px;
        line-height: 24px;
        margin-bottom: 4px;
        /*text-align-last: unset;*/
        text-align: left;
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero .btn-get-started,
    .hero .btn-watch-video {
        font-size: 13px;
    }

    .hero {
        background-image: url('../img/background-hero-mobile.jpg');
        max-height: 500px;
        margin-bottom: 100px;
    }

    #jahan-tasme {
        padding-top: 600px;
        padding-left: 10px;
        text-align: left;
        font-size: 40px;
    }

    #hero {
        overflow: visible;
    }

    .hero .btn-watch-video {
        margin-right: 0;
    }

    #jahan-tasme + p {
        font-size: 21px;
        margin-top: 9px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .footer .footer-contact p {
        text-align: center;
    }
    .header .logo img {
        max-height: 50px;
        margin-right: 8px;
        position: relative;
        top: 0;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

.featured-services {
    --surface-color: color-mix(in srgb, var(--default-color), transparent 96%);
    padding-top: 0px;
}

    .featured-services .service-item {
        background-color: var(--surface-color);
        padding: 50px 30px;
        transition: 0.4s ease-in-out;
        height: 100%;
    }

        .featured-services .service-item .icon {
            margin-bottom: 10px;
        }

            .featured-services .service-item .icon i {
                color: var(--accent-color);
                font-size: 36px;
                transition: 0.3s;
            }

        .featured-services .service-item h4 {
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 20px;
        }

            .featured-services .service-item h4 a {
                color: var(--heading-color);
                transition: 0.3s ease-in-out;
            }

        .featured-services .service-item p {
            line-height: 24px;
            font-size: 14px;
            margin-bottom: 0px;
        }

        .featured-services .service-item:hover {
            transform: translateY(-10px);
        }

            .featured-services .service-item:hover h4 a {
                color: var(--accent-color);
            }

.about .content h3 {
    font-size: 1rem;
    font-weight: 700;
}

.about .content ul {
    list-style: none;
    padding: 0px;
}

    .about .content ul li {
        padding: 10px 0px 0px;
        display: flex;
    }

    .about .content ul i {
        color: var(--accent-color);
        margin-right: 0.5rem;
        line-height: 1.2;
        font-size: 1.25rem;
    }

.about .content p:last-child {
    margin-bottom: 0px;
}

.about .pulsating-play-btn {
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
}

.stats {
    padding-top: 0px;
}

    .stats .stats-item {
        padding: 30px;
        width: 100%;
    }

        .stats .stats-item span {
            font-size: 48px;
            display: block;
            color: var(--accent-color);
            font-weight: 700;
        }

        .stats .stats-item p {
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            padding: 0px;
            margin: 0px;
            font-family: var(--heading-font);
            font-size: 15px;
            font-weight: 600;
        }

.services .service-item {
    background-color: var(--surface-color);
    text-align: center;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    padding: 80px 20px;
    transition: border 0.3s ease-in-out;
    height: 100%;
}

    .services .service-item .icon {
        margin: 0px auto 20px;
        width: 64px;
        height: 64px;
        background: var(--accent-color);
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }

        .services .service-item .icon i {
            color: var(--contrast-color);
            font-size: 28px;
            transition: 0.3s ease-in-out;
        }

    .services .service-item h3 {
        font-weight: 700;
        margin: 10px 0px 15px;
        font-size: 22px;
        transition: 0.3s;
    }

    .services .service-item p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0px;
    }

    .services .service-item:hover {
        border-color: var(--accent-color);
    }

        .services .service-item:hover h3 {
            color: var(--accent-color);
        }

.portfolio .portfolio-filters {
    padding: 0px;
    margin: 0px auto 20px;
    list-style: none;
    text-align: center;
}

    .portfolio .portfolio-filters li {
        cursor: pointer;
        display: inline-block;
        padding: 0px;
        font-size: 16px;
        font-weight: 600;
        margin: 0px 10px 5px;
        line-height: 1;
        text-transform: uppercase;
        transition: 0.3s ease-in-out;
    }

        .portfolio .portfolio-filters li:hover,
        .portfolio .portfolio-filters li.filter-active {
            color: var(--accent-color);
        }

        .portfolio .portfolio-filters li:first-child {
            margin-left: 0px;
        }

        .portfolio .portfolio-filters li:last-child {
            margin-right: 0px;
        }

@media (max-width: 575px) {
    .portfolio .portfolio-filters li {
        font-size: 14px;
        margin: 0px 5px;
    }
}

.portfolio .portfolio-item {
    position: relative;
}

    .portfolio .portfolio-item .portfolio-info {
        background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
        opacity: 0;
        position: absolute;
        left: 30px;
        right: 30px;
        bottom: 0px;
        z-index: 3;
        transition: 0.3s ease-in-out;
        padding: 15px;
    }

        .portfolio .portfolio-item .portfolio-info h4 {
            font-size: 18px;
            font-weight: 600;
            padding-right: 50px;
        }

        .portfolio .portfolio-item .portfolio-info p {
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            font-size: 14px;
            margin-bottom: 0px;
            padding-right: 50px;
        }

        .portfolio .portfolio-item .portfolio-info .preview-link,
        .portfolio .portfolio-item .portfolio-info .details-link {
            position: absolute;
            right: 50px;
            font-size: 24px;
            top: calc(50% - 14px);
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            transition: 0.3s;
            line-height: 0;
        }

            .portfolio .portfolio-item .portfolio-info .preview-link:hover,
            .portfolio .portfolio-item .portfolio-info .details-link:hover {
                color: var(--accent-color);
            }

        .portfolio .portfolio-item .portfolio-info .details-link {
            right: 14px;
            font-size: 28px;
        }

    .portfolio .portfolio-item:hover .portfolio-info {
        opacity: 1;
        bottom: 20px;
    }

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px;
}

    .testimonials .testimonial-item .testimonial-img {
        width: 90px;
        border-radius: 50%;
        margin: -40px 0px 0px 40px;
        position: relative;
        z-index: 2;
        border: 6px solid var(--background-color);
    }

    .testimonials .testimonial-item h3 {
        font-size: 18px;
        font-weight: bold;
        margin: 10px 0px 5px 45px;
    }

    .testimonials .testimonial-item h4 {
        font-size: 14px;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        margin: 0px 0px 0px 45px;
    }

    .testimonials .testimonial-item .quote-icon-left,
    .testimonials .testimonial-item .quote-icon-right {
        color: color-mix(in srgb, var(--accent-color), transparent 50%);
        font-size: 26px;
        line-height: 0;
    }

    .testimonials .testimonial-item .quote-icon-left {
        display: inline-block;
        left: -5px;
        position: relative;
    }

    .testimonials .testimonial-item .quote-icon-right {
        display: inline-block;
        right: -5px;
        position: relative;
        top: 10px;
        transform: scale(-1, -1);
    }

    .testimonials .testimonial-item p {
        font-style: italic;
        margin: 0px 15px;
        padding: 20px 20px 60px;
        background: color-mix(in srgb, var(--default-color), transparent 97%);
        border-radius: 6px;
        position: relative;
        z-index: 1;
    }

.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

    .testimonials .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: var(--background-color);
        opacity: 1;
        border: 1px solid var(--accent-color);
    }

    .testimonials .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--accent-color);
    }

.call-to-action {
    padding: 80px 0px;
    position: relative;
    clip-path: inset(0px);
}

    .call-to-action img {
        position: fixed;
        top: 0px;
        left: 0px;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .call-to-action::before {
        content: "";
        background: color-mix(in srgb, var(--background-color), transparent 50%);
        position: absolute;
        inset: 0px;
        z-index: 2;
    }

    .call-to-action .container {
        position: relative;
        z-index: 3;
    }

    .call-to-action h3 {
        font-size: 28px;
        font-weight: 700;
        color: var(--default-color);
    }

    .call-to-action p {
        color: var(--default-color);
    }

    .call-to-action .cta-btn {
        font-family: var(--heading-font);
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 12px 40px;
        border-radius: 50px;
        transition: 0.5s;
        margin: 10px;
        border: 2px solid var(--contrast-color);
        color: var(--contrast-color);
    }

        .call-to-action .cta-btn:hover {
            background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
        }

.team .member {
    position: relative;
}

    .team .member .pic {
        overflow: hidden;
        margin-bottom: 50px;
    }

    .team .member .member-info {
        background-color: var(--surface-color);
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 15px;
        position: absolute;
        bottom: -50px;
        left: 20px;
        right: 20px;
        padding: 20px 15px;
        overflow: hidden;
        transition: 0.5s;
    }

    .team .member h4 {
        font-weight: 700;
        margin-bottom: 10px;
        font-size: 16px;
        position: relative;
        padding-bottom: 10px;
    }

        .team .member h4::after {
            content: "";
            position: absolute;
            display: block;
            width: 50px;
            height: 1px;
            background: color-mix(in srgb, var(--default-color), transparent 60%);
            bottom: 0px;
            left: 0px;
        }

    .team .member span {
        font-style: italic;
        display: block;
        font-size: 13px;
    }

    .team .member .social {
        position: absolute;
        right: 15px;
        bottom: 15px;
    }

        .team .member .social a {
            transition: color 0.3s;
            color: color-mix(in srgb, var(--default-color), transparent 70%);
        }

            .team .member .social a:hover {
                color: var(--accent-color);
            }

        .team .member .social i {
            font-size: 16px;
            margin: 0px 2px;
        }

.contact .info-wrap {
    background-color: var(--surface-color);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px;
    padding: 30px;
}

@media (max-width: 575px) {
    .contact .info-wrap {
        padding: 20px;
    }
}

.contact .info-item {
    margin-bottom: 40px;
}

    .contact .info-item i {
        font-size: 20px;
        color: var(--accent-color);
        background: color-mix(in srgb, var(--accent-color), transparent 92%);
        width: 44px;
        height: 44px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        transition: 0.3s ease-in-out;
        margin-left: 15px;
    }

    .contact .info-item h3 {
        padding: 0px;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .contact .info-item p {
        padding: 0px;
        margin-bottom: 0px;
        font-size: 14px;
    }

    .contact .info-item:hover i {
        background: var(--accent-color);
        color: var(--contrast-color);
    }

.contact .php-email-form {
    background-color: var(--surface-color);
    height: 100%;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px;
}

@media (max-width: 575px) {
    .contact .php-email-form {
        padding: 20px;
    }
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea,
input[type="text"],
input[type="number"],
input[type="tel"] {
    /*font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;*/
    border-radius: 0px;
    color: var(--default-color);
    background-color: var(--surface-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

    .contact .php-email-form input[type="text"]:focus,
    .contact .php-email-form input[type="email"]:focus,
    .contact .php-email-form textarea:focus {
        border-color: var(--accent-color);
    }

    .contact .php-email-form input[type="text"]::placeholder,
    .contact .php-email-form input[type="email"]::placeholder,
    .contact .php-email-form textarea::placeholder {
        color: color-mix(in srgb, var(--default-color), transparent 70%);
    }

.contact .php-email-form button[type="submit"] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0px;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}

    .contact .php-email-form button[type="submit"]:hover {
        background: color-mix(in srgb, var(--accent-color), transparent 25%);
    }

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

    .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: color-mix(in srgb, var(--default-color), transparent 85%);
        opacity: 1;
    }

    .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--accent-color);
    }

.portfolio-details .portfolio-info {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 30px;
}

    .portfolio-details .portfolio-info h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    }

    .portfolio-details .portfolio-info ul {
        list-style: none;
        padding: 0px;
        font-size: 15px;
    }

        .portfolio-details .portfolio-info ul li + li {
            margin-top: 10px;
        }

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

    .portfolio-details .portfolio-description h2 {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .portfolio-details .portfolio-description p {
        padding: 0px;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
    }

.service-details .service-box {
    background-color: var(--surface-color);
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 20px;
}

    .service-details .service-box + .service-box {
        margin-top: 30px;
    }

    .service-details .service-box h4 {
        font-size: 20px;
        font-weight: 700;
        border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

.service-details .services-list {
    background-color: var(--surface-color);
}

    .service-details .services-list a {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        background-color: color-mix(in srgb, var(--default-color), transparent 96%);
        display: flex;
        align-items: center;
        padding: 12px 15px;
        margin-top: 15px;
        transition: 0.3s;
    }

        .service-details .services-list a:first-child {
            margin-top: 0px;
        }

        .service-details .services-list a i {
            font-size: 16px;
            margin-right: 8px;
            color: var(--accent-color);
        }

        .service-details .services-list a.active {
            color: var(--contrast-color);
            background-color: var(--accent-color);
        }

            .service-details .services-list a.active i {
                color: var(--contrast-color);
            }

        .service-details .services-list a:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
            color: var(--accent-color);
        }

.service-details .download-catalog a {
    color: var(--default-color);
    display: flex;
    align-items: center;
    padding: 10px 0px;
    transition: 0.3s;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .service-details .download-catalog a:first-child {
        border-top: 0px;
        padding-top: 0px;
    }

    .service-details .download-catalog a:last-child {
        padding-bottom: 0px;
    }

    .service-details .download-catalog a i {
        font-size: 24px;
        margin-right: 8px;
        color: var(--accent-color);
    }

    .service-details .download-catalog a:hover {
        color: var(--accent-color);
    }

.service-details .help-box {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    margin-top: 30px;
    padding: 30px 15px;
}

    .service-details .help-box .help-icon {
        font-size: 48px;
    }

    .service-details .help-box h4,
    .service-details .help-box a {
        color: var(--contrast-color);
    }

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
}

.service-details p {
    font-size: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0px;
    font-size: 15px;
}

    .service-details ul li {
        padding: 5px 0px;
        display: flex;
        align-items: center;
    }

    .service-details ul i {
        font-size: 20px;
        margin-right: 8px;
        color: var(--accent-color);
    }

#login-wrap {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 18px;
    background-color: #fff;
}

.btn {
    border-radius: 50px;
    padding: 8px 25px;
}

.bg-main {
    background-color: #202c49;
}

.bg-transparent {
    background: transparent !important;
}

.swal-button {
    background-color: #0d6efd;
    border-radius: 50px;
    font-weight: 500;
}

    .swal-button:not([disabled]):hover {
        background-color: #0b5ed7
    }

.form-control, .form-select, .input-group-text {
    border-radius: 0;
}

.custom-file-button input[type=file] {
    margin-left: -2px !important;
}

    .custom-file-button input[type=file]::-webkit-file-upload-button {
        display: none;
    }

    .custom-file-button input[type=file]::file-selector-button {
        display: none;
    }

.custom-file-button:hover label {
    background-color: #dde0e3;
    cursor: pointer;
}

.form-select {
    font-size: 14px;
    padding: 10px 15px;
}

html {
    height: 100%;
}

.datepicker-navigator, .pwt-btn, .table-days, .year-item, .month-item, .header-row, .toolbox {
    font-family: 'yekan' !important;
    font-size: 15px;
}

.datepicker-plot-area {
    width: 286px;
}

.badge {
    border-radius: 4px;
    font-size: 12px;
    line-height: 1;
    padding: .375rem .5625rem;
    font-weight: normal;
}

.badge-success {
    color: #fff;
    background-color: #17c964;
}

.badge-danger {
    color: #fff;
    background-color: #ff0000;
}

.badge-info {
    color: #fff;
    background-color: #2b80ff;
}

.badge-light {
    color: #212529;
    background-color: #e6e6e6;
}

.badge-dark {
    color: #fff;
    background-color: #000000;
}
/*Badge outlined variations*/
.badge-outline-primary {
    color: #f2125e;
    border: 1px solid #f2125e;
}

.badge-outline-secondary {
    color: #392ccd;
    border: 1px solid #392ccd;
}

.badge-outline-success {
    color: #17c964;
    border: 1px solid #17c964;
}

.badge-outline-info {
    color: #2b80ff;
    border: 1px solid #2b80ff;
}

.badge-outline-warning {
    color: #ff8300;
    border: 1px solid #ff8300;
}

.badge-outline-danger {
    color: #ff0000;
    border: 1px solid #ff0000;
}

.badge-outline-light {
    color: #e6e6e6;
    border: 1px solid #e6e6e6;
}

.badge-outline-dark {
    color: #000000;
    border: 1px solid #000000;
}

.table th, .table td {
    vertical-align: middle;
    line-height: 1;
}

.table .btn-sm {
    border-radius: 4px;
    font-size: 12px;
    line-height: 1;
    padding: .375rem .5625rem;
    font-weight: normal;
}

.dir-ltr {
    direction: ltr;
}

.mr-2 {
    margin-right: 0.5rem !important;
}

.breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: .25rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    float: right;
    padding-left: 5px;
    content: var(--bs-breadcrumb-divider, "/");
}

/**
**************
*/

.m-0 {
    margin: 0 !important;
}

.mt-0, .demo-modal .modal-dialog,
.my-0 {
    margin-top: 0 !important;
}

.mr-0, .rtl .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .navbar-dropdown .dropdown-item i, .rtl .settings-panel .sidebar-bg-options .rounded-circle, .rtl .settings-panel .sidebar-bg-options .color-tiles .tiles, .rtl .settings-panel .color-tiles .sidebar-bg-options .tiles, .rtl .settings-panel .events i,
.mx-0 {
    margin-right: 0 !important;
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}

.ml-0, .rtl .preview-list .preview-item .preview-thumbnail .preview-icon i, .rtl .list-wrapper .remove,
.mx-0 {
    margin-left: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.mt-1,
.my-1 {
    margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
    margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
    margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
    margin-left: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.mt-2, .template-demo > .btn-group,
.template-demo > .btn-group-vertical, .template-demo .circle-progress,
.my-2 {
    margin-top: 0.5rem !important;
}

.mr-2, .template-demo > .btn, .template-demo > .btn-group,
.template-demo > .btn-group-vertical, .template-demo > .dropdown,
.mx-2 {
    margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
    margin-bottom: 0.5rem !important;
}

.ml-2, .btn-toolbar .btn-group + .btn-group, .rtl .settings-panel .events i,
.mx-2 {
    margin-left: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.mt-3, .template-demo > .btn, .template-demo > .btn-toolbar,
.my-3 {
    margin-top: 1rem !important;
}

.mr-3, .template-demo > .btn-toolbar,
.mx-3 {
    margin-right: 1rem !important;
}

.mb-3, .template-demo .circle-progress-block,
.my-3 {
    margin-bottom: 1rem !important;
}

.ml-3, .rtl .settings-panel .sidebar-bg-options .rounded-circle, .rtl .settings-panel .sidebar-bg-options .color-tiles .tiles, .rtl .settings-panel .color-tiles .sidebar-bg-options .tiles,
.mx-3 {
    margin-left: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.mt-4,
.my-4 {
    margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
    margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
    margin-left: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.mt-5,
.my-5 {
    margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
    margin-right: 3rem !important;
}

.mb-5,
.my-5 {
    margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
    margin-left: 3rem !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-0,
.py-0 {
    padding-top: 0 !important;
}

.pr-0,
.px-0 {
    padding-right: 0 !important;
}

.pb-0,
.py-0 {
    padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
    padding-left: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.pt-1,
.py-1 {
    padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
    padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
    padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
    padding-left: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.pt-2,
.py-2 {
    padding-top: 0.5rem !important;
}

.pr-2,
.px-2,
.template-demo .circle-progress-block {
    padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
    padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2,
.template-demo .circle-progress-block {
    padding-left: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.pt-3,
.py-3 {
    padding-top: 1rem !important;
}

.pr-3,
.px-3 {
    padding-right: 1rem !important;
}

.pb-3,
.py-3 {
    padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
    padding-left: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.pt-4,
.py-4 {
    padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
    padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
    padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
    padding-left: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.pt-5,
.py-5 {
    padding-top: 3rem !important;
}

.pr-5,
.px-5 {
    padding-right: 3rem !important;
}

.pb-5,
.py-5 {
    padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
    padding-left: 3rem !important;
}

/*************/
.btn-close {
    margin-right: auto !important;
    margin-left: 0px !important;
}
/******************************/
.btn-sm-has-spinner {
    min-width: 140px;
}

.fs-6 {
    font-size: 0.9rem !important;
}

select.serif > option:not(:first-child) {
    font-family: serif !important;
}

table td.serif {
    font-family: serif !important;
}

.main {
    min-height: 600px;
}

table.dataTable.table-bordered th, table.dataTable.table-bordered td {
    border: 1px solid #eee !important;
    font-size: 0.9rem !important;
    text-align: center;
    font-weight: 300;
    line-height: normal;
}

table.text-center td, table.text-center th, table.dataTable td.dt-type-numeric {
    text-align: center !important;
}

.dt-container div.justify-content-between {
    margin-bottom: 10px;
}

.dt-length .custom-select {
    /* -webkit-appearance: auto !important;
    -moz-appearance: auto !important;*/
    appearance: auto !important;
}

.form-check-inline {
    margin-right: 0;
}

.page-item:first-child .page-link {
    border-top-right-radius: var(--bs-pagination-border-radius);
    border-bottom-right-radius: var(--bs-pagination-border-radius);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.page-item:last-child .page-link {
    border-top-left-radius: var(--bs-pagination-border-radius);
    border-bottom-left-radius: var(--bs-pagination-border-radius);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.rotate-90 {
    transform: rotate(90deg);
}

#section-purchases {
    padding-top: 50px;
}
#header {
    position: fixed;
    width: 100%;
}
 