@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,700,900');

/**
 * Texts & fonts
 */

* {
    font-family: 'Montserrat', sans-serif;
}

h1 {
    font-weight: 400;
    position: relative;
}

h4 {
    font-weight: 300;
}

a {
    color: #467de4;
}
a:hover {
    text-decoration: none;
}

.footer {
    font-weight: 300;
}

/**
 * Sticky footer
 */
@media (min-width: 768px) {
    body {
        padding-bottom: 240px;
        position: relative;
        min-height: 100vh;
    }
    .footer {
        position: absolute;
        width: 100%;
        bottom: 0;
    }
}

.align-card-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/**
 * Floating Menu
 */
@media (min-width: 992px) {
    body main>div {
        padding-top: 72px;
    }

    #navbar-menu {
        position: fixed;
        left: 0;
        right: 0;
        z-index: 1020;
    
        background: rgba(255, 255, 255, 0.75);
    }
}

/**
 * Colors
 */
.bg-dark {
    background: #3b4897 !important;
}
.bg-medium {
    background: #467de4 !important;
}
.bg-light {
    background: #89aff5 !important;
}
.bg-white {
    background: #fff !important;
}


.text-dark {
    color: #3b4897 !important;
}
.text-medium {
    color: #467de4 !important;
}
.text-light {
    color: #89aff5 !important;
}
.text-white {
    color: #fff !important;
}


/**
 * Icons
 */
.material-icons {
    line-height: 0;
    position: relative;
    top: 6px;
}


/**
 * Helpers
 */
.rounded-full {
    border-radius: 100%;
}


/**
 * Images
 */
img {
    user-select: none
}


/**
 * Buttons
 */
.btn {
    border-radius: 30px;
    padding-left: 30px;
    padding-right: 30px;
}
.btn-primary, .btn-primary:active, .btn-primary:focus, .btn-primary:hover {
    border: none;
    background: #3b4897;
}

/**
* Tiled border
*/

@media (max-width: 5120px) {
    .tilted-border {
        left: 0;
        right: 0;
        height: 200px;
        margin-top: -200px;
        position: absolute;
        overflow: hidden;
    }
    .tilted-border::before {
        content: " ";
        position: absolute;
        border-width: 200px 5120px 0px 0;
        border-style: solid;
    }

    /* Color step */
    .tilted-border.dark::before {
        border-color: rgba(0, 0, 0, 0) #3b4897 #3b4897 rgba(0, 0, 0, 0);
    }
    .tilted-border.medium::before {
        border-color: rgba(0, 0, 0, 0) #467de4 #467de4 rgba(0, 0, 0, 0);
    }
    .tilted-border.light::before {
        border-color: rgba(0, 0, 0, 0) #89aff5 #89aff5 rgba(0, 0, 0, 0);
    }
    .tilted-border.white::before {
        border-color: rgba(0, 0, 0, 0) #fff #fff rgba(0, 0, 0, 0);
    }

    /* Size step */
    .tilted-border.soft {
        height: 50px;
        margin-top: -50px;
    }
    .tilted-border.soft::before {
        border-width: 50px 5120px 0px 0;
    }
}

/**
* Carousel 4 items
*/

@media (min-width: 768px) {
    .carousel-inner .carousel-item.active,
    .carousel-inner .carousel-item-next,
    .carousel-inner .carousel-item-prev {
    display: flex;
    }

    .carousel-inner .carousel-item-right.active,
    .carousel-inner .carousel-item-next {
    transform: translateX(25%);
    }

    .carousel-inner .carousel-item-left.active, 
    .carousel-inner .carousel-item-prev {
    transform: translateX(-25%);
    }
    
    .carousel-inner .carousel-item-right,
    .carousel-inner .carousel-item-left{ 
    transform: translateX(0);
    
    }
}
