/*

    Luxx Original Theme

*/

/* Initials */
html, body {
    height: 100%;
    font-family: 'Muli', sans-serif;
    padding: 0px;
    margin: 0px;
}

/* Buttons */
.btn-gold {
    background-color: #f1c40f;
    color: #fff;
}

/* Home */
.home-header {
    background-color: #fff;
    background-image: url('../img/bg-1.png');
    background-size: cover;
    width: 100%;
    height: 100vh;
}
.home-header .container .row {
    height: 100vh;
}
.home-header-content {
    display: block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.home-header-title {
    color: #484848;
    font-size: 46px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.home-header-subtitle {
    color: #989898;
    font-size: 16px;
    font-weight: 300;
    margin-right: 30px;
    letter-spacing: 0.2px;
}
.home-header-buttons {
    margin-top: 50px;
}
.home-header-buttons a {
    margin: 0px 30px 0px 0px;
}
.home-section {
    position: relative;
    width: 100%;
    padding: 100px 0px;
}
.home-section-title {
    color: #484848;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-align: center;
}
.home-section-subtitle {
    color: #989898;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.2px;
    padding: 0px 100px;
    margin: 0px 100px 50px 100px;
    text-align: center;
}

/* General */
.theme-section {
    position: relative;
    width: 100%;
    background-color: #fff;
    padding: 100px 0px;
}
.theme-section.project-section {
    padding: 150px 0px;
}

/* Features */
.features-section-bg {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: #fff;
    background-image: url('../img/bg-2.png');
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.features-box {
    padding: 100px 50px;
    border-radius: 20px;
    transition: ease all 0.2s;
}
.features-box:hover {
    background-color: #fff;
    box-shadow: 0px 0px 16px -3px #d7d7d7;
    transition: ease all 0.2s;
}
.features-box.box-middle {
    background-color: #fff;
    box-shadow: 0px 0px 16px -3px #d7d7d7;
}
.features-box-icon {
    width: 64px;
    height: 64px;
    margin: 0px auto 20px auto;
}
.features-box-icon img {
    max-width: 100%;
}
.features-box-title {
    color: #484848;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-align: center;
}
.features-box-text {
    color: #989898;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.2px;
    text-align: center;
}

/* Contacts */
.contacts-section-img {
    width: 100%;
    text-align: left;
}
.contacts-section-img img {
    max-width: 90%;
}
.contacts-section-title {
    color: #484848;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-align: left;
}
.contacts-section-subtitle {
    color: #989898;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.2px;
    text-align: left;
}
.contacts-section-buttons {
    margin-top: 50px;
}

/* Projects */
.projects-section-bg {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: #fff;
    background-image: url('../img/bg-3.png');
    background-size: cover;
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
}
.projects-section-img {
    width: 100%;
    text-align: right;
}
.projects-section-img img {
    max-width: 90%;
}

/* Invoices */
.invoices-section-img {
    width: 100%;
    text-align: left;
}
.invoices-section-img img {
    max-width: 90%;
}

/* Modules */
.modules-section {
    background-color: #fff;
    width: 100%;
    padding: 100px 0px;
}
.module-box {
    text-align: center;
}
.module-box-bg {
    margin: 0px auto;
    width: 128px;
    height: 128px;
    border-radius: 20px;
    text-align: center;
}
.module-box-bg.expenses {
    background: linear-gradient(-135deg, #a8e063 0%, #56ab2f 100%);
}
.module-box-bg.calendar {
    background: linear-gradient(-135deg, #6dd5ed 0%, #2193b0 100%);
}
.module-box-bg.to-do {
    background: linear-gradient(-135deg, #FDC830 0%, #F37335 100%);
}
.module-box-bg-icon {
    color: #fff;
    font-size: 48px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.module-box-title {
    color: #484848;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.module-box-text {
    color: #989898;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.2px;
}
.modules-section-buttons {
    margin-top: 50px;
    text-align: center;
}