
/* General */
*{
    font-family: 'Montserrat', sans-serif;
}
main{
    position: relative;
    z-index: 0;
}
header.landing {
    height: 85px;
}

p{
    font-family: 'Raleway', sans-serif;
    color: #444444
}
.bg-primary{
    background-color: #3E708D !important;
}

.bg-light{
    background-color: #ececec !important;
}

.text-light{
    color: #EFEAEA !important;
}
.text-primary{
    color: #003B5D !important;
}

.text-orange{
    color: #F7931E!important;
}

.title-extra-large{
    font-size: 150px;
    margin: 15px;
}

/* Header */
.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link{
    font-weight: bold;
    color: #3E708D;
    border-bottom: 2px solid #3E708D;
}

.navbar-expand-md .navbar-nav .nav-link{
    padding-left: 1rem;
    padding-right: 1rem;
    transition: all 0.2s ease-in-out
}
.navbar-expand-md .navbar-nav .nav-link:hover{
    color: #3E708D;
    border-bottom: 2px solid #3E708D;
}

.border-orange{
    border-bottom: 3px solid #F7931E;;
}
/* Carousel */
#CarouselIntro{
    z-index: -1;
    overflow: hidden;
}

#CarouselIntro:after {
    content: "";
    position: absolute;
    left:0%;
    bottom: -45%;
    background: url(/ui/common/img/wave.svg) no-repeat;
    background-size: 100%;
    width: 113%;
    height: 110%;
    transform: rotate(20deg);
    z-index: 1;
}
#CarouselIntro .carousel-caption{
    top:20px;
    bottom:auto;
}
#CarouselIntro .carousel-item{
    max-height: 800px;
    min-height: 800px;
}

#CarouselIntro .carousel-item img{ 
    width: 100%;
}


  
#CarouselIntro .carousel-inner.vertical > .active {
    top: 0;
  }


  #CarouselIntro .carousel-indicators{
    left:auto;
    right:0;
    bottom:auto;
    top: 0%;
    margin: 20px;
    
    flex-direction:column;
}

#CarouselIntro .carousel-indicators li{
    width: 15px;
    height:15px;
    border-radius: 50%;
}
@media only screen and (max-width: 1300px) {
    #CarouselIntro:after {
        transform: rotate(0);
    }
}
@media only screen and (max-width: 600px) {
    #CarouselIntro:after {
        display:none;
    }
    #CarouselIntro .carousel-item{
        min-height:400px ;
        max-height:400px ;
    }
    #CarouselIntro .carousel-indicators{
        top:20%;
    }
    #CarouselIntro .carousel-item img{
        width: auto;
    }
}


#carouselProducts .carousel-indicators li{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #707070;
    background-color: #f7941f;

}
/* Particals */
#particles-js {
    position:relative;
    min-height:500px;
}
#particles-js canvas{
    position:absolute;
    top:0%
}

/* Buttons */
.btn{
    border-radius: 0;
}
.btn-primary{
    background-color: #3E708D;
    border-color: #3E708D;
}
.btn-secondary.btn-orange{
    background-color: #F7931E;
    border-color: #F7931E;
}
/* Footer */
footer{
    background: #3E708D;
}
footer p{
    color: #ddd;
}


/* Utils */
.background{
    width: 100vw;
    height:80vh;
    background: url(/ui/common/img/background.jpg) no-repeat;
    background-size: cover;
}

.form-control{
    border-radius: 0;
}


/* Login */
.login-box{
    width:350px; 
    height:250px
}



/* Media */
video {
    width: 100%;
    max-height: 100%;
  }