@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap");
@import url(//fonts.googleapis.com/css?family=Montserrat:300,400,500);
:root {
    --bg-image: linear-gradient(to right, rgb(84, 114, 153), rgb(32, 133, 216));
    --highlight-color: rgb(17, 164, 34);
    --footer-color: #212b36;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

/* -------------------------- HEADER ------------------------- */

header {
    width: 100%;
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3)),
        url(/images/production-line.jpeg);
    background-size: cover;
}

nav {
    width: 100%;
    height: 100px;
    /* columns: rgb(255, 255, 255); */
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logo,
.footer-logo {
    font-size: 2em;
    letter-spacing: 2px;
    color: white;
}

.run {
    color: var(--highlight-color);
    font-weight: 500;
}

.menu a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    font-size: 20px;
    position: relative;
}

.menu a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    border-bottom: 2px solid var(--highlight-color);
    transition: 0.4s linear;
}

.menu a:hover::before {
    width: 90%;
}

.book-demo a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    font-size: 20px;
    background-color: var(--highlight-color);
    border-radius: 8px;
    cursor: pointer;
    transition: 0.5s ease-in-out 0s;
}

.book-demo:hover {
    transform: scale(0.9);
    transition: all 0.4s ease-out 0s;
}

.hero {
    max-width: 650px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.hero span {
    letter-spacing: 5px;
    font-size: 1.5em;
    padding-bottom: 10px;
}

.hero h1 {
    font-size: 2.5em;
}

/* -------------------------- STATS ------------------------- */

.contactus {
    height: 250px;
    background-color: var(--highlight-color);
}

.title,
.title2,
.title3 {
    text-align: center;
    padding-top: 20px;
    color: #f3f4fe;
    font-size: 20px;
}

.title2 {
    font-size: 50px;
}

.title3 {
    font-size: 15px;
}

.contacts {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 50px;
    color: #f3f4fe;
}

/* -------------------------- FEATURES/SERVICES ------------------------- */

.service-1 {
    font-family: "Montserrat", sans-serif;
    color: #8d97ad;
    font-weight: 500;
}

.servicecontainer {
    /* background-color: #8d97ad; */
    width: 80%;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 10px;
}

.service-1 h1,
.service-1 h2,
.service-1 h3,
.service-1 h4,
.service-1 h5,
.service-1 h6,
.service-1 p {
    color: #3e4555;
    text-align: center;
    font-size: large;
    margin-bottom: 20px;
}

.featurepic {
    /* background-color: #2cdd9b; */
    text-align: center;
    margin-bottom: 20px;
}

.service-1 .font-weight-medium {
    font-weight: 500;
}

.service-1 .bg-light {
    background-color: #f4f8fa !important;
}

.service-1 .subtitle {
    color: #8d97ad;
    line-height: 24px;
}

.service-1 .card.card-shadow {
    -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
    box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}

.service-1 .wrap-service1-box .card-body {
    padding: 40px;
}

.service-1 .btn-success-gradiant {
    background: #2cdd9b;
    background: -webkit-linear-gradient(
        legacy-direction(to right),
        #2cdd9b 0%,
        #1dc8cc 100%
    );
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#2cdd9b),
        to(#1dc8cc)
    );
    background: -webkit-linear-gradient(left, #2cdd9b 0%, #1dc8cc 100%);
    background: -o-linear-gradient(left, #2cdd9b 0%, #1dc8cc 100%);
    background: linear-gradient(to right, #2cdd9b 0%, #1dc8cc 100%);
    border: 0px;
}

.service-1 .btn-success-gradiant:hover {
    background: #1dc8cc;
    background: -webkit-linear-gradient(
        legacy-direction(to right),
        #1dc8cc 0%,
        #2cdd9b 100%
    );
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#1dc8cc),
        to(#2cdd9b)
    );
    background: -webkit-linear-gradient(left, #1dc8cc 0%, #2cdd9b 100%);
    background: -o-linear-gradient(left, #1dc8cc 0%, #2cdd9b 100%);
    background: linear-gradient(to right, #1dc8cc 0%, #2cdd9b 100%);
}

.service-1 .btn-md {
    padding: 15px 45px;
    font-size: 16px;
}

.center {
    margin: auto;
    width: 50%;
    /* border: 3px solid green; */
    /* padding: 10px; */
}

/* -------------------------- TIMESHEETS ------------------------- */

.timesheets {
    /* height: 200px; */
    background-color: var(--highlight-color);
    width: 80%;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 10px;
}

.timesheets h1 {
    font-size: 40px;
    margin: 10px;
    color: #f3f4fe;
    margin: 50px auto;
    padding-left: 10px;
}

.login-form .form-group label {
    display: block;
}

/* -------------------------- FOOTER ------------------------- */

.footer {
    height: 400px;
    background-color: var(--footer-color);
    padding-top: 60px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.footer-info {
    margin-left: 10%;
    margin-right: 10%;
    display: flex;
    justify-content: space-between;
}

.footer-logo {
    max-width: 300px;
    display: block;
    margin-bottom: 10px;
}

.footer-info .desc {
    font-size: 16px;
    line-height: 24px;
    color: #f3f4fe;
    margin-bottom: 30px;
    max-width: 350px;
}

.footer-info h5 {
    text-decoration: none;
    color: rgb(225, 218, 218);
    padding: 10px 0;
    font-size: 18px;
    /* background: red; */
}

.footer-info a {
    text-decoration: none;
    color: #f3f4fe;
    padding: 10px 0;
    /* font-size: 16px; */
}

.footer-bottom {
    padding: 10px 10px;
    border-top: 2px solid rgba(255, 255, 255, 0.43);
    height: 50%;
    width: 80%;
    margin-left: 10%;
    /* background: #5c0e57; */
    color: #212b36;
}

.footer-bottom-left {
    float: left;
    align-items: center;
}

.footer-bottom-left ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

.footer-bottom-left a {
    font-weight: normal;
    font-size: 15px;
    color: #f3f4fe;
    margin-right: 30px;
    display: inline-block;
}

.footer-bottom-right {
    float: right;
    text-align: right;
    font-weight: normal;
    font-size: 15px;
    color: #f3f4fe;
}

.footer-bottom-right a {
    color: #f3f4fe;
}

.footer .shape {
    position: absolute;
    z-index: -1;
}

.footer .shape.shape-1 {
    top: 0;
    left: 0;
}

.footer .shape.shape-2 {
    top: 0;
    right: 0;
}

.footer .shape.shape-3 {
    bottom: 0;
    right: 0;
}

.footer-links {
    display: flex;
}

.zlink:hover {
    color: var(--highlight-color);
    /* padding-left: 10px; */
    transform: scale(0.9);
    transition: all 0.4s ease-out 0s;
}

/* -------------------------- RESPONSIVE ------------------------- */
@media screen and (max-width: 768px) {
    nav {
        display: block;
        /* background-color: red; */
    }
    nav .menu {
        padding: 10px 0 30px 0;
        display: block;
        justify-content: center;
        align-items: center;
    }
    nav div {
        text-align: center;
    }

    .hero {
        max-width: 650px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
        margin-top: 60px;
    }

    .hero span {
        letter-spacing: 1px;
        font-size: 1em;
        margin-top: 20px;
        padding-bottom: 1px;
    }

    .hero h1 {
        font-size: 1em;
    }

    .footer-bottom-left {
        /* float: none; */
        /* margin: auto; */
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .footer-bottom-right {
        /* float: none; */
        /* text-align: right; */
        width: 100%;
        display: flex;
        justify-content: center;
    }
}
