*{
    box-sizing:border-box;
}
html {
    font-size: 14px;
}

:root {
    --white-medium: #f0eeed;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

    /* Video itself */
    .video-wrapper video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
        object-fit: cover;
        z-index: -1;
    }

    /* Dark overlay */
    .video-wrapper::after {
        content: "";
        position: absolute;
        inset: 0; /* top:0; right:0; bottom:0; left:0 */
        background: rgba(0, 0, 0, 0.5); /* adjust alpha for darkness */
        z-index: 0;
    }

    .video-wrapper .mainText {
        color: #fcfcfc !important;
        position: relative; /* make it appear above the overlay */
        z-index: 1;
    }

    .video-wrapper .mainHr {
        color: #fcfcfc !important;
        position: relative; /* make it appear above the overlay */
        z-index: 1;
    }

/*.btnOrange {
    border: 0.5px solid var(--white-medium);
    color: var(--medium-orange);
    position: relative;
    z-index: 1;
}

.btnOrange:hover {
    border: 1px solid var(--white-medium);
    color: var(--white-medium);
    box-shadow: 1px 1px 15px var(--white-medium);
}*/
.inter-font {
    font-family: 'Inter', system-ui, sans-serif;
}

.dameron-font {
    font-family: 'Dameron', sans-serif;
}

.btnOrange {
    border: 0.5px solid var(--white-medium);
    color: var(--white-medium);
    padding: 14px 36px;
    border-radius: 999px; /* fully rounded sides */

    background: transparent;
    position: relative;
    z-index: 1;
    transition: box-shadow 0.25s ease, color 0.25s ease, border 0.25s ease, transform 0.2s ease;
}

.btnOrange:hover {
    
    border: 1px solid var(--white-medium);
    color: var(--white-medium);
    box-shadow: 0 0 18px rgba(240, 238, 237, 0.6);
    transform: translateY(-2px);
}

/**/
.glowing-border {
    --gradient-glow:yellow,green,blue, purple, red;

    margin-block:3em;
    padding: 8em 3em;
    max-width: 60ch;

    border:10px solid transparent;
    border-left:0;
    border-radius:0 100vw 100vw 0;
    background: 
        linear-gradient(Canvas 0 0) padding-box,
        conic-gradient(var(--gradient-glow)) border-box;
    position:relative;
}

.glowing-border::before, .glowing-border::after{
    content:'';
    position:absolute;

    border-radius:inherit;

}
.glowing-border::after {
    background: conic-gradient(var(--gradient-glow));
    inset:0;
}


/* Second part of column Index */
.service-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 25px;
    color: white;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.service-card i {
    font-size: 28px;
    color: #ff7a18;
    margin-bottom: 10px;
}

.service-card h5 {
    font-weight: 600;
}

.service-card p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 0;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: #ff7a18;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}


.backgroundImage {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), /* dark overlay */
    url('img/background_1.jpg'); /* your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
}