/*====================
	HTML and Body
====================== */

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    text-decoration: none !important;
}

body,
html {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: rgb(236, 236, 236);
}

/*====================
	Navbar
====================== */

.navFlex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 6% 0.5% 6%;
    font-size: 20px;
    background: rgb(38, 56, 95);
}

nav li {
    list-style: none;
    display: inline-block;
    padding: 8px 0px;
    color: white;
    cursor: pointer;
}

nav ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 15px;
    color: white;
}

nav ul li a {
    color: rgb(255, 255, 255);
    transition: 0.5s;
    font-size: 18px;
}

nav ul li a:hover,
.active {
    color: rgb(223, 162, 48);
}

.Logo {
    width: 13ex;
}

/*====================
	Header
====================== */

.WelcomePageFlex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6% 4% 6%;
    font-size: 20px;
    background: #f7f7f7;
    height: 100vh;
}

.WelcomePageFlex div {
    padding-bottom: 5%;
}

.WelcomePageFlex div p {
    color: rgb(0, 0, 0);
}

.coloredSpan {
    color: orange;
    font-weight: 600;
}

.HeaderName {
    text-align: center;
    color: rgb(0, 0, 0);
    font-size: 70px;
    font-weight: 600;
}

.WelcomeBeat {
    text-align: center;
    color: rgb(0, 0, 0);
    font-size: 70px;
    font-weight: 600;
}

.WelcomeBeat::after {
    content: "ERP System";
    animation: animate infinite 15s;

}

.ERPImage {
    width: 60%;
}

.ActionButton {
    padding: 0 20% 0 0;
}

.ActionButton a {
    text-decoration: none;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 24px;
    padding: 14px 12%;
    border-radius: 15px;
    margin-top: 5%;
    transition: 0.4s;
    background-color: rgb(38, 56, 95);
    white-space: nowrap;
    font-weight: 600;
}

.ActionButton a:hover {
    border: none;
    transform: scale(1.1, 1.1);
    color: rgb(255, 255, 255);
    background: orange;
}

@keyframes animate {
    0% {
        content: "ERP System";
        color: orange;
    }

    50% {
        content: "ERP System";
        color: rgb(0, 0, 0);
    }

    75% {
        content: "ERP System";
        color: orange;
    }
}

/*====================
	About BeatSoft
====================== */

#briefSection {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2s, transform 2s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.briefContent {
    max-width: 30%;
}

.brief1 {
    font-size: 55px;
    font-weight: 600;

}

.brief2 {
    font-size: 22px;
    font-weight: 600;
}

/*====================
	Module/system features
====================== */

.list-group-item {
    transition: color 0.3s;
    border-color: #a09e9e;
    transition: transform 0.2s ease-in-out;
}

.list-group-item:hover {
    color: orange;
    transform: scale(1.1);
    border-color: transparent !important;
}

.feature-list {
    background-color: transparent !important;
}

.list-group-item {
    background-color: transparent !important;
    font-size: larger;
    padding-bottom: 3%;
}

.module-title {
    position: relative;
    text-align: center;
}

.module-title::after {
    content: "";
    display: block;
    width: 200px;
    height: 2px;
    background-color: orange;
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
}

#features-modules i {
    color: orange;
}

#features i {
    color: rgb(38, 56, 95);
    font-size: 32px;
}

.system-features::after {
    content: "";
    display: block;
    width: 100px;
    height: 2px;
    background-color: orange;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.system-features {
    font-weight: bolder;
}

.bg-offwhite {
    background: #f7f7f7;
    color: black;
}

.bg-gray {
    background: #ececec;
    color: black;
}

.zoom-out-image img {
    transition: transform 0.3s ease-in-out, width 0.3s ease-in-out, height 0.3s ease-in-out;
}

.zoom-out-image:hover img {
    transform: scale(1.3);
    width: 120%;
    height: auto;
    z-index: 1000;
}

/*====================
	About Beat
====================== */

.beat {
    color: #3fc1f3;
}

.beat-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background-color: #3fc1f3;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/*====================
	Footer
====================== */

/* Main Footer */
footer .main-footer {
    padding: 20px 0;
    background: rgb(38, 56, 95);
}

footer ul {
    padding-left: 0;
    list-style: none;
}

/* Copy Right Footer */
.footer-copyright {
    background: #222;
    padding: 5px 0;
}

.footer-copyright .logo {
    display: inherit;
}

.footer-copyright nav {
    float: right;
    margin-top: 5px;
}

.footer-copyright nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-copyright nav ul li {
    border-left: 1px solid #505050;
    display: inline-block;
    line-height: 12px;
    margin: 0;
    padding: 0 8px;
}

.footer-copyright nav ul li a {
    color: #969696;
}

.footer-copyright nav ul li:first-child {
    border: medium none;
    padding-left: 0;
}

.footer-copyright p {
    color: #969696;
    margin: 2px 0 0;
}

/* Footer Top */
.footer-top {
    background: #252525;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 3px solid #222;
}

footer.transparent .footer-top,
footer.transparent .main-footer {
    background: transparent;
}

footer.transparent .footer-copyright {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.3);
}

