:root {
  --transition-calc: calc(max(-350px, -1 * (100vw / 8) - ((80vw / 2) - 35vw)));
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: #efefef;
  line-height: 1.4;
}

html,
body {
  scroll-behavior: smooth;
  position: relative;
  overflow-x: hidden;
}

p {
  line-height: 1.5;
  margin-bottom: 1rem;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

i {
  margin-right: 0.5rem;
}

img {
  width: 100%;
}

button {
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1em;
}

h3 {
  font-size: 1.5rem;
  margin: 0.3em 0;
}

@-webkit-keyframes autofill {
  0%, 100% {
    color: white;
    background: black;
  }
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #050505 inset !important;
  -webkit-text-fill-color: white !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (min-width: 560px) {
  .section-container {
    width: 95%;
    margin: 0 auto;
  }
}

.text-body {
  margin-bottom: 1.5em;
  line-height: 1.6;
}

.primary-color {
  background-color: #f26223;
  color: #1f1f1f;
}

.secondary-color {
  background-color: #050505;
  color: #fcfcfc;
}

.light-color {
  background-color: #fcfcfc;
  color: #1f1f1f;
}

.btn {
  display: inline-block;
  padding: 1em 3em;
  margin-bottom: 2em;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.01rem;
  font: "Open Sans", sans-serif;
  transition: all 0.1s ease-in;
  border-radius: 2px;
}
.btn:hover, .btn:focus {
  filter: saturate(120%) brightness(120%) drop-shadow(0 3px 5px rgba(0, 0, 0, 0.5));
  transform: scale(1.025);
}

.selected {
  color: #f26223;
}

.clear-nav {
  padding-top: 100px;
}

.nav {
  background-color: #050505;
  color: #fcfcfc;
  background-color: rgba(0, 0, 0, 0.75);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  height: 100px;
}
.nav__container {
  height: inherit;
  width: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo {
  width: 96px;
  margin-left: 2em;
}
.nav__logo img {
  object-fit: contain;
}
.nav__list {
  display: none;
}
.nav__item {
  padding: 8px 12px;
  position: relative;
}
.nav__item--selected {
  color: #f26223;
}
.nav__item:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 10rem;
  bottom: 0;
  left: 0;
  background-color: #f26223;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out;
}
.nav__item:hover:before {
  visibility: visible;
  transform: scaleX(0.65);
}
.nav__hamburger {
  margin: 5px 15px 5px 5px;
  background: transparent;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 30;
  outline: none;
}
.nav__hamburger-slice {
  background-color: #fff;
  margin: 5px;
  height: 4px;
  width: 35px;
  position: relative;
  transition: transform 1s ease-in-out, background-color 0.5s ease-out;
  display: block;
}
.nav__hamburger-slice:before, .nav__hamburger-slice:after {
  content: "";
  background-color: #fff;
  position: absolute;
  width: 35px;
  height: 4px;
  top: -10px;
  left: 0;
  transition: transform 0.5s ease-in-out;
}
.nav__hamburger-slice:after {
  top: 10px;
}
.nav__hamburger-slice--close {
  transform: rotate(180deg);
  background-color: rgba(0, 0, 0, 0);
}
.nav__hamburger-slice--close:before {
  transform: translateY(10px) rotate(45deg);
}
.nav__hamburger-slice--close:after {
  transform: translateY(-10px) rotate(-45deg);
}
@media screen and (min-width: 760px) {
  .nav__list {
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 2rem;
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
  }
  .nav__hamburger {
    display: none;
  }
}

.header {
  background-color: #050505;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(5, 1fr);
  background-color: #2f2f2f;
  color: #fcfcfc;
  max-height: 95vh;
}
.hero__image {
  min-height: 50vh;
  background: url("../img/office-worker.jpg") no-repeat center center/cover;
  background-position-y: -8rem;
  grid-column: 1/-1;
  grid-row: 1/-1;
  position: relative;
}
.hero__image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
}
.hero__primary-text {
  font-size: clamp(2rem, 5vw + 1rem, 6rem);
  line-height: 1.2;
  font-weight: 900;
  max-width: 1000px;
  margin: 0 2em 0.5em 3rem;
  letter-spacing: -1px;
  grid-column: 1/-1;
  grid-row: 2/3;
  z-index: 10;
}
.hero__call-to-action {
  grid-column: 1/-1;
  grid-row: 5/5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 4;
}
.hero__call {
  background: #000;
  color: #fcfcfc;
}
.hero__online {
  background: #f26223;
  color: #1f1f1f;
}
.hero__action {
  margin: 1.6rem 1.8em;
  font-size: 1rem;
}
.hero__action h2 {
  font-size: clamp(0.5rem, 8.5vw - 1rem, 1.4rem);
  text-transform: uppercase;
  margin-bottom: 0.5em;
}
.hero__action p {
  margin-bottom: 2em;
  max-width: 200px;
}
@media screen and (min-width: 800px) {
  .hero__call-to-action {
    grid-row-start: 3;
    place-self: start start;
    max-width: 30rem;
    margin-left: clamp(2rem, 10vw, 10rem);
  }
}
@media screen and (min-width: 550px) {
  .hero__primary-text {
    margin-left: clamp(2rem, 10vw, 10rem);
  }
}
.hero-about {
  min-height: 30rem;
  height: 60vh;
  max-height: 40rem;
  display: flex;
  justify-content: center;
}
.hero-about__container {
  display: flex;
  align-items: center;
  width: 100%;
}
.hero-about__text {
  margin-top: -10%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.hero-about__heading {
  margin-left: 3rem;
  margin-right: 3rem;
}
.hero-about__strap {
  margin: 0 3rem;
  max-width: 35rem;
}
@media screen and (min-width: 1400px) {
  .hero-about__text {
    transform: translateX(max(-100px, -8vw));
  }
}

#services {
  transform: translateY(-100px);
}

.about {
  --transition-image-width: clamp(24em, calc(100vw * 0.5), 40em);
}
.about__section > * {
  margin-bottom: 2rem;
}
.about__section-who-for {
  flex-wrap: wrap;
}
.about__section-details {
  margin-bottom: 0;
  padding-top: 2rem;
  background-color: #fff;
}
.about__heading {
  font-size: clamp(2.2rem, 3vw, 3rem);
  padding-left: 2rem;
}
.about__heading-3 {
  margin: 0;
  padding: 0;
  text-align: center;
}
.about__sub-heading {
  font-size: clamp(1.8rem, 2.4vw, 2.2rem);
  margin: 0;
  margin-bottom: 0.5rem;
}
.about__content-group-who-for {
  position: relative;
  z-index: 2;
}
.about__content-group-who-for > * {
  z-index: 2;
}
.about__content-group-details {
  min-height: 20rem;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about__content-group-details > p {
  width: 100%;
  text-align: left;
  padding: 0 1rem;
  padding-top: 0;
  margin: 1rem;
  margin-top: 0;
}
.about__image-right {
  transition: transform 0.5s ease-out;
}
.about__image-left {
  transition: transform 0.5s ease-out;
}
.about__text-body {
  padding: 0 2rem;
}
.about__list > * {
  margin-bottom: 1rem;
}
@media screen and (min-width: 800px) {
  .about__main {
    margin-top: var(--transition-calc);
  }
  .about__section {
    display: flex;
    flex-wrap: wrap;
    margin: 0 3rem 3rem 3rem;
  }
  .about__section-what-we-do {
    flex: 0 1;
  }
  .about__section-who-for {
    align-items: center;
  }
  .about__section-who-for > * {
    flex: 1 1 50%;
  }
  .about__section-details {
    padding: 2rem 0;
    flex-direction: column;
  }
  .about__content-group {
    transition: transform 0.5s ease-out;
  }
  .about__content-group-details {
    padding: 2rem 3rem;
  }
  .about__heading {
    flex: 1 1 auto;
    align-self: flex-end;
  }
  .about__heading-1 {
    order: 1;
  }
  .about__heading-2 {
    align-self: flex-start;
    flex-shrink: 1;
    order: 2;
  }
  .about__text-body-1 {
    order: 3;
  }
  .about__text-body-2 {
    order: 3;
  }
  .about__image-right {
    flex-shrink: 1;
    order: 2;
    width: var(--transition-image-width);
  }
  .about__image-right > img {
    margin-bottom: 1rem;
  }
  .about__image-left {
    flex-basis: 50%;
    margin: 1rem;
    padding: 1rem;
    min-width: 500px;
    max-width: 500px;
    transition: translate 0.5s ease-out;
  }
  .about__image-left > img {
    min-width: 480px;
  }
}
@media screen and (min-width: 1200px) {
  .about__section-details {
    padding: 3rem;
  }
  .about__content-group-details {
    position: relative;
    max-width: 85%;
  }
  .about__content-group-details::after {
    content: "";
    position: absolute;
    top: 0;
    border-style: solid;
    border-top-width: 45px;
    border-right-width: 45px;
    border-right-color: transparent;
    border-left-width: 45px;
    border-left-color: transparent;
    border-bottom-width: 45px;
    border-bottom-color: transparent;
  }
  .about__content-group-details:nth-of-type(even) {
    filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.25));
  }
  .about__content-group-details:nth-of-type(even)::after {
    right: -45px;
    border-top-color: #f26223;
  }
  .about__content-group-details:nth-of-type(odd) {
    filter: drop-shadow(-3px 3px 5px rgba(0, 0, 0, 0.25));
    align-self: flex-end;
  }
  .about__content-group-details:nth-of-type(odd)::after {
    left: -45px;
    border-top-color: #050505;
  }
}
@media screen and (min-width: 1400px) {
  .about__image-right {
    transform: translateX(7vw);
  }
  .about__image-left {
    transform: translateX(-3vw) scale(1.2);
  }
  .about__content-group-who-for {
    transform: translateX(3vw);
  }
}

