:root {
    --white: #fff;
    --gray: #fbfbff;
    --black: #000;
    --purple: #E748FA;
}

html, body {
    color: var(--black);
    margin: 0;
    padding: 0;
    font-size: 1rem;
    height: 100dvh;
    min-height: 100%; 
    letter-spacing: 0.04rem;
    scroll-behavior: smooth;
    line-height: 1.2;
    background: var(--gray);
    font-family: 'Manrope', sans-serif;
}

a {
    color: var(--black);
    text-decoration: none;
    cursor: pointer;
}

main {
    position: relative;
}

section {
    scroll-margin-top: 80px;
}

.container {
  width: 72%;
  max-width: 1600px;
  height: 100%;
  margin: 0 auto;
  padding: 0;
}

input[type=radio], input[type=checkbox]{
    accent-color: var(--purple); 
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    .navbar-t {
        background: rgba(0,8,61,0.35);
        transition: 0.2s;
        .container {
            height: 100px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: 0.2s;
            .l {
                .logo {
                    img {
                        transition: 0.2s;
                        padding-top: 4px;
                    }
                }
            }
            .r {
                display: flex;
                height: 100%;
                align-items: center;
                .menu {
                    ul {
                        padding: 0;
                        margin: 0;
                        list-style-type: none;
                        li {
                            a {
                                font-weight: 600;
                                font-size: 1.05rem;
                                color: var(--gray);
                                padding: 0 0 0 50px;
                                transition: 0.2s;
                                height: 100%;
                            }
                            a:hover {
                                color: var(--purple);
                            }
                        }
                    }
                }
            }
        }
    }
}

header.shrink .navbar-t {
    background: rgba(0,8,61,1);
}

header.shrink .navbar-t .container{
    height: 80px;
}

/* 
header.shrink .navbar-t .container .logo img{
    width: 195px;
}


header.shrink .navbar-b .container .menu ul li a {
    padding: 20px 0;
} */

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

    .content {
        text-align: center;
        h1:first-child {
            margin: 0 0 0 0;
            color: var(--purple);
            font-weight: 500;
            font-size: 1.35em;
            line-height: 1;
            letter-spacing: 3px;
            text-shadow: var(--purple) 1px 0 3px;
        }
        h1 {
            margin: 16px 0 0 0;
            color: #fff;
            font-size: 3.2em;
            line-height: 1.35;
            font-weight: 700;
            letter-spacing: 1.6px;
            filter: drop-shadow(0px 0px 4px #000);
        }
        .button {
            margin: 36px 0 clamp(15px, 1vw, 40px) 0px;
            a {
                color: #fff;
                font-weight: 600;
                border: 2px solid var(--purple);
                background: rgba(231,72,250,0.1);
                border-radius: 12px;
                transition: 0.15s all ease;
                font-size: 1.3rem;
                padding: 10px 24px 10px 42px;
                position: relative;
                transition: 0.2s;
                letter-spacing: 2px;
                i {
                    position: absolute;
                    left: 10px;
                    top: 10px;
                    font-size: 21px;
                    animation: arrowMove 2s ease-in-out infinite;
                }    
            }
            a:hover {
                background: rgba(231,72,250,1);
            }
            
        }
    }
}

.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    background: var(--black);
    opacity: 0.13;
}

.content {
    position: relative;
    max-width: 1000px;
    padding: 20px;
    z-index: 2;
}

.content p {
    margin: 15px 0;
    font-size: 1.2rem;
    line-height: 1.6;
}

