@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&display=swap');
@import '/assets/scss/variables.css';
@import '/assets/scss/responsive.css';


html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-color);
    font-family: "Fira Code", monospace;
    font-weight: 300;
    font-size: 1rem;
}

.navbar {
    padding: 40px 0;
    background-color: var(--white);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}

b {
    font-weight: 600;
}

.logo {
    margin-right: 30px;
}

.page {
    background-color: white;
    border-radius: 10px;
    padding: 40px;

    .order-status {
        background-color: var(--secondary-color);
        display: inline-block;
        padding: 10px 20px;
        color: white;
        font-weight: bold;

    }

    .notice {
        font-size: .75rem;

        span {
            color: var(--green);
            font-size: 1rem;
            font-weight: bold;
        }
    }
}

.navbar-dark .navbar-toggler {
    color: #222947;
    border-color: #222947;
}

.navbar-dark .navbar-toggler-icon {
    background-image: url('data:image/svg+xml;utf8,<svg height="32px" id="Layer_1" style="enable-background:new 0 0 128 128;" version="1.1" viewBox="0 0 32 32" width="32px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M4,10h24c1.104,0,2-0.896,2-2s-0.896-2-2-2H4C2.896,6,2,6.896,2,8S2.896,10,4,10z M28,14H4c-1.104,0-2,0.896-2,2  s0.896,2,2,2h24c1.104,0,2-0.896,2-2S29.104,14,28,14z M28,22H4c-1.104,0-2,0.896-2,2s0.896,2,2,2h24c1.104,0,2-0.896,2-2  S29.104,22,28,22z"/></svg>') !important;
}

.nav-item a {
    cursor: pointer;
    color: var(--main-color);
    font-weight: 400;
}

.animation-writer h1 {
    margin: 0 auto;
    letter-spacing: 3px;

    span {
        color: #5ec2a4;
    }
}

.header-contact {
    font-size: 30px;
    color: #211d50;

    span {
        color: #5ec2a4;
    }
}

.main-button {
    background-color: #5ec2a4;
    border: 1px solid #5ec2a4;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, .1) 0 2px 4px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 400;
    outline: none;
    outline: 0;
    padding: 10px 25px;
    text-align: center;
    transform: translateY(0);
    transition: transform 150ms, box-shadow 150ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;

    a {
        text-decoration: none;
        color: white;
    }
}

.card-icon {
    background-image: url('/assets/images/icons/steps_email.svg');
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: 20px 13px;
}

.apply-button:hover {
    box-shadow: rgba(0, 0, 0, .15) 0 3px 9px 0;
    background-color: #6cc5a7;
    color: white;
}

.main-button:hover {
    box-shadow: rgba(0, 0, 0, .15) 0 3px 9px 0;
    background-color: #6cc5a7;
}

@media (min-width: 768px) {
    .main-button {
        padding: 10px 30px;
    }
}