.primer {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  background-color: #f26223;
  color: #1f1f1f;
}
.primer > * {
  flex-basis: 50%;
  min-width: 350px;
  flex-grow: 1;
  max-height: 40em;
  min-height: 350px;
}
.primer__image {
  flex-basis: 50%;
  display: flex;
}
.primer__image img {
  object-fit: cover;
}
.primer__info {
  padding: 1rem;
  flex-basis: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.primer__info > div {
  margin: 0 clamp(50px, 20% - 2em, 30%);
}
.primer__info h2 {
  font-size: clamp(1.8rem, 3vw + 1rem, 4rem);
  margin: 0.5em 0 0.2em 0;
}
.primer__info p {
  line-height: 1.5;
  margin-bottom: 2em;
  width: 85%;
}
.primer__btn {
  background-color: #050505;
  color: #fcfcfc;
  position: relative;
}
.services {
  margin-bottom: 1rem;
}
.services h2 {
  font-size: 4rem;
  font-size: clamp(2rem, 5vw + 1rem, 4rem);
  text-align: center;
  margin: 1em 0 1em 0;
}
.services__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
}
.services__card {
  display: grid;
}
.services__image {
  background: #fff;
}
.services__image img {
  display: block;
  object-fit: cover;
  object-position: center;
}
.services__info {
  background-color: #050505;
  color: #fcfcfc;
  display: flex;
  flex-direction: column;
  padding: 5em 3em;
}
.services__info h3 {
  margin: 1em 0;
}
.services__info .text-body {
  flex-grow: 1;
}
.services__btn {
  background-color: #f26223;
  color: #1f1f1f;
  flex-grow: 0;
  align-self: flex-start;
}
@media screen and (min-width: 900px) {
  .services__info {
    background-color: #fcfcfc;
    color: #1f1f1f;
  }
  .services__card {
    grid-template-rows: 4fr 3fr;
  }
  .services__image {
    display: flex;
  }
  .services__image img {
    object-fit: cover;
    object-position: center;
  }
}
@media screen and (min-width: 1150px) {
  .services__container {
    grid-template-columns: 1fr 1fr;
  }
}