.calc {
    .container {
        padding: 40px 0;
        .main-title {
            font-size: 2.6rem;
            font-weight: 600;    
            margin: 0 0 12px 0;
        }
        .sub-title {
            font-size: 1.4rem;
            margin: 0 0 6px 0; 
        }
        .ediscovery_calc_form {
            label {
                h3 {
                    margin: 38px 0 12px 0px;
                }
            }
            .fw-sb {
                font-size: 1.8rem;
                font-weight: 600;   
            }
            .radio-group {
                display: flex;
                gap: 15px;
                font-weight: 500;
                font-size: 1.05rem;
            }
            .range_container {
                display: flex;
                align-items: center;
                width: min-content;
                position: relative;
                .range {
                    width: 320px;
                    -webkit-appearance: none;
                    height: 18px;
                    border-radius: 6px;
                    background: #d3d3d3;
                    outline: none;
                    opacity: 0.7;
                    -webkit-transition: .2s;
                    transition: opacity .2s;
                }
                .range:hover {
                    opacity: 1;
                }
                .range::-moz-range-thumb  {
                    height: 18px;
                    width: 18px;
                    background: var(--purple);
                    cursor: pointer;
                    border-radius: 6px;
                }
                .range::-webkit-slider-thumb {
                    -webkit-appearance: none;
                    appearance: none;
                    height: 18px;
                    width: 18px;
                    background: var(--purple);
                    cursor: pointer;
                    border-radius: 6px;
                }
                span {
                    width: 40px;
                    font-weight: 500;
                    font-size: 1.05rem;
                    text-align: center;
                }
                .range_label {
                    position: absolute;
                    top: 50%;
                    font-weight: 500;
                    font-size: 1.05rem;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    padding-top: 48px;
                }
                .value_button {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 32px;
                    height: 32px;
                    cursor: pointer;
                    user-select: none;
                    -webkit-user-select: none;
                    -webkit-tap-highlight-color: transparent;
                }
            }
        }
        .forms {
            display: flex;
        }
        .form {
            max-width: 600px;
            margin: 40px auto;
            fieldset {
                border: 1px solid #e5e7eb;
                border-radius: 14px;
                padding: 18px 30px;
                background: #fff;
                margin: 0 0 20px 0;
            }

            legend {
                font-size: 20px;
                font-weight: 700;
                color: #1f2937;
            }

            label {
                display: block;
                margin-top: 20px;
                margin-bottom: 14px;
                color: #374151;
            }

            .top {
                margin-top: 4px;
            }

            input,
            select,
            textarea {
                padding: 14px 16px;
                border: 1px solid #d1d5db;
                border-radius: 10px;
                font-size: 15px;
                transition: .2s;
                box-sizing: border-box;
                font-family: inherit;
            }

            input[type=text], input[type=tel], input[type=email], select {
                width: 100%;
            }

            input:focus,
            select:focus,
            textarea:focus {
                outline: none;
                border-color: var(--purple);
                box-shadow: 0 0 0 4px rgba(37,99,235,.12);
            }

            textarea {
                width: 100%;
                resize: vertical;
                min-height: 120px;
            }

            button {
                align-self: flex-start;
                padding: 14px 28px;
                border: none;
                border-radius: 10px;
                background: var(--purple);
                color: #fff;
                font-size: 16px;
                font-weight: 600;
                cursor: pointer;
                transition: .2s;
            }

            button:hover {
                background: var(--purple);
            }

            .options {
                display: grid;
                grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
                gap: 12px;
                margin-top: 10px;
            }

            .options label {
                display: flex;
                align-items: center;
                gap: 12px;
                padding: 14px;
                margin: 0;
                border: 1px solid #d1d5db;
                border-radius: 10px;
                cursor: pointer;
                transition: .2s;
            }

            .options label:hover {
                border-color: #2563eb;
                background: #eff6ff;
            }

            .options input {
                width: auto;
            }

            h3 {
                font-size: 32px;
                margin: 0px;
            }

            h4 {
                max-width: 700px;
                color: #6b7280;
                font-weight: 400;
                line-height: 1.6;
                margin-bottom: 40px;
            }
        }
    }
}

footer {
    padding: 25px 0;
    text-align: center;
    font-weight: 500;
    background: rgb(0,8,61);
    color: var(--white);
}

@media only screen and (max-width: 999px) {
        .hero {
            .content {
                h1:first-child {
                    font-size: 1.1em;
                }
                h1 {
                    margin: 14px 0 0 0;
                    color: #fff;
                    font-size: 2.1em;
                }
            }
    }
}

@keyframes arrowMove {
    0% {
        transform: translateY(-1px);
    }
    50% {
        transform: translateY(4px);
    }
    100% {
        transform: translateY(-1px);
    }
}