﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

@font-face {
    font-family: raleway;
    src: url('https://d36kn5faitxn1b.cloudfront.net/fonts/Raleway-Regular.ttf');
}

@font-face {
    font-family: axisFont;
    src: url('https://d36kn5faitxn1b.cloudfront.net/fonts/AXIS Extra Bold 800.otf');
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

a {
    color: #8e2b84;
}

    a:hover {
        color: #8e2b84;
        background-color: transparent;
        text-decoration: none;
    }

    a:active {
        color: #8e2b84;
        background-color: transparent;
        text-decoration: none;
    }

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
}


/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 16px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    padding-top: 50px;
    font-family: raleway;
    background-color: #f7f9f9;
    line-height: 1.5rem;
    max-width: 100%;
    overflow: hidden;
}

.footer {
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

.text-purple {
    color: #8e2b84
}

.text-yellow {
    color: #f9b653
}

.btn-outline-primary {
    color: #8e2b84;
    border-color: #8e2b84
}

    .btn-outline-primary:hover {
        background-color: #8e2b84;
    }

    .btn-outline-primary:active {
        background-color: #8e2b84;
    }

.text-upperBold {
    font-weight: bold;
    text-transform: uppercase
}

.page-center {
    display: flex;
    justify-content: center;
    text-align: center
}

.mlr-5 {
    margin-left: 5rem;
    margin-right: 5rem;
}

.mbt-3 {
    margin-bottom: 3rem;
    margin-top: 3rem;
}


.d-flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

html {
    overflow-y: scroll;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}


/*NavBar*/

.navbar-nav > li {
    float: left;
    position: relative;
}

nav.navbar .navbar-nav .nav-item.active::before {
    content: '';
    display: block;
    border-bottom: 5px solid #f9b653;
    position: absolute;
    bottom: 1px;
    width: 100%;
    left: 50%;
    transform: translate(-50%);
}

.dismisser {
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,.45);
    z-index: 1000;
    opacity: 0;
    transition: .25s ease-in-out all;
}

nav.navbar {
    padding: 0;
    top: 0;
    border-bottom: 1px solid #f9b653;
    position: fixed;
    z-index: 999;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media(max-width:991px) {
    nav.navbar {
        justify-content: space-between;
    }
}

nav.navbar .navbar-nav .nav-item {
    padding: 1rem;
}

    nav.navbar .navbar-nav .nav-item.dropdown {
        padding: 0.7rem;
    }

        nav.navbar .navbar-nav .nav-item.dropdown button {
            color: #8e2b84;
            font-size: 1.50rem;
            font-weight: 500;
            background: none;
            border: none;
        }

        nav.navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
            border: none;
            box-shadow: 0 0 7px 3px #f9b653;
            overflow: hidden;
            max-width: 80rem;
            padding: 0;
        }

            nav.navbar .navbar-nav .nav-item.dropdown .dropdown-menu a {
                padding-bottom: 1rem;
                border-radius: 1rem;
            }

                nav.navbar .navbar-nav .nav-item.dropdown .dropdown-menu a span {
                    font-weight: normal;
                    font-size: 1rem;
                    transition: .25s ease-in-out all;
                }

                nav.navbar .navbar-nav .nav-item.dropdown .dropdown-menu a:hover {
                    background: #f8f9fa;
                    color: #8e2b84;
                }

                    nav.navbar .navbar-nav .nav-item.dropdown .dropdown-menu a:hover span {
                        color: #8e2b84;
                    }



            nav.navbar .navbar-nav .nav-item.dropdown .dropdown-menu .vline {
                position: relative;
            }

                nav.navbar .navbar-nav .nav-item.dropdown .dropdown-menu .vline::before {
                    content: '';
                    height: 70%;
                    position: absolute;
                    right: 2rem;
                    bottom: 50%;
                    transform: translate(0, 50%);
                    border-left: 1px solid #dbdbdb;
                }

        nav.navbar .navbar-nav .nav-item.dropdown:hover > .dropdown-menu {
            display: flex;
        }

        nav.navbar .navbar-nav .nav-item.dropdown > .dropdown-toggle:active {
            pointer-events: none;
        }

        nav.navbar .navbar-nav .nav-item.dropdown > .dropdown-toggle::after {
            border-bottom: 5px solid #fff;
        }
