@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Manrope:wght@200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap");
html, body {
  padding: 0;
  margin: 0;
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  color: #171a1f;
}

h1 {
  color: #4b1b4a;
}

h2 {
  color: #005b5e;
}

p {
  color: #171a1f;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}
a.underline {
  text-decoration: underline !important;
}

@media (max-width: 767.98px) {
  .first-layer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    justify-items: center;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .first-layer {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 767.98px) {
  .logo {
    grid-column-start: 2;
  }
}
.logo img {
  width: 200px;
  margin-left: 0;
}

.top-menu-box {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  /*
  @include media-breakpoint-only(md) {
      flex-direction: column;
      align-items: center;
  }
  */
}
.top-menu-box > .top-menu-list {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0.5em;
  color: #565e6c;
  transition: 0.2s ease;
}
.top-menu-box > .top-menu-list > div {
  padding: 1em;
}
.top-menu-box > .top-menu-list > div.active, .top-menu-box > .top-menu-list > div:hover {
  color: #171a1f;
  border-radius: 0.4em;
  cursor: pointer;
  transition: 0.2s ease;
}
.top-menu-box > .top-menu-list > div.active {
  background-color: #fbf4fb;
}
@media (max-width: 767.98px) {
  .top-menu-box {
    display: none;
  }
}

.mobile-toggle {
  margin-left: 2rem;
}
@media (min-width: 768px) {
  .mobile-toggle {
    display: none;
  }
}
.mobile-toggle .text-show-menu {
  display: none;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .mobile-toggle {
    margin-left: auto;
  }
  .mobile-toggle .text-show-menu {
    display: initial;
    margin-right: 0.5em;
  }
}
@media (max-width: 575.98px) {
  .mobile-toggle {
    margin-right: 2rem;
  }
}

#banner {
  min-height: 250px;
  background: linear-gradient(to bottom, rgba(50, 50, 50, 0) 0%, rgb(50, 50, 50) 100%), center/cover url("/_resources/themes/remotely/images/webp/top-bg.webp") !important;
  background-size: cover;
}

.second-layer {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.second-layer.mobile-menu-visible {
  justify-content: center;
}

.mobile-menu-box {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  width: fit-content;
  margin: 0px auto;
}
@media (min-width: 768px) {
  .mobile-menu-box {
    display: none !important;
  }
}
.mobile-menu-box > .mobile-menu-list {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.mobile-menu-box > .mobile-menu-list > div {
  padding: 1em;
}
.mobile-menu-box > .mobile-menu-list > div.active {
  font-weight: bold;
}

.tagline {
  color: white;
}
.tagline > span {
  padding-bottom: 1em;
  display: block;
}
.tagline .slogan {
  font-size: 1.5em;
  font-weight: bold;
}

.p-1 {
  padding: 1em;
}

/** Third layer **/
#intro {
  position: relative;
  margin-top: -1rem;
}
@media (max-width: 767.98px) {
  #intro:after {
    content: "";
    display: block;
    width: calc(100vw - (100vw - 100%));
    height: 2rem;
    background: #005b5e;
    position: absolute;
    top: 7rem;
    z-index: -1;
  }
}
@media (max-width: 767.98px) and (max-width: 575.98px) {
  #intro:after {
    margin-left: -1rem;
  }
}

