@import url('https://fonts.googleapis.com/css?family=Roboto');


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

p {
    margin: 0.75rem 0;
}

/* Utility Classes*/
.text-primary {
    color: #e74c3c;
}

.text-secondary {
    color: #fff;
}

.lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    color: #fff;
    background-color: #e74c3c;
    padding: 0.5rem 2rem;
    border: none;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.btn:hover,
.btn:active {
    background-color: #c0392b;
    cursor: pointer;
}

.bg-dark {
    background-color: #222f3e;
    color: #fff;
}

.bg-light {
    background-color: #f1f1f1;
    color: #333;
}

.l-heading {
    font-size: 4rem;
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.m-heading {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.text-center {
    text-align: center;
}

.text-lg {font-size: 1.8rem;}

.text-sm {font-size: 1.2rem;}

.pb-1 {padding-bottom: 1.5rem;}

.py-1 {padding: 1.5rem 0;}

.p-1 {padding: 1.5rem 1.5rem}

.flex-container {
    display: flex;
}

/* Navbar */
#navbar {
    display: flex;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background-color: #222f3e;
    color: #fff;
    z-index: 1;
    padding: 1rem;
}

#navbar ul {
    display: flex;
    align-items: center;
}

#navbar ul li a {
    color: #fff;
    padding: 0.75rem;
    margin: 0 0.25rem;
    transition: background-color 0.2s;
}

#navbar ul li a:hover,
#navbar ul li a:active {
    background-color: #e74c3c;
    border-radius: 5px;
}

/* Showcase */
#showcase {
    background: #333 url('../resources/img/background.jpg') no-repeat center center/cover;
    height: 100vh;
    color: #fff;
    position: relative;
}

#showcase .showcase-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0 2rem;
    /* Overlay */
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.4);
}

/* What Section */
.items {
    display: flex;
    padding: 1rem;
}

#what .items .item {
    flex: 1;
    text-align: center;
    padding: 1rem;
}

#what .items .item i {
    background-color: #e74c3c;
    border-radius: 50%;
    padding: 1rem;
    margin-bottom: 1rem; 
}

/* Steps Section */
#about div .grid-link {
    color: #e74c3c;
}

#about div .grid-link:hover {
    color: #c0392b;
}

#about .container-1 {
    margin: auto;
}

#about .container-1 img {
    height: 72px;
    width: 72px;
    padding-left: 15px;
}

#about .container-2 .flex-container-2 img {
    max-width: 100%;
    height: auto;
    align-self: center;
    margin: auto;
}

#about div .header-inline {
    display: inline;
}

#about .flex-container {
    flex-direction: row;
}

.container-1 {
    flex: 1;
}

.container-2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#about .container-2 .flex-container-2 {
    align-items: center;
}

#about .flex-container-3 {
    display: flex;
}

#about .flex-container-3 {
    justify-content: center;
}

.btn-2 {
    display: inline-block;
    color: #fff;
    background-color: #e74c3c;
    padding: 0.5rem 2rem;
    border: none;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.btn-2:hover,
.btn-2:active {
    background-color: #c0392b;
    cursor: pointer;
}

/* Contact */
#contact {
    display: flex;
}

#contact .contact-form {
    flex: 1;
}

#contact .contact-form .form-group {
    margin: 0.75rem;
}

#contact .contact-form label {
    display: block;
}

#contact .contact-form input,
#contact .contact-form textarea {
    width: 100%;
    padding: 0.5rem;
}


