:root {
    --primary-color: #086bd8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    max-width: 100%;
    overflow-x: hidden;
}

nav.navbar {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background-color: transparent;
    z-index: 2;
}

.navbar-dark .navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 600;
    margin: 0px 20px;
}

.navbar-brand {
    font-size: 4.2vw;
    font-weight: 600;
}

.navbar-toggler {
    padding: .2rem .5rem;
}

.navbar-toggler-icon {
    width: 1rem;
    height: 1rem;
}

.collapse.navbar-collapse {
    flex-direction: row-reverse;
}

.carousel-indicators li {
    width: 1.2vw;
    height: 1.2vw;
    border-radius: 50%;
    margin-left: 6px;
    margin-right: 6px;
}

.carousel-caption {
    top: 50%;
    transform: translate(-10%, -50%);
    text-align: left;
    height: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
}

.carousel-caption h2 {
    font-size: 3.8vw;
    line-height: 1.5;
}

.line, .line-sm {
    display: inline-block;
    background: var(--primary-color);
    width: 90px;
    height: 5px;
    border-radius: 2px;
}

.line-sm {
    width: 20px;
}

.btn {
    font-size: 14px;
    font-weight: 600;
    padding: .8rem 1.8rem;
}

.text-main {
    color: var(--primary-color)
}

.bg-main {
    background: var(--primary-color);
    color: #ffffff;
}

.h4, .h5, .h6, h4, h5, h6 {
    line-height: 1.6;
}

.products {
    background-image: url('../assets/img/products/bg.jpg');
    background-size: cover;
    background-position: top;
}

.card {
    height: 100%;
    border-radius: 14px;
    min-height: 420px;
}

.img-sm {
    width: 120px;
    height: 120px;
}

.col-12 {
    padding: 15px;
}

.numbers {
    background-image: url('../assets/img/numbers/bg.jpg');
    background-size: cover;
    background-position: top;
}

footer {
    background-image: url('../assets/img/footer/bg.jpg');
    background-size: cover;
    background-position: top;
}

.border-main-left {
    border-left: 5px solid var(--primary-color);
    border-radius: 2px;
}

@media (max-width: 767px) {
    .navbar-brand {
        font-size: 26px;
    }
    .carousel-caption {
        transform: translate(-10%, -33%);
    }
    .nav-link {
        padding: .25rem 1rem;
    }
    .navbar-dark .navbar-nav .nav-link {
        margin: 0px;
    }
}