.third-layer {
  display: grid;
  gap: 1rem;
}
@media (min-width: 576px) {
  .third-layer {
    grid-template-columns: auto 1fr;
  }
}
.third-layer .photo img {
  object-fit: cover;
  margin: 0 0 0 auto;
  display: inherit;
  height: inherit;
  width: 10rem;
  height: 10rem;
  border-radius: 5rem;
  border: 0.4rem solid #005b5e;
  box-sizing: border-box;
}
@media (max-width: 575.98px) {
  .third-layer .photo img {
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .third-layer .photo img {
    width: 12rem;
    height: 12rem;
    border-radius: 6rem;
    border: 0.4rem solid #005b5e;
    box-sizing: border-box;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .third-layer .photo {
    grid-column-start: 2;
  }
}
@media (min-width: 768px) {
  .third-layer .photo {
    grid-row: 1/3;
  }
}
@media (max-width: 575.98px) {
  .third-layer .name {
    justify-self: right;
  }
  .third-layer .name > span:before {
    content: "— ";
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .third-layer .name {
    padding-top: 7.4rem;
    grid-row-start: 1;
    grid-column-start: 1;
    color: white;
  }
}
@media (min-width: 768px) {
  .third-layer .name {
    grid-row: 2/3;
    grid-column: 2/3;
    align-self: center;
    justify-self: right;
  }
  .third-layer .name > span:before {
    content: "— ";
  }
}
.third-layer .intro p {
  margin-bottom: 0;
  margin-top: 0;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .third-layer .intro {
    grid-column: 1/3;
  }
}
@media (min-width: 768px) {
  .third-layer .intro {
    grid-column: 1/3;
    grid-row: 1/2;
    align-self: end;
    padding-top: 1rem;
  }
  .third-layer .intro p {
    margin-top: 1rem;
  }
}
.third-layer .contact .button-dark, .third-layer .contact .button-light {
  padding: 0.5em;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .third-layer .contact {
    grid-column: 1/3;
  }
}
@media (min-width: 768px) {
  .third-layer .contact {
    grid-row: 2/3;
    grid-column: 1/2;
    align-self: center;
  }
}

/******/
.neutral-odd {
  background-color: #f8f9fa;
}
@media (min-width: 576px) {
  .neutral-odd {
    padding: 1em 0;
  }
}

.neutral-even {
  background-color: #f3f4f6;
}
@media (min-width: 576px) {
  .neutral-even {
    padding: 1em 0;
  }
}

.showcase {
  display: grid;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .showcase {
    grid-template-columns: 1fr 1fr;
    gap: 1em;
  }
}
@media (min-width: 768px) {
  .showcase {
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto auto auto;
    gap: 1em;
  }
}
.showcase .photo {
  width: 100%;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .showcase .photo {
    grid-row: 2/4;
    grid-column: 1/2;
  }
}
@media (min-width: 768px) {
  .showcase .photo {
    grid-row: 1/3;
    grid-column: 1/2;
  }
}
.showcase .photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 0.1rem solid #565e6c;
  border-radius: 0.4rem;
  box-sizing: border-box;
}
@media (max-width: 575.98px) {
  .showcase .photo img {
    aspect-ratio: 4/3;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .showcase .photo img {
    height: 100%;
    aspect-ratio: auto;
  }
}
@media (min-width: 768px) {
  .showcase .photo img {
    height: 100%;
  }
}
.showcase .description {
  line-height: 1.75em;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .showcase .description {
    grid-row: 2/4;
    grid-column: 2/3;
    flex-direction: column;
  }
  .showcase .description p {
    margin-top: 0;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .showcase .title {
    grid-row: 1/2;
    grid-column: 1/3;
  }
}
@media (min-width: 768px) {
  .showcase .title {
    grid-row: 1/2;
    grid-column: 2/3;
  }
}
.showcase .title .tag {
  color: white;
  background-color: #565e6c;
  border-radius: 1rem;
  padding: 0.1rem 0.5rem;
  position: relative;
  bottom: 0.25em;
  font-size: 0.8em;
  white-space: nowrap;
}
.showcase .title h2 {
  display: inline;
  color: #005b5e;
}
.showcase .actions {
  display: none;
  flex-direction: column;
  gap: 1em;
}
@media (min-width: 768px) {
  .showcase .actions {
    flex-direction: row;
    grid-row: 3/4;
    grid-column: 2/3;
  }
  .showcase .actions > div {
    flex-grow: 1;
    align-self: end;
    height: fit-content;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .showcase .actions {
    grid-row: 3/4;
    grid-column: 1/2;
    align-self: end;
  }
  .showcase .actions > div {
    flex-grow: 0;
  }
}

footer {
  background-image: url("/_resources/themes/remotely/images/webp/bot-bg.webp");
  min-height: 15em;
  color: white;
  background-size: cover;
  background-position: center;
}
footer p {
  color: white;
  padding: 1em 0;
  text-align: center;
  line-height: 1.75em;
}
footer a {
  color: white;
}

.collaboration {
  text-align: center;
  display: grid;
  padding: 1em;
}
.collaboration.intro {
  display: flex;
  flex-direction: column;
}
@media (min-width: 576px) {
  .collaboration.intro p, .collaboration.intro h1 {
    padding-left: 7rem;
    align-self: start;
    box-sizing: border-box;
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .collaboration {
    gap: 1em;
  }
}
@media (min-width: 576px) {
  .collaboration {
    grid-template-columns: max-content auto;
    gap: 0 1em;
  }
}
.collaboration img {
  border: 0.25em solid black;
  border-radius: 0.25em;
  width: 6rem;
  filter: invert(18%) sepia(56%) saturate(3236%) hue-rotate(164deg) brightness(95%) contrast(101%);
  margin: 0 auto;
  box-sizing: border-box;
}
@media (min-width: 576px) {
  .collaboration img {
    grid-row: 1/3;
    align-self: center;
  }
}
.collaboration h2 {
  align-self: center;
  margin: 0;
}
@media (min-width: 576px) {
  .collaboration h2 {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
.collaboration p {
  align-self: center;
  margin: 0em;
}
@media (min-width: 576px) {
  .collaboration p {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}

/*****************************************/
.icon-book::after {
  background-image: url("/_resources/themes/remotely/images/icons/book.svg");
  top: 0.15em !important;
}

.icon-close::after {
  background-image: url("/_resources/themes/remotely/images/icons/close.svg");
}

.icon-meeting::after {
  background-image: url("/_resources/themes/remotely/images/icons/meeting.svg");
}

.icon-menu::after {
  background-image: url("/_resources/themes/remotely/images/icons/menu.svg");
}

.icon-network::after {
  background-image: url("/_resources/themes/remotely/images/icons/network.svg");
}

.icon-progress::after {
  background-image: url("/_resources/themes/remotely/images/icons/progress.svg");
}

.icon-right::after {
  background-image: url("/_resources/themes/remotely/images/icons/right.svg");
}

.icon-send::after {
  background-image: url("/_resources/themes/remotely/images/icons/send.svg");
}

/*
.icon-send::after {
    background-image: url("/_resources/themes/remotely/images/icons/send.svg");
}
*/
.icon-after::after {
  content: "";
  width: 1em;
  display: inline-block;
  background-size: 1em;
  height: 1em;
  top: 0.2em;
  position: relative;
}

.icon-outline-primary-500 {
  filter: invert(14%) sepia(26%) saturate(2581%) hue-rotate(264deg) brightness(95%) contrast(97%);
}

.icon-outline-white {
  filter: invert(98%) sepia(0%) saturate(7500%) hue-rotate(198deg) brightness(106%) contrast(105%);
}

.button-dark {
  border-radius: 0.4em;
  font-family: "Inter", serif;
  cursor: pointer;
  box-sizing: border-box;
  transition: 0.2s ease;
  background-color: #4b1b4a;
  color: white;
  border: 0.1em solid #4b1b4a;
}
.button-dark:hover {
  background: white;
  color: #4b1b4a;
  border: 0.1em solid #4b1b4a;
  transition: 0.2s ease;
}
.button-dark:hover .icon-outline-white {
  filter: invert(14%) sepia(26%) saturate(2581%) hue-rotate(264deg) brightness(95%) contrast(97%);
}

.button-light {
  border-radius: 0.4em;
  font-family: "Inter", serif;
  cursor: pointer;
  box-sizing: border-box;
  transition: 0.2s ease;
  background-color: white;
  color: #4b1b4a;
  border: 0.1em solid #4b1b4a;
}
.button-light:hover {
  background: #4b1b4a;
  color: white;
  border: 0.1em solid #4b1b4a;
  transition: 0.2s ease;
}
.button-light:hover .icon-outline-primary-500 {
  filter: invert(98%) sepia(0%) saturate(7500%) hue-rotate(198deg) brightness(106%) contrast(105%);
}

.button-padding {
  padding: 0.4em;
}

.button-fit {
  width: fit-content;
}

.text-center {
  text-align: center;
}

/****


#banner {
    padding-top:5rem;
    background: linear-gradient(to bottom, rgba(50, 50, 50, 0) 0%, rgba(50, 50, 50, 0) 5rem, rgba(50, 50, 50, 1) 100%),
    center / cover url('/_resources/themes/remotely/images/top-bg.jpg')!important
    ;

    background-size: cover;

    & > div {
        display: flex;
        flex-direction: column;
    }

    p {
        margin: auto 0 0 0;
        padding: 1rem 0;

        color: white;
        font-size: 2rem;
        bottom: 0;

        font-weight: bold;

        font-family: 'Archivo', serif;

        span.name {
            color: white;
            font-size: 1rem;
            display: block;
            line-height: 2em;
            font-weight: normal;
        }



    }
}

#intro {
    gap: 5em;
}

.photo {
    aspect-ratio: 1 / 1;
    width: 50%;
    border: 0.5rem solid gray;
    border-radius: 100%;
    margin-top: -0.5rem;
    background: center / cover url('/_resources/themes/remotely/images/top-bg.jpg');
    box-sizing: border-box;
}

.m-0 {
    margin: 0;
}

.m-a0 {
    margin: auto 0;
}

.mt-a {
    margin-top: auto;
}

*/

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