@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap");
:root {
  --bg-white: white;
  --bg-grey: #F2F2F2;
  --bg-black: #26252A;
  --bg-black-second: #333238;
  --primary-clr: #017EFF;
  --secondary-clr: #F2A016;
  --text-clr: #3B3B3B;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-size: 1em;
}

body {
  background: var(--bg-white);
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-content: space-between;
}

a {
  color: white;
  text-decoration: none;
}

ul {
  list-style: none;
}

section {
  padding: 2.5em 2em;
}

.navbar {
  background: white;
  padding: 1em;
  padding-left: 2em;
}

.navbar .container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar .logo {
  font-weight: bold;
  color: var(--primary-clr);
  font-size: 1.45em;
}

.navbar svg {
  cursor: pointer;
  margin-right: 1em;
}

.navbar svg path {
  fill: var(--text-clr);
}

.mobile-menu {
  display: none;
}

nav {
  display: none;
}

nav a:hover {
  color: var(--secondary-clr);
}

.hero-section > .container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hero-section {
  text-align: left;
}

.hero-section .hero-img {
  width: 100%;
  height: 100%;
  margin-bottom: 2em;
}

.hero-section .left-col {
  margin-bottom: 4em;
}

.hero-section .left-col .subtitle {
  font-size: 0.90em;
  color: var(--text-clr);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero-section .left-col h1 {
  color: var(--text-clr);
  font-size: 2.4em;
  line-height: 1.25em;
  margin-bottom: 0.5em;
}

.hero-section .left-col span {
  white-space: pre;
}

.hero-section .left-col .star {
  width: 1.1em;
  height: 1.1em;
  position: relative;
  left: -0.5em;
  top: -0.1em;
}

.hero-section .work-cta {
  color: white;
  font-size: 1em;
  font-weight: bold;
  border-radius: 5em;
  background-color: var(--secondary-clr);
  border: 0.2em solid var(--secondary-clr);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: .75em 1.25em;
}

.hero-section .work-cta .search {
  width: 1.25em;
  height: 1.25em;
  margin-right: 0.5em;
}

.hero-section .work-cta:focus, .hero-section .work-cta:hover {
  background-color: white;
  color: var(--secondary-clr);
}

.hero-section .work-cta:focus .search path, .hero-section .work-cta:hover .search path {
  fill: var(--secondary-clr);
}

.services-section {
  background-color: var(--bg-grey);
}

.services-section h1 {
  color: var(--text-clr);
  font-size: 2em;
  margin-bottom: 0.75em;
}

.services-section .container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.services-section .container ul {
  background-color: var(--bg-white);
  padding: 2em 2em;
  margin-bottom: 2em;
}

.services-section .service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2em;
}

.services-section .service p {
  font-size: 1em;
  line-height: 1.25em;
  color: var(--text-clr);
}

.services-section .service__icon img {
  width: 5em;
  height: 5em;
  padding: 1em;
  border-radius: 0.75em;
  background-color: #017EFF;
  margin-right: 2em;
}

.services-section .service:last-child {
  margin-bottom: 0;
}

#waves {
  z-index: -1;
  position: relative;
  margin-bottom: -1.25em;
  background-color: var(--bg-grey);
}

.testimonials-section {
  background-color: var(--primary-clr);
}

.testimonials-section .container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.testimonials-section .container .dots {
  display: none;
}

.testimonials-section h1 {
  color: white;
  text-align: center;
  line-height: 1.25em;
  font-size: 2em;
  margin-bottom: 2em;
}

.testimonials-section li {
  padding: 2em;
  background-color: var(--bg-white);
  margin-bottom: 2.5em;
  border-radius: 1.75em;
}

.testimonials-section li p {
  text-indent: 2em;
  margin-bottom: 1em;
}

.testimonials-section li .client__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.testimonials-section li .client__profile img {
  width: 3.5em;
  margin-right: 1em;
}

.testimonials-section li .client__profile .client__data {
  line-height: .95em;
}

.testimonials-section li .client__profile .client__data p {
  margin: 0;
  text-indent: 0;
  font-weight: 700;
}

.testimonials-section li .client {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2em;
}

.testimonials-section li .client .client__review {
  text-align: center;
}

.meeting-section {
  background-color: var(--primary-clr);
}

.meeting-section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.meeting-section .container p, .meeting-section .container a, .meeting-section .container h1 {
  text-align: center;
  color: white;
}

.meeting-section .container h1 {
  font-size: 2em;
  line-height: 1.15em;
}

.meeting-section .container p {
  font-size: 1.15em;
}

.meeting-section .container .left-col {
  margin-bottom: 3em;
}

.meet-cta {
  border: 0.2em solid var(--secondary-clr);
  border-radius: 2em;
  padding: 1em 2.5em;
  background-color: var(--secondary-clr);
  margin-bottom: 2em;
  -webkit-transition: all .5s 0s ease;
  transition: all .5s 0s ease;
  font-size: 1.15em;
  font-weight: 700;
}

.meet-cta:hover, .meet-cta:focus {
  color: var(--secondary-clr) !important;
  border: 0.2em solid var(--secondary-clr);
  border-radius: 2em;
  padding: 1em 2.5em;
  background-color: transparent;
}

footer {
  padding: 2em;
  background-color: var(--bg-black-second);
}

footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

footer .container p, footer .container h1 {
  color: white;
}

footer .container h1 {
  font-size: 1.25em;
  margin-bottom: 0.75em;
}

footer .container div {
  margin-bottom: 1.25em;
}

footer .container .footer__links {
  margin: 2em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .container .footer__links li {
  margin-top: .25em;
}

footer .container .legal-terms {
  margin-right: 4em;
}

.footer-credits {
  color: white;
  background-color: var(--bg-black);
}

.footer-credits .container {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  font-weight: 300;
}

.footer-credits .container span {
  font-weight: 700;
}

@media only screen and (min-width: 768px) {
  .navbar svg {
    display: none;
  }
  nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  nav .primary-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  nav .primary-nav li {
    margin-right: 2em;
  }
  nav .secondary-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  nav .secondary-nav li {
    margin-right: 1em;
  }
  nav a {
    color: var(--text-clr);
    font-weight: 300;
  }
  nav .contact-cta a {
    border: 0.25em solid var(--secondary-clr);
    border-radius: 2em;
    padding: 0.5em 2.5em;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    color: var(--secondary-clr);
    font-weight: 700;
  }
  nav .contact-cta a:focus, nav .contact-cta a:hover {
    color: white;
    background-color: var(--secondary-clr);
  }
  .hero-section {
    padding: 4em 0 6em 0;
  }
  .hero-section .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .hero-section .container .left-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0em 3em;
  }
  .hero-section .container h1 {
    font-size: 2em;
    margin-bottom: 0.95em;
  }
  .hero-section .container img {
    width: 40%;
    margin: 0;
    margin-right: 4em;
  }
  .services-section h1 {
    color: var(--text-clr);
    font-size: 1.75em;
    margin-bottom: 1em;
  }
  .services-section .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .testimonials-section {
    background-color: var(--primary-clr);
  }
  .testimonials-section .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .testimonials-section h1 {
    color: white;
    text-align: center;
    line-height: 1.25em;
    font-size: 2em;
    margin-bottom: 2em;
  }
  .testimonials-section li {
    padding: 2em;
    background-color: var(--bg-white);
    margin: 1em 5.5em 3em 5.5em;
    border-radius: 1.75em;
  }
  .testimonials-section li p {
    text-indent: 2em;
    margin-bottom: 1em;
  }
  .testimonials-section li .client__profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .testimonials-section li .client__profile img {
    width: 3.5em;
    margin-right: 1em;
  }
  .testimonials-section li .client__profile .client__data {
    line-height: .95em;
  }
  .testimonials-section li .client__profile .client__data p {
    margin: 0;
    text-indent: 0;
    font-weight: 700;
  }
  .testimonials-section li .client {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 2em;
  }
  .testimonials-section li .client .client__review {
    text-align: center;
  }
  .meeting-section {
    background-color: var(--primary-clr);
    padding-bottom: 4em;
  }
  .meeting-section .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .meeting-section .container p, .meeting-section .container a, .meeting-section .container h1 {
    text-align: left !important;
  }
  .meeting-section .container h1 {
    font-size: 1.5em;
  }
  .meeting-section .container p {
    font-size: 1em;
  }
  .meeting-section .container .left-col {
    margin-bottom: 0;
  }
  .meet-cta {
    margin-bottom: 0em;
    font-size: 1.15em;
  }
  footer .container {
    margin: 3em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  footer .container p, footer .container h1 {
    color: white;
  }
  footer .container h1 {
    font-size: 1.25em;
    margin-bottom: 0.75em;
  }
  footer .container div {
    margin-bottom: 0;
  }
  footer .container .footer__links {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  footer .container .footer__links li {
    margin-top: .25em;
  }
  footer .container .legal-terms {
    margin-right: 4em;
  }
  .footer-credits {
    padding: 1.25em 7em;
    font-size: 0.75em;
    color: white;
  }
  .footer-credits .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media only screen and (min-width: 1366px) {
  .navbar {
    padding: 2em;
    padding-left: 10em;
  }
  nav .primary-nav li {
    margin-right: 3em;
  }
  nav .secondary-nav li {
    margin-right: 8em;
  }
  .hero-section {
    padding: 4em 0 6em 0;
  }
  .hero-section .container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .hero-section .container .left-col {
    margin: 0em 12em;
    margin-right: 0;
  }
  .hero-section .container .left-col .subtitle {
    font-size: 0.90em;
    color: var(--text-clr);
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
  }
  .hero-section .container .left-col h1 {
    width: 75%;
    font-size: 2.4em;
    margin-bottom: 1.5em;
  }
  .hero-section .container #monitor {
    width: 35%;
    margin: 0;
    margin-right: 12em;
  }
  .services-section {
    background-color: var(--bg-grey);
  }
  .services-section h1 {
    color: var(--text-clr);
    font-size: 2em;
    margin: 1.5em 4em 2em 4em;
  }
  .services-section .container {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .services-section .service {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 2em;
  }
  .services-section .service p {
    font-size: 1em;
    line-height: 1.25em;
    color: var(--text-clr);
  }
  .services-section .service__icon img {
    width: 5em;
    height: 5em;
    padding: 1em;
    border-radius: 0.75em;
    background-color: #017EFF;
    margin-right: 2em;
  }
  .services-section .service:last-child {
    margin-bottom: 0;
  }
  .testimonials-section {
    background-color: var(--primary-clr);
  }
  .testimonials-section .container {
    margin-bottom: 4em;
  }
  .testimonials-section .container .dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0;
    padding: 0;
  }
  .testimonials-section .container .dots .dot {
    cursor: pointer;
    margin: 0 0.5em;
    padding: 0.55em;
    border-radius: 2em;
    background-color: white;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
  }
  .testimonials-section .container .dots .dot:hover {
    background-color: var(--secondary-clr);
  }
  .testimonials-section .container .dots .active {
    background-color: var(--secondary-clr);
  }
  .testimonials-section h1 {
    color: white;
    text-align: center;
    line-height: 1.25em;
    font-size: 2em;
    margin: 1em 0;
  }
  .testimonials-section li {
    margin: 4em 20em;
    padding: 2em;
    background-color: var(--bg-white);
    border-radius: 1.75em;
  }
  .testimonials-section li p {
    text-indent: 2em;
    margin-bottom: 1em;
  }
  .testimonials-section li .client__profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .testimonials-section li .client__profile img {
    width: 3.5em;
    margin-right: 1em;
  }
  .testimonials-section li .client__profile .client__data {
    line-height: .95em;
  }
  .testimonials-section li .client__profile .client__data p {
    margin: 0;
    text-indent: 0;
    font-weight: 700;
  }
  .testimonials-section li .client {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 2em;
  }
  .testimonials-section li .client .client__review {
    text-align: center;
  }
  .testimonials-section .clients li:not(.active) {
    display: none;
  }
  footer .container {
    margin: 3em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  footer .container p, footer .container h1 {
    color: white;
  }
  footer .container h1 {
    font-size: 1em;
    margin-bottom: 2em;
  }
  footer .container div {
    margin-left: 10em;
  }
  footer .container .footer__links {
    margin: 0;
    margin-right: 14em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  footer .container .footer__links li {
    margin-top: .25em;
  }
  footer .container .legal-terms {
    margin-right: 0em;
  }
  .footer-credits {
    padding: 1.25em 7em;
    font-size: 0.75em;
  }
}

@media only screen and (min-width: 1680px) {
  .hero-section {
    padding: 10em 0 10em 0;
  }
  .hero-section .container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .hero-section .container .left-col {
    margin: 0em 20em;
    margin-right: 0;
  }
  .hero-section .container .left-col .subtitle {
    font-size: 1em;
    color: var(--text-clr);
    font-weight: 400;
    letter-spacing: 0.5em;
    text-transform: uppercase;
  }
  .hero-section .container .left-col h1 {
    width: 50%;
    font-size: 2.5em;
    margin-bottom: 1.5em;
  }
  .hero-section .container #monitor {
    width: 31%;
    margin: 0;
    margin-right: 20em;
  }
  .services-section {
    background-color: var(--bg-grey);
  }
  .services-section h1 {
    color: var(--text-clr);
    font-size: 2em;
    margin: 2em 10em;
  }
  .services-section .container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .services-section .container .left-col {
    margin-right: 10em;
  }
  .services-section .container ul {
    padding: 3.5em;
  }
  .testimonials-section {
    background-color: var(--primary-clr);
  }
  .testimonials-section .container {
    margin-bottom: 4em;
  }
  .testimonials-section .container .dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0;
    padding: 0;
  }
  .testimonials-section .container .dots .dot {
    margin: 0 0.5em;
    padding: 0.55em;
    border-radius: 2em;
    background-color: white;
  }
  .testimonials-section .container .dots .active {
    background-color: var(--secondary-clr);
  }
  .testimonials-section h1 {
    color: white;
    text-align: center;
    line-height: 1.25em;
    font-size: 2em;
    margin: 1em 0;
  }
  .testimonials-section li {
    margin: 4em 24em;
    padding: 2em;
    background-color: var(--bg-white);
    border-radius: 1.75em;
  }
  .testimonials-section li p {
    text-indent: 2em;
    margin-bottom: 1em;
  }
  .testimonials-section li .client__profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .testimonials-section li .client__profile img {
    width: 3.5em;
    margin-right: 1em;
  }
  .testimonials-section li .client__profile .client__data {
    line-height: .95em;
  }
  .testimonials-section li .client__profile .client__data p {
    margin: 0;
    text-indent: 0;
    font-weight: 700;
  }
  .testimonials-section li .client {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 2em;
  }
  .testimonials-section li .client .client__review {
    text-align: center;
  }
  .testimonials-section .clients li:not(.active) {
    display: none;
  }
  footer .container {
    margin: 3em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  footer .container p, footer .container h1 {
    color: white;
  }
  footer .container h1 {
    font-size: 1.45em;
    margin-bottom: 2em;
  }
  footer .container div {
    margin-left: 10em;
  }
  footer .container .footer__links {
    margin: 0;
    margin-right: 14em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  footer .container .footer__links li {
    margin-top: .25em;
  }
  footer .container .legal-terms {
    margin-right: 0em;
  }
  .footer-credits {
    padding: 1.25em 7em;
    font-size: 0.95em;
  }
}
/*# sourceMappingURL=main.css.map */