@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
}

h1, h2 {
    font-weight: 300;
    line-height: 1.2;
}

p {
    margin: 10px 0;
}

img {
    width: 100%;
}

/* Blockquote */
blockquote {
    border-left: 6px solid rgba(34, 34, 34, 0.1);
    padding: 20px 25px;
    text-align: left;
}

/* Nav bar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    color: #000;
    opacity: 0.8;
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0px;
    padding: 0 30px;
    transition: 0.5s;
}

.navbar a {
    color: #000;
    padding: 10px 20px;
    margin: 0 5px;
}

.navbar a:hover {
    border-bottom: #f70 2px solid;
}

.navbar.top {
    background: transparent;
    color: #fff;
}

.navbar.top a {
    background: transparent;
    color: #fff;
}

.navbar ul {
    display: flex;
}

.navbar .logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar img {
    height: 50px;
    width: 58px;
    border-radius: 5px;
}

.navbar h1 {
    font-weight: 300;
    padding-left: 10px;
}

.navbar h1 span,
.footer h2 span {
    font-weight: 400;
}

/* Header */
.hero {
    background: url('../images/home/showcase.jpg') no-repeat center center/cover;
    height: 100vh;
    position: relative;
    color: #fff;
}

.hero .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    height: 100%;
}

.hero .content h1 {
    font-size: 45px;
}

.hero .content p {
    font-size: 23px;
    max-width: 600px;
    margin: 20px 0 30px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0,0, 0.6);
}

.hero * {
    z-index: 10;
}

.hero .navbar {
    z-index: 11;
}

/* Icons */
.icons {
    padding: 30px;
}

.icons h3 {
    font-weight: bold;
    margin-bottom: 15px;
}

.icons i {
    background-color: #28a745;
    color: #fff;
    padding: 1rem;
    border-radius: 50%;
    margin-bottom: 15px;
}

.cases img:hover {
    opacity: 0.7;
}

/* Callback form */
.callback-form {
    width: 100%;
    padding: 20px 0;
}

.callback-form label {
    display: block;
    margin-bottom: 5px;
}

.callback-form .form-control {
    margin-bottom: 15px;
}

.callback-form input {
    width: 100%;
    padding: 4px;
    height: 40px;
    border: #f5f5f5 1px solid;
}

.callback-form input:focus {
    outline-color: #28a745;
}

.callback-form .btn {
    padding: 12px 0;
    margin-top: 20px;
}

/* Footer */
.footer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    height: 100%;
    padding: 20px 0;
}

.footer a {
    color: #fff;
}

.footer a:hover {
    color: #28a745;
}

.footer h3 {
    margin-bottom: 25px;
}

.footer .logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .logo img {
    height: 40px;
    width: 47px;
    border-radius: 5px;
    margin-right: 10px;
}

.footer .social {
    margin: 20px 0;
}

.footer .social > * {
    margin-right: 30px;
}

.footer p {
    margin: 8px 0;
}

.footer .company-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    margin: 20px 30px;
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 300;
    padding: 20px 0;
}

/* Mobile */
@media(max-width: 768px) {
    .navbar {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 140px;
        padding: 20px;
    }

    .navbar a {
        padding: 10px 10px;
        margin: 0 3px;
    }

    .navbar .logo img {
        height: 40px;
        width: 47px;
        border-radius: 5px;
    }

    .navbar h1 {
        font-weight: 300;
        padding-left: 10px;
        font-size: 24px;
    }

    .navbar ul {
        margin-top: 20px;
    }

    .flex-items {
        flex-direction: column;
    }

    .flex-columns .column,
    .flex-grid .column {
        flex: 100%;
        max-width: 100%;
    }
}

@media(max-width: 375px) {
    .hero .content h1 {
        margin-top: 100px;
    }
}

