body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #fff;
    position: relative;
}

::selection {background: #e84d39;color: #fff;}

h1, h2, h3, h4 {font-weight: 600;}
h1{margin-top: 0; font-size: 48px;}

a, button{transition: 0.3s ease;}
a:link { color:#e84d39;}
a:visited { color:#e84d39; }
a:hover, a:focus { color:#c73421; }
a:active { color:#e84d39; }

.p-t{padding-top: 35px;}
.p-b{padding-bottom: 35px;}
.p-tb{padding: 35px 0;}
.big-p-tb{padding: 35% 0;}


.space-line{  
    width: 50px;
    border-bottom: 2px solid #e84d39;
    margin: 17px 0;
}

button.btn, a.btn {
    background-color: #212121;
    color:#fff;
    padding: 14px 40px;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: bold;
}
button.btn:hover, a.btn:hover {
    background-color: #e84d39;
    color:#fff;
}

.header {
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
    width: 100%;
    z-index: 110;
    background-color: #fff;
}
.logo {
    margin: 15px 0;
}
.navbar{
    margin-bottom: 0;
    background-color: #fff;
}
.navbar-nav{
    padding: 25px 0;
}
.navbar-nav>li>a{
    text-transform: uppercase;
    font-weight: 600;
    color: #313131;
    font-size: 12px;
}
.nav>li>a:focus, .nav>li>a:hover, .navbar li.active a{
    color: #e84d39;
    background-color: transparent;
}

section{
    display: flex;
    align-items: center;}
section .container{
    padding-top: 100px;
}

.section-gray{
    background-image: url(../images/gray-bg.jpg);
    background-size: cover;
}
.section-black{
    background-color: #282828;
    color: #fff;
}


.home-big-text{
    font-size: 50px;
    line-height: 1.1em;
    font-weight: 600;
    letter-spacing: 0px;
}
.home-big-text span{
    color: #e84d39;
}
.ani-blink{
    -webkit-animation: blink 1s infinite;
    animation: blink 1s infinite;
}

.home-small-text{
    font-size: 21px;
    padding: 20px 0;
}

#loadingThing{
    position: absolute;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e84d39;
}
#loadingThing div.loadingDiv{
    position: fixed;
    top: 40%;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    width: 100%;
    text-align: center;
}
#loadingThing div.loadingDiv img{
    padding-bottom: 10px;
}


/* ---------------------------------------------------------
   Print styles
   ---------------------------------------------------------*/
@media print {
    * {
        color:#000 !important;
        box-shadow:none !important;
        text-shadow:none !important;
        background:transparent !important;
    }
    html { background-color:#fff; }
    /* Hide navigation */
    nav { display:none; }

    /* Show link destinations in brackets after the link text */
    a[href]:after { content: " (" attr(href) ") "; }
    a[href] {
        font-weight:bold;
        text-decoration:underline;
        color:#06c;
        border:none;
    }
    /* Don't show link destinations for JavaScript or internal links */ 
    a[href^="javascript:"]:after, a[href^="#"]:after { content:""; }

    /* Show abbr title value in brackets after the text */
    abbr[title]:after { content: " (" attr(title) ")"; }

    figure { 
        margin-bottom:1em; 
        overflow:hidden;
    }

    figure img { border:1px solid #000; }
}




@-webkit-keyframes blink{0%,100%{opacity:1;filter:alpha(opacity=100)}50%{opacity:0;filter:alpha(opacity=0)}}
@keyframes blink{0%,100%{opacity:1;filter:alpha(opacity=100)}50%{opacity:0;filter:alpha(opacity=0)}}

@-webkit-keyframes element-from-right{0%{opacity:0;transform:translate(20%,0)}100%{opacity:1;transform:translate(0,0)}}
@keyframes element-from-right{0%{opacity:0;transform:translate(20%,0)}100%{opacity:1;transform:translate(0,0)}}

@-webkit-keyframes element-from-left{0%{opacity:0;transform:translate(-20%,0)}100%{opacity:1;transform:translate(0,0)}}
@keyframes element-from-left{0%{opacity:0;transform:translate(-20%,0)}100%{opacity:1;transform:translate(0,0)}}


.elementfromright, .elementfromleft{opacity: 0;}
.element-from-right{
    -webkit-animation:element-from-right 1s 1 ease-in-out;
    -moz-animation:element-from-right 1s 1 ease-in-out;
    animation:element-from-right 1s 1 ease-in-out;
    opacity:1;
    -webkit-backface-visibility:hidden;
}
.element-from-left{
    -webkit-animation:element-from-left 1s 1 ease-in-out;
    -moz-animation:element-from-left 1s 1 ease-in-out;
    animation:element-from-left 1s 1 ease-in-out;
    opacity:1;
    -webkit-backface-visibility:hidden;
}

.featured-icons img{
    margin: 40px 0 10px 0;
    display: inline-block;
}


ul.list {
    list-style: none;
    padding: 0;
}
ul.list li {
    padding-left: 1.6em;
    padding-bottom: 10px;
}
ul.list li:before {
    content: "\f00c"; /* FontAwesome Unicode */
    font-family: FontAwesome;
    display: inline-block;
    margin-left: -1.6em; /* same as padding-left set on li */
    width: 1.6em; /* same as padding-left set on li */
}
ul.list li.download-windows:before {
    content: "\f17a"; /* FontAwesome Unicode */
}

ul.list li.download-apple:before {
    content: "\f179"; /* FontAwesome Unicode */
}

ul.list li.download-pdf:before {
    content: "\f1c1"; /* FontAwesome Unicode */
}

.footer{
    height: 60px;
    text-align: center;
    background-color: #212121;
    color: #ddd;
    line-height: 30px;
}

@media (min-width: 768px){
    .home-big-text {font-size: 48px;}
    .valign{display:flex;align-items: center;}
}
@media (min-width: 992px){
    .home-big-text {
        font-size: 59px;
    }
}
@media (min-width: 1200px){
    .home-big-text {
        font-size: 70px;
    }
}

@media (max-width: 767px){
    .logo{margin: 15px;}
    .featured-icons{ text-align: center; }
}

@media (max-width: 520px){
    .logo{
        margin: 15px;
        height: 40px;
    }
    .navbar-toggle{padding: 0 20px;}
    .home-big-text{font-size: 30px;}
    .home-small-text{font-size: 16px;}
    section .container{padding: 100px 15px;}
}


.height50{
    height: 50px;
}

.modal-title {
    color: #e84d39;
}

.modal-body {
    color: #282828;
}

.modal-footer button.btn, a.btn {
    background-color: #212121;
    color:#fff;
    padding: 8px 20px;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: bold;
    border: 0px;
}
.modal-footer button.btn:hover, a.btn:hover {
    background-color: #e84d39;
    color:#fff;
}