.summary {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
}
.summary__img {
  flex: 1 1 100%;
  display: flex;
}
.summary__img img {
  object-fit: cover;
}
@media screen and (min-width: 1100px) {
  .summary__img img {
    max-height: 45em;
  }
}
.summary__item {
  padding: 1em 1.5em;
  flex: 1;
  display: flex;
  flex-direction: column;
  flex-basis: 30%;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.6rem;
  min-width: 350px;
  min-height: 200px;
}
.summary__item p {
  margin-bottom: 0.5em;
}
.summary__item h3 {
  max-width: 220px;
}

.contact {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
}
.contact > * {
  flex-basis: 50%;
  flex-grow: 1;
  min-width: 400px;
}
.contact__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5rem 5rem;
}
.contact__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  margin: 50px auto;
}
.contact__form .form-item {
  position: relative;
}
.contact__form .form-item input {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  margin-bottom: 30px;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  background: transparent;
}
.contact__form .form-item input:focus ~ label, .contact__form .form-item input:valid ~ label {
  top: -20px;
  left: 0;
  font-size: 12px;
}
.contact__form .form-item input:required {
  border-bottom: 1px solid white;
}
.contact__form .form-item input:focus:invalid {
  border-bottom: 1px solid red;
  box-shadow: none;
}
.contact__form .form-item label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  pointer-events: none;
  transition: 0.5s;
}
.contact__form #form-btn {
  width: 100%;
  margin-bottom: 0.5rem;
}

.message-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5 ease-in-out;
}
.message-container .messages {
  font-size: 0.8rem;
  color: red;
  align-self: start;
  margin: 0;
}
.message-container i {
  line-height: 1;
  padding: 0.5rem;
  margin-left: 0.5rem;
}

.show-message {
  visibility: visible;
  opacity: 1;
}

.modal {
  display: block;
  position: fixed;
  z-index: 15;
  top: 0;
  right: -100vw;
  color: #fcfcfc;
  font-size: 1.4rem;
  letter-spacing: 1px;
  font-weight: 600;
  width: 100vw;
  height: 100vh;
  border: 1px solid black;
  background: rgba(0, 0, 0, 0.8);
  transition: all 0.5s ease-in;
  visibility: hidden;
  padding: 0 0 0 1em;
}
.modal__container {
  margin: 0 0 0 5em;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 100%;
}
.modal__list {
  margin-top: 3rem;
  margin-right: 2rem;
}
.modal__item {
  margin-bottom: 1rem;
  width: 100%;
  text-align: right;
}
.modal__logo {
  min-width: 50px;
}
.modal__footer {
  justify-self: flex-end;
}

.modal-show {
  visibility: visible;
  transform: translateX(-100%);
}

.footer {
  background-color: #050505;
  color: #fcfcfc;
  padding-bottom: 1rem;
}
.footer a:hover {
  color: #f26223;
}
.footer__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  width: 90%;
  margin: auto;
  padding: 1.6rem 0 0;
}
.footer__container > * {
  margin: 1rem 2rem;
  padding: 1rem 0;
}
.footer__logo {
  min-width: 9rem;
  max-width: 11rem;
  padding: 0.5rem 0;
  margin: auto;
}
.footer__logo img {
  max-width: 12rem;
  object-fit: contain;
  object-position: center;
}
.footer__contact {
  min-width: fit-content;
}
.footer__list li {
  margin-bottom: 1rem;
}
.footer__list li .fas {
  display: inline;
}
.footer__legal {
  text-align: center;
}
.footer__legal hr {
  margin: 0.75rem auto;
  max-width: 92%;
  color: #3d3d3d;
}
.footer__legal > small {
  line-height: 1.6;
  width: 80%;
  color: #d3d3d3;
}

@keyframes continuous-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.icon-rotate {
  animation: continuous-rotate 1000ms linear infinite;
}

@keyframes icon-pop {
  from {
    transform: scale(0);
  }
  80% {
    transform: scale(1.35);
  }
  to {
    transform: scale(1);
  }
}
.icon-pop {
  animation: icon-pop 300ms linear 1;
}
.icon-pop-success {
  color: #4f8a10;
}
.icon-pop-error {
  color: #d8000c;
}

:target {
  display: block;
  position: relative;
  top: -180px;
  visibility: hidden;
}

.four-o-four {
  height: 80vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy {
  font-size: 0.9rem;
  padding: 1.5rem;
}
.privacy__container {
  background-color: #fcfcfc;
  padding: 1.5rem;
}
.privacy__container > * {
  margin-bottom: 2rem;
}
.privacy__sub-heading {
  font-size: 1.3rem;
}
.privacy__list > * {
  line-height: 1.6;
  list-style: disc;
  margin-left: 1.5rem;
  list-style-position: unset;
}
.privacy__address {
  margin-left: 1rem;
}

/*# sourceMappingURL=main.css.map */
