:root {
  --white: #FFF;
  --black: #000;
  --font-color-base: #666;
  --font-color-dark: #212529;
  --font-color-light: #b0aebe;
  --font-color-link: #57a6ff;
  --footer: #34314b;
  --footer-base: #2e2b45;
  --contrast: rgba(246, 248, 249, 0.8);
  --grad-1: #a1ecff;
  --grad-2: #7dbcff;

  --size10: 0.625rem;
  --size14: 0.875rem;
  --size16: 1rem;
  --size18: 1.125rem;
  --size20: 1.25rem;
  --size30: 1.875rem;
  --size40: 2.5rem;
  --size50: 3.125rem;
  --size100: 6.25rem;
  --size150: 9.375rem;
}

html { scroll-behavior: smooth;}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: var(--size14);
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--font-color-base);
  margin: 0;
  padding: 0;
}

*,
::after,
::before {
  box-sizing: border-box;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

a { text-decoration: none; }

p { margin-top: 0; }

h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}

img {
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
  border-style: none;
}

section {
  margin: var(--size100) auto;
}

.container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  cursor: pointer;
  user-select: none;
  background-color: var(--font-color-link);
  border: 1px solid transparent;
  padding: 6px 12px;
  border-radius: var(--size20);
  transition: ease-in-out 0.3s;
}

.btn-primary {
  background-image: linear-gradient(90deg, var(--grad-1) 0%, var(--grad-2) 100%);
  border: 1px solid var(--grad-1);
  box-shadow: 0 10px 20px rgba(162, 236, 255, .5);
  transition: ease-in-out 0.3s;
  color: var(--white);
  padding: 7px 18px;
}

.btn-white {
  background-color: var(--white);
  color: var(--font-color-link);
  box-shadow: 0px 10px 20px rgba(255, 255, 255, 0.35);
  padding: 0.475rem 28px;
}

/* Small Buttons */
.btn-green {
  background-color: #7BCFA9;
  color: var(--white);
  box-shadow: 0px 10px 20px rgba(255, 255, 255, 0.35);
  padding: 0px 10px;
  font-size: 12px;
}

.btn-blue {
  background-color: var(--font-color-link);
  color: var(--white);
  box-shadow: 0px 10px 20px rgba(255, 255, 255, 0.35);
  padding: 0px 10px;
  font-size: 12px;
  margin-left: 7px;
}

@media (min-width: 768px) {
  .container { max-width: 720px; }
  .benefits {
    max-width: 600px;
    margin: 0 auto;
  }

  .diff-img img {
    height: 300px;
  }

  .hub-dots {
    transform: translate(-75%, -31%);
    height: 190px;
  }

  .hireUs-wrap {
    display: block;
  }

  .hire-us {
    text-align: center;
    margin: 0;
  }

  .hire-us hr { max-width: initial; }
  .survey { margin: 0;}
}


@media (min-width: 1200px) {
  .container { max-width: 1140px; }
  .benefits { min-width: 1140px;}
  .hub-dots {
    transform: translate(-116%, -13%);
    height: 400px;
  }
}