.main {
    min-height: 100%;
    background: linear-gradient(0deg, rgba(33, 29, 80, 0.85), rgba(33, 29, 80, 0.85)), url('/assets/images/main_background_image.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    padding: 80px 0;


    .benefit-button {
        padding: 0px 50px;
        margin: 40px 0;
    }

    .benefit {
        background-image: url('/assets/images/icons/checkmark.svg');
        background-repeat: no-repeat;
        padding: 0px 50px;
        color: white;
        margin: 40px 0;
        background-size: 30px;
        background-position: 10px 5px;

        .title {
            font-size: 1.25rem;
            text-transform: uppercase;
            font-weight: bold;
            margin-bottom: 10px;
            border-bottom: 1px dotted white;
            padding: 5px 0;
        }

        .subtitle {
            font-size: .875rem;
        }
    }

    .small-title-slogan {
        text-transform: uppercase;
        color: white;
        font-size: 1.25rem;
        margin-bottom: 20px;

        span {
            font-weight: 600;
            color: #6cc5a7;
        }
    }

    .online {
        background-color: #6cc5a7;
        padding: 5px 15px;
        font-size: 1.25rem;
        color: white !important;
        border-radius: 5px;
    }

    h1 {
        color: var(--white);
        font-weight: 400;
        text-transform: uppercase;
        margin-bottom: 20px;

        span {
            font-weight: 700;
            text-decoration: none;
        }
    }

    p {
        color: var(--white);
    }

    .subscription-form {
        background-color: white;
        height: auto;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
        border-top: 20px solid #5ec2a4;
        padding: 40px;
        border-radius: 10px;

        .form-group {
            padding: 10px 0;

            input,
            select {
                background-color: #f5f5f5;
                font-size: 0.9rem;
                border-radius: unset;
            }
        }

        .form-check {
            margin: 10px 0;
            cursor: pointer;
        }

        .form-title {
            font-size: 1.3rem;
            margin-bottom: 10px;

            span {
                font-weight: bold;
                color: #6cc5a7;
            }
        }

        .notice {
            font-size: .75rem;

            span {
                color: var(--green);
                font-size: 1rem;
                font-weight: bold;
            }
        }

        #campuri-firma {
            display: none;
        }

        .form-check-label {
            font-size: .875rem;
        }
    }
}

footer {
    background-color: #211d50;
    color: var(--white);
    padding: 40px 0;

    .logo {
        text-align: center;
    }

    .title {
        color: var(--white);
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 20px;
    }

    ul {
        list-style: none;
        padding: 0;

        li {
            padding: 5px 0;

            a {
                color: var(--white);
                font-size: .875rem;

                :hover {
                    color: var(--secondary-color);
                }
            }
        }
    }

    .small-text {
        font-size: .75rem;
        color: var(--white);
    }

    .phone {
        background-image: url('/assets/images/icons/phone-white.svg');
        background-size: 12px;
        background-repeat: no-repeat;
        padding: 0 30px;
        background-position: 0px 5px;
    }

    .email {
        background-image: url('/assets/images/icons/calendar-white.svg');
        background-size: 12px;
        background-repeat: no-repeat;
        padding: 0 30px;
        background-position: 0px 5px;
    }

    .copyright-text {
        font-size: .875rem;
        margin-top: 50px;
        text-align: center;
    }
}

section.specialist {
    background-color: white;
    padding: 40px 0;

    .title {
        font-size: 2rem;
        text-align: center;
    }

    .subtitle {
        text-align: center;
        margin: 20px 0;
    }

    .button-container {
        text-align: center;
    }
}

.invalid-feedback {
    font-size: 0.8em;
}


#cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 20px;
    right: 0;
    z-index: 99999;
    background-color: rgba(0, 0, 0, .8);
    color: #fff;
    font-size: 0.9rem;
}


section.verificare-autenticitate {
    width: 100%;
    background-color: var(--main-color);
    color: white;
    padding: 40px 0;
    margin: 40px 0;

    .title {
        font-size: 2rem;
    }
}

section.price-redirect {
    .price-container {
        background-color: #eee;
        padding: 10px;
        margin: 20px 0;
    }

    .notice {
        font-size: .75rem;

        span {
            color: var(--green);
            font-size: 1rem;
            font-weight: bold;
        }
    }
}

section.info {
    background-color: #5ec2a4;
    padding: 20px;
    color: #211d50;
    border-radius: 10px;
    border: 2px dotted #211d50;
    margin-top: 80px;
}

section.container404 {

    text-align: center;
    margin: 100px 0;


    .eroare404 {
        font-size: 5vw;
        padding: 0;
        margin: 0;
    }

    .text404 {
        font-size: 3vw;
        padding: 0;
        margin-top: -50px;
    }
}

.example-image-link {
    display: inline-block;
    padding: 4px;
    margin: 0 0.5rem 1rem 0.5rem;
    background-color: var(--bg-color);
    line-height: 0;
    border-radius: var(--border-radius-large);
}

.example-image-link:hover {
    background-color: var(--primary-color);
}

.example-image {
    width: 125px;
    border: 2px solid green;
}