/*nav.navbar .navbar-nav .nav-item.dropdown.btn.dropdown-toggle:hover > .dropdown-menu {
        display: flex;
    }*/

/*nav.navbar .navbar-nav .nav-item.dropdown > .dropdown-toggle:active {
            pointer-events: none;
        }*/





/*Mobile Navbar*/
.mobile-nav {
    position: absolute;
    top: 0;
    right: -30rem;
    width: 27rem;
    height: 100vh;
    background: #fff;
    z-index: 1100;
    transition: .25s ease-in-out all;
    max-width: 100%;
    overflow-x: hidden;
}

    .mobile-nav.active {
        right: 0;
    }

    .mobile-nav .close {
        font-size: 3rem;
        padding: 2rem;
        display: block;
    }

    .mobile-nav .mobile-navbar-nav {
        margin-top: 10rem;
        list-style: none;
        padding: 0;
    }

        .mobile-nav .mobile-navbar-nav li {
            margin-bottom: 2rem;
        }

            .mobile-nav .mobile-navbar-nav li a {
                font-weight: 600;
                font-size: 1.6rem;
                text-size-adjust: 55%;
                padding-left: 30px;
            }

            .mobile-nav .mobile-navbar-nav li.active {
                background: #f9b653;
                display: inline-block;
                padding: .5rem 0rem;
                width:100%;
            }


            .mobile-nav .mobile-navbar-nav li.dropdown button {
                color: black;
                font-weight: 200;
                background: none;
                border: none;
            }

                .mobile-nav .mobile-navbar-nav li.dropdown button:focus {
                    outline: none;
                }

            .mobile-nav .mobile-navbar-nav li.dropdown .dropdown-menu {
                border-radius: 1rem;
                overflow: hidden;
                width: 100%;
            }

                .mobile-nav .mobile-navbar-nav li.dropdown .dropdown-menu a {
                    white-space: normal;
                    padding: 10px;
                    color: #8e2b84;
                }

            .mobile-nav .mobile-navbar-nav li.dropdown > ul {
                display: none;
            }


@media only screen and (max-width: 800px) {
    html {
        font-size: 63%;
    }

    body {
        padding-top: 50px;
        max-width: 100%;
        font-size: 14px;
        line-height:2rem;
        overflow: hidden;
    }

    h3, h4, h5{
        font-size:20px;
    }
}

.mlr-5 {
    margin-left: 5rem;
    margin-right: 5rem;
}

.mbt-3 {
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.rightImgMargin{
    margin-left:0px;
    margin-right: 0px;
    padding-left:0px;
    padding-right:0px;
}

/*Hamburger Button*/
.btn.btn-hamburger {
    font-size: 3rem;
    color: #7d8e9e;
    padding: 0 2.5rem;
    display: none;
}

@media(max-width:991px) {
    .btn.btn-hamburger {
        display: block;
    }
}

.carousel-captions {
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
}

.img-responsive {
    max-width: calc(100%/4);
    display: inline-block;
    padding: 5px;
}

.card-horizontal {
    display: flex;
    flex: 1 1 auto;
}

.productButtons {
    font-weight: bold;
    color: #8e2b84;
    font-size: 16px;
}

.productButtonsDesc {
    font-size: 14px;
}


h2 {
    color: #000;
    font-size: 26px;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    margin: 30px 0 50px;
}

    h2::after {
        content: "";
        width: 100px;
        position: absolute;
        margin: 0 auto;
        height: 4px;
        border-radius: 1px;
        background: #f9b653;
        left: 0;
        right: 0;
        bottom: -20px;
    }

.carousel .item {
    color: #999;
    overflow: hidden;
    min-height: 120px;
    font-size: 14px;
}

.carousel .media img {
    width: 80px;
    height: 80px;
    display: block;
    padding: 10px;
}

.carousel .testimonial {
    padding: 0 15px 0 60px;
    position: relative;
}

    .carousel .testimonial::before {
        content: '\93';
        color: #e2e2e2;
        font-weight: bold;
        font-size: 68px;
        line-height: 54px;
        position: absolute;
        left: 15px;
        top: 0;
    }

.carousel .overview b {
    text-transform: uppercase;
    color: #1c47e3;
}

/*.carousel #testimonialIndicator {
    bottom: -40px;
}*/

#testimonialIndicator li, #testimonialIndicator li.active {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 1px 3px;
}

