@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap');

:root {
    --dark-color: #343a40;
    --light-color: #ffffff;
    --link-color: #14d635;
}
  
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    background: url('../img/window_view_2.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
}


/* navbar */
.navbar {
    position: absolute;
    height: 4.4rem;
    width: 100%;
    background: transparent;
    color: var(--light-color);
    z-index: 2;
}

.navbar ul {
    display: flex;
}

.navbar a {
    color: var(--light-color);
    padding: .8rem;
    margin: 0 .4rem;
    font-size: 120%;
    font-weight: 600;
}

.navbar a:hover {
    border-bottom: 2px var(--light-color) solid;
}

.navbar .flex {
    justify-content: space-between;
}

.navbar .logo {
    font-weight: 900;
}

/* showcase */
.showcase {
    position: relative;
    height: 400px;
    padding-top: 2.4rem;
  
    
    
    color: var(--dark-color);

    z-index: 1;
}

.showcase-background {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;

    background: hsla(27, 32%, 63%, 1);
    background: linear-gradient(45deg, hsla(27, 32%, 63%, 1) 0%, hsla(218, 78%, 20%, 1) 94%);
    background: -moz-linear-gradient(45deg, hsla(27, 32%, 63%, 1) 0%, hsla(218, 78%, 20%, 1) 94%);
    background: -webkit-linear-gradient(45deg, hsla(27, 32%, 63%, 1) 0%, hsla(218, 78%, 20%, 1) 94%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#BF9D82", endColorstr="#0B295B", GradientType=1 );

    -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);

    z-index: -1;
}

.showcase h1 {
    font-size: 40px;
    font-weight: 800;
}
  
.showcase p {
    margin: 20px 0;
}
  
.showcase .grid {
    overflow: visible;
    grid-template-columns: 55% auto;
    gap: 30px;
}
  
.showcase-text {
    animation: slideInFromLeft 1s ease-in;
    color: var(--light-color);
}

.showcase-form {
    position: relative;
    top: 60px;
    height: 250px;
    width: 400px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: flex-end;
    animation: slideInFromRight 1s ease-in;
    z-index: 999;
}

.showcase-form a {
    color: var(--link-color);
}

/* decoration */
.decoration {
    position: relative;
    height: 200px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: var(--light-color);
}

.decoration h3 {
    opacity: 1;
}

/* info */
.info {
    padding: 6rem 0 3rem 0;
    background: hsla(218, 78%, 20%, 1);
    background: linear-gradient(45deg, hsla(218, 78%, 20%, 1) 3%, hsla(27, 32%, 63%, 1) 100%);
    background: -moz-linear-gradient(45deg, hsla(218, 78%, 20%, 1) 3%, hsla(27, 32%, 63%, 1) 100%);
    background: -webkit-linear-gradient(45deg, hsla(218, 78%, 20%, 1) 3%, hsla(27, 32%, 63%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#0B295B", endColorstr="#BF9D82", GradientType=1 );

    color: var(--light-color);

    -webkit-clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);

}

/* industries */
.industries {
    position: relative;
    top: -10px;
    color: var(--light-color);
}
.industries .flex {
    flex-wrap: wrap;
}
  
.industries .card {
    text-align: center;
    margin: 18px 10px 40px;
    transition: transform 0.2s ease-in;
}
  
.industries img {
    width: 90px;
}
  
.industries .card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
  
.industries .card:hover {
    transform: translateY(-15px);
}

/* workflow */
.workflow-head {
    padding: 4rem 0 2rem 0;

    background: hsla(27, 32%, 63%, 1);
    background: linear-gradient(45deg, hsla(27, 32%, 63%, 1) 0%, hsla(218, 78%, 20%, 1) 94%);
    background: -moz-linear-gradient(45deg, hsla(27, 32%, 63%, 1) 0%, hsla(218, 78%, 20%, 1) 94%);
    background: -webkit-linear-gradient(45deg, hsla(27, 32%, 63%, 1) 0%, hsla(218, 78%, 20%, 1) 94%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#BF9D82", endColorstr="#0B295B", GradientType=1 );

    color: var(--light-color);
}

.workflow-main .card > label {
    margin-right: 20px;
    font-size: 3em;
    font-weight: 300;
    color: rgb(252, 136, 34);
}

.workflow-main .card .title {
    font-weight: 600;
    margin-bottom: 10px;
}
  
.workflow-main .grid {
    padding: 30px;
}
  
/* .workflow-main .grid > *:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
} */
  
.workflow-main h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--second-color);
}

/* footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
}

footer a {
    color: var(--light-color);
}


/* utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
    overflow: auto;
    padding: 0 40px;
}

.card {
    background-color: var(--light-color);
    color: var(--dark-color);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    margin: 10px;
}

.card a {
    color: var(--link-color);
}

.btn {
    display: inline-block;
    padding: 10px 30px;
    cursor: pointer;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
}
  
.btn-outline {
    background-color: transparent;
    border: 1px #fff solid;
}
  
.btn:hover {
    transform: scale(0.98);
}

.btn-light {
    background-color: var(--light-color);
    color: var(--dark-color);
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
  
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* text sizes */
.lead {
    font-size: 20px;
}
  
.sm {
    font-size: 1rem;
}
  
.md {
    font-size: 2rem;
}
  
.lg {
    font-size: 3rem;
}
  
.xl {
    font-size: 4rem;
}
  
.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

/* margin */
.my-1 {
    margin: 1rem 0;
  }
  
  .my-2 {
    margin: 1.5rem 0;
  }
  
  .my-3 {
    margin: 2rem 0;
  }
  
  .my-4 {
    margin: 3rem 0;
  }
  
  .my-5 {
    margin: 4rem 0;
  }
  
  .m-1 {
    margin: 1rem;
  }
  
  .m-2 {
    margin: 1.5rem;
  }
  
  .m-3 {
    margin: 2rem;
  }
  
  .m-4 {
    margin: 3rem;
  }
  
  .m-5 {
    margin: 4rem;
  }
  
  /* padding */
  .py-1 {
    padding: 1rem 0;
  }
  
  .py-2 {
    padding: 1.5rem 0;
  }
  
  .py-3 {
    padding: 2rem 0;
  }
  
  .py-4 {
    padding: 3rem 0;
  }
  
  .py-5 {
    padding: 4rem 0;
  }
  
  .p-1 {
    padding: 1rem;
  }
  
  .p-2 {
    padding: 1.5rem;
  }
  
  .p-3 {
    padding: 2rem;
  }
  
  .p-4 {
    padding: 3rem;
  }
  
  .p-5 {
    padding: 4rem;
  }


/* animations */
@keyframes slideInFromLeft {
    0% {
      transform: translateX(-100%);
    }
  
    100% {
      transform: translateX(0);
    }
}
  
@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
    }
  
    100% {
        transform: translateX(0);
    }
}
  
@keyframes slideInFromTop {
    0% {
        transform: translateY(-100%);
    }
  
    100% {
        transform: translateX(0);
    }
}
  
@keyframes slideInFromBottom {
    0% {
        transform: translateY(100%);
    }
  
    100% {
        transform: translateX(0);
    }
}

/* Tablets and under */
@media (max-width: 768px) {
    .grid,
    .showcase .grid {
        display: flex;
        flex-direction: column;
    }
  
    .showcase {
        height: auto;
    }

    .showcase-background {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    }

    .showcase-text {
        text-align: center;
        margin-top: 40px;
        animation: slideInFromTop 1s ease-in;
    }
  
    .showcase-form {
        justify-self: center;
        margin: auto;
        animation: slideInFromBottom 1s ease-in;
    }

    .decoration h3 {
        margin-top: 4rem;
    }

    .workflow-head {
        padding-top: 110px;
    }

    .info {
        -webkit-clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
    }

    footer {
        flex-flow: column wrap;
        align-content: flex-start;
    }

    footer .container div,
    footer .container nav {
        width: 100%;
    }

}
  
/* Mobile */
@media (max-width: 500px) {
    .navbar {
        height: 7.2rem;
    }
  
    .navbar .flex {
        flex-direction: column;
    }

    .navbar ul {
        padding: 10px;
        background-color: rgba(0, 0, 0, 0.1);
    }

    .showcase-text {
        margin-top: 6rem;
    }

    .showcase-form {
        top: -.2rem;
        width: 300px;
    }

    .showcase-form h1 {
        font-size: 180%;
    }

}