/* Footer light */
footer.light .footer-top {
    background: #f9f9f9;
}

footer.light .main-footer {
    background: #f9f9f9;
}

footer.light .footer-copyright {
    background: none repeat scroll 0 0 rgba(255, 255, 255, 0.3);
}

/* Footer 4 */
.footer- .logo {
    display: inline-block;
}

/*====================
	Widgets
====================== */
.widget {
    padding: 20px;
    margin-bottom: 40px;
}

.widget.widget-last {
    margin-bottom: 0px;
}

.widget.no-box {
    padding: 0;
    background-color: transparent;
    margin-bottom: 40px;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
}

.widget.subscribe p {
    margin-bottom: 18px;
}

.widget li a {
    color: orange;
}

.widget li a:hover {
    color: #4b92dc;
}

.widget-title {
    margin-bottom: 20px;
}

.widget-title span {
    background: #839FAD none repeat scroll 0 0;
    display: block;
    height: 1px;
    margin-top: 25px;
    position: relative;
    width: 20%;
}

.widget-title span::after {
    background: inherit;
    content: "";
    height: inherit;
    position: absolute;
    top: -4px;
    width: 50%;
}

.widget-title.text-center span,
.widget-title.text-center span::after {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}

.widget .badge {
    float: right;
    background: #7f7f7f;
}

.typo-light h1,
.typo-light h2,
.typo-light h3,
.typo-light h4,
.typo-light h5,
.typo-light h6,
.typo-light p,
.typo-light div,
.typo-light span,
.typo-light small {
    color: #fff;
}

ul.social-footer2 {
    margin: 0;
    padding: 0;
    width: auto;
}

ul.social-footer2 li {
    display: inline-block;
    padding: 0;
}

ul.social-footer2 li a:hover {
    background-color: #ff8d1e;
}

ul.social-footer2 li a {
    display: block;
    height: 30px;
    width: 30px;
    text-align: center;
}

.btn {
    background-color: orange;
    color: #fff;
}

.btn:hover,
.btn:focus,
.btn.active {
    background: #fff;
    color: #ff8d1e;
    -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 250ms ease-in-out 0s;
    -moz-transition: all 250ms ease-in-out 0s;
    -ms-transition: all 250ms ease-in-out 0s;
    -o-transition: all 250ms ease-in-out 0s;
    transition: all 250ms ease-in-out 0s;
}


@media screen and (max-width:1500px) {

    .WelcomePageFlex {
        font-size: 18px;
    }
    .HeaderName {
        text-align: center;
        font-size: 60px;
    }

    .WelcomeBeat {
        font-size: 60px;
    }
    .ERPImage {
        width: 65%;
    }
    .ActionButton {
        padding: 0 17% 0 0;
    }
    .ActionButton a {
        font-size: 20px;
        padding: 8px 12%;
        margin-top: 5%;
    }
    .brief1 {
        font-size: 42px;
        font-weight: 600;
    }
    .brief2 {
        font-size: 20px;
        font-weight: 600;
    }
}
@media screen and (min-width:850px) and (max-width:1499px) {

    .WelcomePageFlex {
        font-size: 16px;
    }
    .HeaderName {
        text-align: center;
        font-size: 50px;
    }
    .WelcomeBeat {
        font-size: 50px;
    }
    .ERPImage {
        width: 70%;
    }
    .brief1 {
        font-size: 38px;
        font-weight: 600;
    }
    .brief2 {
        font-size: 18px;
        font-weight: 600;
    }
}