﻿body {
    font-family: Montserrat, sans-serif !important;
}

#header.sticky-top {
    top: 0 !important;
    z-index: 9999;
}

#page-title {
    position: relative;
    padding: 60px 0px 50px;
    color: #424242;
    font-family: "Montserrat", sans-serif !important;
}


.header-line {
    background-color: #E13029;
    width: 45px;
    height: 2px;
}

#page-title h1 {
    padding: 0;
    margin: 10px 0 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 40px;
    font-family: "Montserrat",sans-serif;
}

#page-title .header-title2 {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: .02em;
    line-height: 1.5;
}

.enterprise-block {
    float: right;
    text-align: center;
    width: 300px;
    color: #ddd;
    padding: 5px 10px 15px 10px;
    margin: -15px 0;
    border: solid 1px #5bc0de;
    border-radius: 5px;
}

    .enterprise-block .enterprise-title {
        color: #5bc0de;
        font-weight: bold;
        font-size: 20px;
        text-align: center;
        padding: 2px 0 6px;
    }

    .enterprise-block .enterprise-text {
        color: #424242;
        line-height: 18px;
        margin-bottom: 5px;
    }

.header-title3 {
    margin-top: -20px;
    margin-bottom: -20px;
    margin-left: 25px;
}

/*Animations*/
.animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
}

/*Slide In*/
@keyframes slideIn {
    0% {
    transform: translateY(1rem);
    opacity: 0;
}

100% {
    transform: translateY(0rem);
    opacity: 1;
}

0% {
    transform: translateY(1rem);
    opacity: 0;
}
}

@-webkit-keyframes slideIn {
    0% {
        -webkit-transform: transform;
        -webkit-opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        -webkit-opacity: 1;
    }

    0% {
        -webkit-transform: translateY(1rem);
        -webkit-opacity: 0;
    }
}

.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

/*== Go to Top ==*/
#gotoTop {
    display: none;
    z-index: 299;
    position: fixed;
    width: 40px;
    height: 40px;
    background-color: #333;
    background-color: rgba(0,0,0,0.3);
    font-size: 20px;
    line-height: 36px;
    text-align: center;
    color: #FFF;
    top: auto;
    left: auto;
    right: 30px;
    bottom: 50px;
    cursor: pointer;
    border-radius: 2px;
}

body:not(.device-touch) #gotoTop {
    transition: background-color .2s linear;
    -webkit-transition: background-color .2s linear;
    -o-transition: background-color .2s linear;
}

.stretched #gotoTop {
    bottom: 30px;
}

#gotoTop:hover {
    background-color: #ff2222;
}

.grow {
    transition: all .2s ease-in-out;
}

    .grow:hover {
        transform: scale(1.05);
    }

.center-vertically {
    position: relative;
    top: 50%;
    transform: translate(0%, -50%);
}