:root {
    --main-text-color: #1c151d;
    --navigation-color: #1a1a1a;
}

html, body {
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--main-text-color);
}

p {
    margin: 0;
    padding: 1.5em 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: 'Oswald', sans-serif;
}

a {
    color: var(--navigation-color);
}

body {
    display: flex;
    flex-direction: column;
}

body>header>nav {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #fff;
    position: absolute;
    right: 0;
    top: 0;
}

body>header>nav>span {
    flex: 1 1 auto;
    padding: 0.5em;
}

body>header>nav>a {
    color: var(--navigation-color);
    text-decoration: none;
    margin: 0.35em 1em;
    font-family: 'Karla', sans-serif;
    transition: all 0.4s ease;
}

body>header>nav>a:hover {
    transform: scale(1.1);
}

body>section.main {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    background: center / cover url('main-img.jpg');
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    padding: 1em;
    color: #ffffff;
}

.workwith {
  display:block;
  padding:20px;
  text-align: center;
}
.Industries {
    background-image: linear-gradient(180deg, #d7f0cb 0%, #e5f0e0 100%);
}

.main>div {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.479);
    padding: 2em 4em;
}

body>section.main>div>h1 {
    font-size: 4.3em;
    font-weight: 200;
    margin: 0;
}

body>section.main>div>p>span {
    text-decoration: underline;
}

.main>div>p {
    margin: 0;
    padding: 0;
}

section.collaboration {
    border-bottom: 1px solid #e6e6e6;
}

section.collaboration>span {
    display: flex;
    justify-content: center;
    font-weight: 700;
    font-size: 2em;
    margin: 1em 0;
}

section.collaboration>div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1em 0;
    overflow-y: auto;
}

section.collaboration>div>img {
    margin: 1em;
    width: 12em;
    height: 5em;
    object-fit: contain;
}

section.suggest {
    background-image: linear-gradient(180deg, #CBEEF0 0%, #EFFAFB 100%);
}

.two-columns {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.two-columns>* {
    width: 100%;
    box-sizing: border-box;
    padding: 2em;
}

.suggest>img {
    display: block;
    /* object-fit: scale-down;
    object-position: bottom right; */
    width: 35%;
}

h2.title {
    font-weight: 400;
}

h2.title>* {
    display: inline-block;
    vertical-align: middle;
}

h2.title>span.line {
    width: 3em;
    height: 2px;
    background: #000000;
    margin: 0 0.3em;
}

h2.title>span.text {
    font-size: 2em;
    letter-spacing: -4px;
}


#suggestions a.button {
    display: inline-block;
    vertical-align: baseline;
    padding: 0.5em 0.5em;
    border-radius: 3px;
    background-color: #414545;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s ease;
}

#suggestions a.button:hover {
    transform: scale(1.1);
}

#suggestions a.button>span {
    margin-inline-start: 0.5em;
}

section>#contact>nav>div {
    display: flex;
    margin-bottom: 1em;
}

section>#contact>nav>div>i {
    flex: 0 0 2em;
    font-size: 2em;
    text-align: center;
    vertical-align: middle;
}

section>#contact>nav>div>div {
    flex: 1 1 auto;
}

section>#contact>nav>div>div>a {
    display: inline-block;
    transition: all 0.4s ease;
    word-break: break-all;
}

section>#contact>nav>div>div>a:hover {
    transform: scale(1.1);
}


#about-us>ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12em, 1fr));
    gap: 0.25em 0.5em;
}

#about-us>h3 {
    border-bottom: 1px solid #e6e6e6;
    font-size: 2em;
}

#about-us>ul>li {
    list-style-type: none;
} */

.scroll-to-top {
    color: var(--main-text-color);
    background-color: #cfeff1;
    position: fixed;
    right: 0.5em;
    bottom: 0.7em;
    padding: 1em;
    cursor: pointer;
    border-radius: 3px;
    border: none;
    font-size: 1em;
    transition: all 0.4s ease;
}

.scroll-to-top:hover {
    color: var(--main-text-color);
    background-color: #fff;
}

@media screen and (min-width: 1024px) {
    .two-columns {
        flex-direction: row;
        justify-content: center;
        max-width: 120em;
        margin: auto;
    }

    .two-columns>* {
        width: 50%;
    }

    h2.title {
        font-size: 2.1em;
    }
}

@media screen and (max-width: 500px) {
    h2.title>span.line {
        width: 2.5em;
    }

    body>header>nav>span {
        display: none;
    }

    body>header>nav {
        justify-content: space-between;
    }

    .suggest>img {
        width: 80%;
    }

    #suggestions a.button {
        font-size: 0.7em;
    }

    #suggestions a.button>span {
        margin-inline-start: 0;
    }

    h2.title>span.line {
        display: none;
    }
}


  .topnav {
    background-color: #333;
  }

  .topnav #myLinks {
    display: none;
  }

  .topnav a {
    color: white;
    padding: 0.7em 1em;
    text-decoration: none;
    display: block;
  }

  .topnav a.icon {
    background: black;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
  }

  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }