@charset "utf-8";
/*
	Author: Filip Todorov - www.filiptodorov.com
	Project: CopyFactor
	All rights reserved
*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700');
@import url('https://fonts.googleapis.com/css?family=Handlee');

body, html {
    font-family: 'Open Sans', sans-serif;
    position: relative;
}
@media (min-width:768px) {
    .vcenter {
        display: inline-block;
        vertical-align: middle;
        float: none;
    }
}

/* NAVIGATION */
.navbar-inverse {
    background: #fff;
    border: none;
    border-radius: 0px;
    margin: 0;
}
.navbar-inverse .navbar-brand {
    height: auto;
    outline: none;
    padding-top: 10px;
    padding-bottom: 10px;
}
.navbar-inverse .navbar-brand img {
    height: 40px;
}
@media (max-width: 281px) {
    .navbar-inverse .navbar-brand img {
        height: 30px;
    }
}
.navbar-inverse .navbar-nav > li > a {
    margin-top: 5px;
    margin-bottom: 5px;
    background: none;
    color: #333;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
}
.navbar-inverse .navbar-nav > li.active > a,
.navbar-inverse .navbar-nav > li.active > a:hover,
.navbar-inverse .navbar-nav > li.active > a:focus,
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
    color: #0653a4;
    background: none;
    border: none;
}


/* MAIN */
.main {
    width: 100%;
    min-height: calc(100vh - 60px);
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('../img/bg.jpg') center no-repeat;
    background-size: cover;
    color: #fff;
    padding: 100px 0px;
}
.main.v2 {
    background: url('../img/bg2.jpg') center no-repeat;
    background-size: cover;
}
.main.v3 {
    background: url('../img/bg3.jpg') center no-repeat;
    background-size: cover;
}
.main .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.main.home .overlay {
    background: #000;
    opacity: 0.25;
}
.main.v2 .overlay {
    background: #111;
    opacity: 0.25;
}
.main.v3 .overlay {
    background: #000;
    opacity: 0.5;
}
.main .container {
    position: relative;
    z-index: 2;
}
.main h1 {
    font-weight: 300;
    margin: 0;
}
.main p {
    margin: 15px 0px;
    opacity: 0.7;
}

/* BUTTONS */
.btn {
    border-radius: 25px;
    padding: 10px 25px;
    border: 1px solid transparent;
}
.btn-primary {
    background: #0653a4;
}
.btn-primary:hover,
.btn-primary:focus {
    background: #0763c5;
    border-color: transparent;
}
.btn-default {
    background: none;
    border: 1px solid #fff;
    color: #fff;
}
.btn-default:hover,
.btn-default:focus {
    border-color: transparent;
    background: #fff;
    color: #0653a4;
}

/* NICE MESSAGE */
.nice-message {
    padding: 140px 0px;
    position: relative;
}
.nice-message.triangle-bottom:after {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: #fff;
    content: ' ';
    z-index: 2;
    transform: rotate(45deg);
    margin: auto;
}
.nice-message.v2 {
    background: #f2f3f4;
}
.nice-message h1 {
    color: #333;
    font-size: 48px;
    text-align: center;
    margin: 0;
    font-weight: 300;
    margin-bottom: 15px;
}
.nice-message h2 {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin: 20px 0px;
}
.nice-message p {
    text-align: center;
    font-size: 16px;
    color: #999;
    margin: 0;
}
.nice-message.v2 p {
    font-size: 16px;
}
.nice-message.v2 img.icon {
    display: block;
    margin: auto;
    width: 64px;
    margin-top: 30px;
}

/* QUOTE */
.quote {
    display: block;
    position: relative;
    text-align: center;
    padding: 150px 0px;
}
.quote .container {
    position: relative;
    z-index: 1;
    color: #0653a4;
}
.quote p {
    display: block;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 40px;
    margin: 0;
}
.quote b {
    color: #666;
    font-size: 11px;
    display: block;
    margin-top: 5px;
}