#testimonialIndicator li {
    background: #808080;
    border: 4px solid #fff;
}

    #testimonialIndicator li.active {
        color: #fff;
        background: #8e2b84;
        border: 5px double;
    }

.sizeFix {
    height: 400px;
    width: auto
}

.cardSize {
    max-width: 20%;
}

@media only screen and (max-width: 850px) {
    .sizeFix {
        height: 200px;
        width: auto;
    }

    .element {
        position: relative;
        top: 15%;
    }

    .elementProduct {
        position: relative;
        top: 20%;
    }

    .elementProducts {
        position: relative;
        top: 20%;
    }

    .webScreenPadding {
        padding: 0px;
    }

    .cardSize {
        height: 40px;
        max-width: 100%;
    }
}

@media only screen and (min-width: 1200px) {
    .element {
        position: relative;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .cardHeight {
        height: 650px;
        padding-top: 20px
    }
}

@media only screen and (max-width: 576px) {
    .descCardsSevice {
        width: 100%;
        height: 45px;
    }
    .descCardsProduct {
        width: 100%;
        height: 45px;
    }
}

@media only screen and (min-width: 577px) {
    .descCardsSevice {
        width: 210px;
        height: 90px;
    }

    .descCardsProduct {
        width: 260px;
        height: 90px;
    }
}
    @media only screen and (max-width: 1000px) {
        .webMobileMargin {
            margin: 30px;
        }

        .imgWidth {
            max-width: 100%
        }
    }

    @media only screen and (min-width: 1001px) {
        .webMobileMargin {
            margin: 50px;
        }

        .imgWidth {
            max-width: 20%
        } 
    }

    @media only screen and (max-width: 750px) and (min-width: 650px) {
        .element {
            position: relative;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
        }
    }


    @media only screen and (width: 768px) {
        .element {
            position: relative;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
        }
    }

    .webScreenPadding {
        padding: 20px;
    }

    @media only screen and (max-width: 400px) {
        .webScreenPadding {
            padding: 10px;
        }
    }

    @media only screen and (min-width: 850px) {
        .element {
            position: relative;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
        }
    }

    section {
        padding-bottom: 10px;
    }

    .expandCard:hover {
        transform: translate3D(0,-1px,0) scale(1.03);
        box-shadow: 8px 28px 50px rgba(39,44,49,.07), 1px 6px 12px rgba(39,44,49,.04);
        transition: all .4s ease;
    }

    .swiper-container {
        width: 100%;
        height: 100%;
    }

    .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        /* Center slide text vertically */
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
    }

    @media only screen and (max-width: 1023px) {
        #hideSectionMobile {
            display: none;
        }

        #bigScreen {
            display: none;
        }

        footer {
            height: 350px;
        }
    }

    @media only screen and (min-width: 1024px) {
        #hideSectionWeb {
            display: none;
        }

        #smallScreen {
            display: none;
        }

        footer {
            height: 320px;
        }
    }

    ul {
        list-style: none;
    }

    .pointsSection ul li::before {
        content: '■';
        color: #f9b653;
        font-weight: bold;
        display: inline-block;
        width: 1.5em;
        margin-left: -1em;
        line-height: 170%;
    }

    .filledStyle {
        border-color: #8e2b84;
        background-color: #8e2b84;
    }


    .fillOnHover {
        color: #8e2b84;
        border-color: #8e2b84;
        width: 150px;
    }

        .fillOnHover:hover {
            background-color: #8e2b84;
            color: white
        }

        .fillOnHover:active {
            background-color: #8e2b84;
        }

    * {
        box-sizing: border-box;
    }

    .input-container {
        display: flex;
        width: 100%;
        margin-bottom: 15px;
    }

    .icon {
        padding: 5px;
        background: white;
        width: 12%;
        text-align: center;
    }

    .input-field {
        width: 100%;
        padding: 10px;
        outline: none;
    }

        .input-field:focus {
            border: 2px solid dodgerblue;
        }


    #js-top {
        position: fixed;
        bottom: 0;
        right: 0;
        width: 6rem;
        height: 6rem;
        padding: 10px;
        font-size: 1rem;
        line-height: 1.33;
        border-radius: 6rem;
        margin: 20px;
        background-color: #8e2b84;
        color: white;
    }

*:focus {
    outline: none !important
}

