﻿
.form-signin {
    max-width: 330px;
    padding: 1rem;
}

    .form-signin .form-floating:focus-within {
        z-index: 2;
    }


    .form-signin input[type="password"] {
        margin-bottom: 10px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}

.b-example-divider {
    width: 100%;
    height: 3rem;
    background-color: rgba(42, 9, 58, .1);
    border: solid rgba(42, 9, 58, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(42, 9, 58, .1), inset 0 .125em .5em rgba(42, 9, 58, .15);
}

.b-example-vr {
    flex-shrink: 0;
    width: 1.5rem;
    height: 100vh;
}

.bi {
    vertical-align: -.125em;
    fill: currentColor;
}

.nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
}

    .nav-scroller .nav {
        display: flex;
        flex-wrap: nowrap;
        padding-bottom: 1rem;
        margin-top: -1px;
        overflow-x: auto;
        text-align: center;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

.btn-bd-primary {
    --bd-violet-bg: #5c0f8c;
    --bd-violet-rgb: 112.520718, 44.062154, 249.437846;
    --bs-btn-font-weight: 600;
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bd-violet-bg);
    --bs-btn-border-color: var(--bd-violet-bg);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: #510c76;
    --bs-btn-hover-border-color: #510c76;
    --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
    --bs-btn-active-color: var(--bs-btn-hover-color);
    --bs-btn-active-bg: #490e67;
    --bs-btn-active-border-color: #490e67;
}

.bd-mode-toggle {
    z-index: 1500;
}

.topbar {
    background: #5c0f8c;
    height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    color: #fff;
    padding: 0;
}

    .topbar .contact-info i {
        font-style: normal;
        color: #fff;
        line-height: 0;
    }

        .topbar .contact-info i a,
        .topbar .contact-info i span {
            padding-left: 5px;
            color: #fff;
        }

@media (max-width: 575px) {

    .topbar .contact-info i a,
    .topbar .contact-info i span {
        font-size: 13px;
    }
}

.topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
}

    .topbar .contact-info i a:hover {
        color: #fff;
        text-decoration: underline;
    }

.topbar .social-links a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}

    .topbar .social-links a:hover {
        color: #fff;
    }


.header {
    transition: all 0.5s;
    z-index: 997;
    height: 120px;
    background-color: var(--color-primary);
}

    .header.sticked {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        height: 70px;
        box-shadow: 0px 2px 20px rgba(42, 9, 58, 0.1);
    }

    .header .logo img {
        max-height: 40px;
        margin-right: 6px;
    }

    .header .logo h1 {
        font-size: 30px;
        margin: 0;
        font-weight: 600;
        letter-spacing: 0.8px;
        color: #fff;
        font-family: var(--font-primary);
    }

        .header .logo h1 span {
            color: #f96f59;
        }

.sticked-header-offset {
    margin-top: 70px;
}

section {
    scroll-margin-top: 70px;
}

/*--------------------------------------------------------------
# service-work
--------------------------------------------------------------*/
.service-work.card {
    border-radius: 10px !important;
    cursor: pointer;
}

.service-work .service-work-vertical {
    background: rgb(42, 9, 58);
    background: linear-gradient(0deg, rgba(42, 9, 58,1) 0%, rgba(42, 9, 58,0) 33.33%, rgba(255,255,255,1) 66.66%, rgba(255,255,255,0) 99.99%);
    background-size: 300% 300%;
    background-position: 0% 100%;
    transition: .5s;
}

    .service-work .service-work-vertical:hover {
        background-position: 0% 0%;
        transition: .5s;
    }

        .service-work .service-work-vertical:hover * {
            color: #2a093a;
            border-color: #2a093a;
            transition: .5s;
        }

.recent-work.card {
    border-radius: 10px !important;
}

.recent-work .recent-work-vertical {
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 33.333%, rgba(97,84,199,1) 66.666%, rgba(255,255,255,0) 99.999%);
    background-size: 300% 300%;
    background-position: 0% 100%;
    transition: .5s;
    cursor: pointer;
}

    .recent-work .recent-work-vertical:hover {
        background-position: 0% 0%;
        transition: .5s;
    }

        .recent-work .recent-work-vertical:hover div.recent-work-content {
            top: 50%;
            margin-top: -2.5em;
            position: absolute;
        }

        .recent-work .recent-work-vertical:hover * {
            color: white;
            transition: .5s;
        }
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    font-size: 14px;
    background-color: var(--color-primary);
    padding: 20px 0;
    color: white;
}

    .footer .footer-info .logo {
        line-height: 0;
        margin-bottom: 25px;
    }

        .footer .footer-info .logo img {
            max-height: 40px;
            margin-right: 6px;
        }

        .footer .footer-info .logo span {
            font-size: 30px;
            font-weight: 700;
            letter-spacing: 1px;
            color: #fff;
            font-family: var(--font-primary);
        }

    .footer .footer-info p {
        font-size: 14px;
        font-family: var(--font-primary);
    }

    .footer .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.2);
        font-size: 16px;
        color: rgba(255, 255, 255, 0.7);
        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;
    }

    .footer .footer-links {
        margin-bottom: 30px;
    }

        .footer .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .footer .footer-links ul i {
                padding-right: 2px;
                color: rgba(131, 72, 173, 0.8);
                font-size: 12px;
                line-height: 0;
            }

            .footer .footer-links ul li {
                padding: 10px 0;
                display: flex;
                align-items: center;
            }

                .footer .footer-links ul li:first-child {
                    padding-top: 0;
                }

            .footer .footer-links ul a {
                color: rgba(255, 255, 255, 0.7);
                transition: 0.3s;
                display: inline-block;
                line-height: 1;
            }

                .footer .footer-links ul a:hover {
                    color: #fff;
                }

    .footer .footer-contact p {
        line-height: 26px;
    }

    .footer .copyright {
        text-align: center;
    }

    .footer .credits {
        padding-top: 4px;
        text-align: center;
        font-size: 13px;
    }

        .footer .credits a {
            color: #fff;
        }

.typo-space-line::after,
.typo-space-line-center::after {
    content: "";
    width: 150px;
    display: block;
    position: absolute;
    border-bottom: 5px solid #5c0f8c;
    padding-top: .5em;
}

.typo-space-line-center::after {
    left: 50%;
    margin-left: -75px;
}


.page-heading {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-image: url('../images/devices.png');
    padding: 230px 0px 120px 0px;
    position: relative;
    overflow: hidden;
}

.btn-delete {
    color: #5c0f8c;
    background-color: #F1B1B8;
    text-align: center;
}