/* CORE */
.core {
    display: block;
    padding: 100px 0px;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(239,239,239,1) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(239,239,239,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(239,239,239,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#efefef',GradientType=0 );
    position: relative;
    overflow: hidden;
}
.core h1 {
    font-size: 20px;
    font-weight: 600;
    color: #0653a4;
    margin: 0;
    letter-spacing: 1px;
    padding: 0;
}
.core ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 30px;
}
.core ul li {
    display: block;
    padding-bottom: 60px;
}
.core ul li > b {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.core ul li > span {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    display: block;
}
.core ul li > blockquote {
    border: none;
    padding: 20px;
    font-size: 20px;
    font-family: 'Handlee', cursive;
    margin: 0;
    position: relative;
}
.core ul li > blockquote:before {
    position: absolute;
    top: 20px;
    left: -10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 16px;
    text-align: center;
    font-family: 'FontAwesome';
    content: '\f10d';
    opacity: 0.25;
}
.core ul li > blockquote i {
    display: block;
    font-size: 12px;
    color: #999;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
}
.core .devices {
    width: 833px;
    height: 481px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: calc((100% / 2) - 833px);
    background: url('../img/devices.png') center left no-repeat;
    background-size: cover;
}

/* FOOTER */

.footer-big-menu {
  padding: 80px 0 130px;
  background: #2B4255;
  position: relative;
}
.footer-big-menu .cta .cta-title {
  color: #fff;
  font-size: 36px;
    font-weight: 300;
  margin-bottom: 40px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
  .footer-big-menu .cta .cta-title {
    font-size: 24px;
  }
}
.footer-big-menu .cta a {
  font-size: 12px;
}
.footer-big-menu .cta .btn {
    font-size: 14px;
    margin: 0px 5px;
}
.footer-big-menu .menu {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .footer-big-menu .menu {
    margin-top: 60px;
    text-align: center;
  }
    .footer-big-menu .cta .btn {
        margin: 5px;
    }
}
@media (max-width: 991px) {
  .footer-big-menu .menu .col-md-3 {
    margin-bottom: 30px;
  }
}
.footer-big-menu .menu .menu-title {
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-big-menu .menu .menu-link {
  color: #97b0c5;
  display: block;
  margin-bottom: 2px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.footer-big-menu .menu .menu-link:hover {
  color: #fff;
}
.footer-big-menu .menu .social-link {
  width: 32px;
  height: 32px;
  display: inline-block;
  position: relative;
  border-radius: 30px;
  color: #dfebf5;
  border: 2px solid #c6d8e8;
  margin-right: 6px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.footer-big-menu .menu .social-link:last-child {
  margin-right: 0;
}
.footer-big-menu .menu .social-link:hover {
  color: #fff;
  border-color: #fff;
}
.footer-big-menu .menu .social-link i {
  position: absolute;
  font-size: 16px;
  left: 8px;
  top: 2px;
}
.footer-big-menu .menu .social-link i.fa-facebook,
.footer-big-menu .menu .social-link i.fa-twitter,
.footer-big-menu .menu .social-link i.fa-instagram {
  left: 4px;
    top: 6px;
}
.footer-big-menu .bottom {
  color: #68849a;
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 13px;
}
.footer-big-menu .bottom a {
  color: #68849a;
  margin-left: 5px;
  display: inline-block;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.footer-big-menu .bottom a:hover {
  color: #fff;
}

#benefits img {
    width: 64px;
    margin-bottom: 15px;
}
.inline-block {
    display: inline-block;
    vertical-align: top;
    padding: 50px 15px 0px 15px;
}
.inline-block b {
    display: block;
    margin-top: 20px;
}

.new-modal .modal-dialog {
    max-width: 400px;
}
.new-modal .modal-content {
    box-shadow: none;
    border: none;
    padding: 25px;
}
.new-modal .modal-header,
.new-modal .modal-body,
.new-modal .modal-footer {
    padding: 15px 0px;
}
.new-modal p {
    font-size: 12px;
    color: #999;
}
.new-modal .form-group {
    position: relative;
}
.new-modal .form-group label {
    font-size: 12px;
    letter-spacing: 0px;
}
.new-modal .form-group .form-control {
    box-shadow: none;
}

@media (max-width:768px) {
    .navbar-inverse .navbar-toggle {
        background: none;
        border-color: transparent;
        margin-top: 13px;
    }
    .navbar-inverse .navbar-toggle:hover,
    .navbar-inverse .navbar-toggle:focus {
        background: #f9f9f9;
        border-color:transparent;
    }
    .navbar-inverse .navbar-toggle .icon-bar {
        background: #333;
    }
    .navbar-collapse {
        border: none;
    }
    .main h1 {
        font-size: 30px;
    }
    .main {
        min-height: inherit;
        padding: 100px 0px;
    }
    .nice-message {
        padding: 100px 0px;
    }
    .nice-message h1 {
        font-size: 36px;
    }
    .core .devices {
        display: none;
    }
}