html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

ol, ul {
    list-style: none;
}
*,*::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: inherit;
}

html {
    font-size: 62.5%; /* For easy rem to px convertion. Example: 1.6rem is 16px */
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
    height: 100%;
}
body {
    color: white;
    background-color: #111111;
    position: relative;
    height: 100%;
    line-height: 1.5;
    font-size: 1.5rem;
    font-weight: 300;
    font-family: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
p {
    margin-bottom: 2.5rem;
}
a {
    color: #64fcd9;
    font-weight: 600;
}
a:hover {
    text-decoration: none;
}
strong {
    font-weight: 600;
}
hr {
    border: none;
    border-bottom: 1px solid white;
    width: 8rem;
    margin: 3.5rem 0 3.5rem 0;
}

.container {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}
.section {
    width: 100%;
    max-width: 820px;
    padding-bottom: 10rem;
}
.section__title {
    font-weight: 800;
    line-height: 1;
}
h2.section__title {
    font-size: 3.5rem;
    margin-bottom: 3rem;
}
h3.section__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.header {
    position: relative;
}
.header__logo {
    width: 15rem;
    margin-bottom: 2rem;
}
.header__right {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    max-width: 700px;
}
.header__right img {
    width: 100%;
}
.header__msg {
    padding-top: 25rem;
}
.header__signature {
    width: 15rem;
}

.team {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}
.team img {
    width: 100%;
    height: auto;
}
.services__intro span {
    background-color: #226d4d;
    padding: 0 .5rem;
    font-weight: 600;
}
.services__item {
    position: relative;
    padding-left: 4.5rem;
    margin-bottom: 4rem;
}
.services__item .section__title span {
    color: #7218FA;
    position: absolute;
    left: 0;
    font-weight: 300;
}
.services__item li {
    margin-bottom: .5rem;
    padding-left: 2.5rem;
    position: relative;
}
.services__item li::before {
    content: ">";
    position: absolute;
    top: 0;
    left: 0;
    color: #555c66;
}

.customers {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
    gap: 3rem 4rem;
    justify-items: center;
    align-items: center;
    margin-bottom: 1.5rem
}
.customers > figure > img {
    display: block;
    max-height: 5rem;
    max-width: 100%;
}

.footer {
    font-size: 1.4rem;
    display: flex;
    flex-wrap: wrap;
}
.footer span:not(:last-of-type):after {
    content: "/";
    margin-left: 1rem;
    margin-right: 1rem;
    color: #64fcd9;
}

.culture .section {
    padding-bottom: 0;
}
.culture .glide {
    padding-bottom: 10rem;
}
.culture .glide__slide {
    height: 25rem;
    overflow: hidden;
}
.culture .glide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/*
 * ========================
 * Small Screen -- 576px
 * ========================
 */
@media only screen and (min-width: 36em) {
    .container {
        max-width: 540px;
    }
}

/*
 * ========================
 * Medium Screen -- 768px
 * ========================
 */
@media only screen and (min-width: 48em) {
    .container {
        max-width: 760px;
    }
    h2.section__title {
        font-size: 5rem;
    }
    .header__signature {
        width: 20rem;
    }
    .team {
        grid-template-columns: repeat(3, 1fr);
    }
    .services__items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
    .services__item {
        margin-bottom: 0;
    }
}

/*
 * ========================
 * Large Screen -- 992px
 * ========================
 */
@media only screen and (min-width: 62em) {
    .container {
        max-width: 960px;
    }
    h2.section__title {
        font-size: 6rem;
    }
    h3.section__title {
        font-size: 3rem;
    }
    .header__msg {
        font-size: 1.7rem;
    }
    .team strong {
        font-size: 1.7rem;
    }
    .culture .glide__slide {
        height: 35rem;
    }
}

/*
 * ========================
 * XLarge Screen -- 1200px
 * ========================
 */
@media only screen and (min-width: 75em) {
    .container {
        max-width: 1140px;
    }
    .section {
        padding-bottom: 13rem;
    }
}

/*
 * ========================
 * XXLarge Screen -- 1400px
 * ========================
 */
@media only screen and (min-width: 87.5em) {
    .container {
        max-width: 1320px;
    }
    
}

/*
 * ========================
 * XXXLarge Screen -- 1800px
 * ========================
 */
@media only screen and (min-width: 112em) {
    .culture .glide__slide {
        height: 50rem;
    }
}