@charset "UTF-8";
ul {
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 1rem;
  margin-inline-end: 0px;
  padding-inline-start: 0px;
}

.no-mobile {
  display: none;
}

@media (min-width: 800px) {
  .no-mobile {
    display: initial;
  }
}
.content-wrapper {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: space-between;
}

@font-face {
  font-family: La Belle Aurore;
  src: url(LaBelleAurore-Regular.ttf);
}
@font-face {
  font-family: Lato;
  @import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
}
body {
  font-family: "Lato", sans-serif;
  line-height: 1.5;
  color: #003049;
}

a {
  color: #003049;
  text-decoration: underline;
  text-decoration-color: #E29578;
  text-decoration-thickness: 3px;
}

h1,
h2,
h3,
h4 {
  font-weight: 500;
  line-height: normal;
}

h1 {
  margin-top: 0;
  font-size: 4.375rem;
  font-weight: 900;
}
@media (max-width: 1000px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 2.5rem;
  font-weight: 900;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 1.5em;
}

ul, li {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  padding-bottom: 0.1rem;
}

header {
  padding: 20px 2rem;
  padding-bottom: 0;
  background-color: #fff;
  color: #003049;
}
header a {
  color: inherit;
  text-decoration: none;
  font-weight: 400;
}
header h3 {
  font-family: "La Belle Aurore";
  color: #003049;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: normal;
}

/* menu */
.menu-container {
  display: none;
}

.menu-container-mobile {
  display: block;
}

.menu {
  margin-inline-start: 0;
  display: none;
  align-items: flex-start;
  justify-items: flex-start;
}
.menu .icon {
  position: relative;
  top: 2px;
}

.menu li,
.menu-mobile-button {
  padding: 12px 20px;
  margin: 0;
}

.menu li:first-child {
  padding-left: 0;
}
.menu li:last-child {
  padding-right: 0;
}
.menu li.delim:hover {
  background-color: #1799b6;
}
.menu li:after {
  content: "";
  display: block;
  margin: auto;
  height: 3px;
  width: 0px;
  background: transparent;
  transition: width 0.5s ease, background-color 0.5s ease;
}
.menu li:hover:after {
  width: 100%;
  background: #E29578;
}
.menu li a {
  font-weight: 400;
  display: inline-block;
  height: 1.5rem;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
}

.menu-mobile-button {
  display: block;
}

.menu-mobile {
  display: none;
}

.menu-mobile .menu-mobile-button {
  text-align: right;
  padding: 30px;
}

.menu-mobile li {
  display: block;
  text-align: center;
  padding: 30px;
  font-size: 24px;
}

.visible {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: #006D77;
  color: #fff;
  width: 100%;
  height: 100%;
}

@media (min-width: 800px) {
  .header-content h3 {
    font-size: 2.25rem;
    line-height: 1;
  }
  .menu-container-mobile, .menu-mobile-button {
    display: none;
  }
  .menu-container {
    display: block;
  }
  .menu {
    display: flex;
  }
  .menu li {
    display: block;
  }
}
footer {
  padding: 1.25rem 1.25rem 0;
  background-color: #006D77;
  color: #fff;
}
footer .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}
footer a {
  font-weight: 400;
}
footer .col {
  padding: 32px 0;
}
footer .socials {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  justify-content: end;
}
footer .socials ul {
  display: flex;
  gap: 0.5rem;
  margin-inline-start: 0;
}
footer .socials li {
  display: block;
}
footer a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: #E29578;
  text-decoration-thickness: 3px;
}
footer a svg {
  position: relative;
  top: 4px;
  text-decoration: none;
}
footer a:hover {
  color: #E29578;
}
footer .legal {
  font-size: 0.9rem;
  line-height: 1.5rem;
  font-weight: 400;
  margin: 0;
  display: flex;
  gap: 1rem;
}

@media (min-width: 800px) {
  footer .container {
    flex-direction: row;
    flex-wrap: wrap;
  }
  footer .col {
    flex-basis: 50%;
  }
  footer .socials {
    flex-direction: row;
    gap: 1rem;
    align-items: baseline;
  }
  footer nav {
    justify-content: flex-start;
  }
}
.cta {
  display: inline-block;
  padding: 1rem 1rem !important;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  background-color: #83C5BE;
  color: #003049;
  border-radius: 5px;
}
@media (max-width: 600px) {
  .cta {
    font-size: 1rem;
  }
}

.secondary {
  display: inline-block;
  padding: 0.75rem 1rem !important;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border: 3px solid #83C5BE;
  background-color: #fff;
  color: #006D77;
  border-radius: 5px;
}
@media (max-width: 600px) {
  .secondary {
    font-size: 1rem;
  }
}

.banner {
  background-color: #006D77;
  padding: 2rem 1.25rem;
}
.banner .hello,
.banner h1,
.banner h5,
.banner p {
  margin: 0;
  color: #003049;
  color: #fff;
  text-align: left;
}
.banner .hello .name {
  font-weight: 700;
}
.banner .row {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
}
.banner h1 {
  font-weight: 700;
  font-size: 2.25rem;
}
.banner p {
  font-size: 20px;
}
.banner .cta {
  margin: 2rem auto 0;
}
.banner .hero-img {
  display: none;
}

.row {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.col {
  flex-grow: 1;
  flex-direction: column;
  flex-basis: 100%;
}

.container {
  padding: 0 2rem;
}

.frame {
  background-color: #fff;
  padding: 2rem;
  text-align: left;
  border: 1px solid #003049;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.frame h2 {
  text-align: center;
  margin: 0;
  padding-bottom: 2rem;
  font-size: 2rem;
}
.frame p {
  margin: 0;
}

.cta-frame {
  overflow: hidden;
  position: relative;
}
.cta-frame .frame-content {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 1.25rem;
  padding: 2rem;
  padding-top: 0.813rem;
}
.cta-frame .frame-content p {
  margin: 0;
}
.cta-frame .cta {
  position: absolute;
  bottom: -4rem;
  transition: bottom 0.3s ease-in-out;
  width: calc(100% - 2rem);
}

@media (min-width: 800px) {
  .row {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .book .col {
    flex-basis: 30%;
  }
  .container {
    max-width: 1150px;
    margin: 0 auto;
  }
  .cta-frame:hover .cta {
    bottom: 0;
  }
}
.about {
  display: flex;
  margin-bottom: 2rem;
  gap: 2rem;
  flex-wrap: nowrap;
}
.about .text {
  flex-basis: 33.5rem;
  flex-shrink: 0;
}
.about .img img {
  width: 100%;
}

.contact {
  background-color: #FFDDD2;
  padding: 1rem 0.5rem;
  margin: 1rem 0;
  text-align: center;
  margin-bottom: 4rem;
}

.homepage {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.homepage .cta {
  padding: 1rem 2rem;
  border-radius: 3px;
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.2509803922);
}
@media (max-width: 600px) {
  .homepage .cta {
    font-size: 1rem;
  }
}
.homepage .hero {
  display: flex;
  flex-direction: row;
  gap: 6.813rem;
  justify-content: center;
}
@media (max-width: 600px) {
  .homepage .hero {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
  }
}
.homepage .header {
  width: 500px;
  display: flex;
  flex-direction: column;
  text-align: left;
  justify-content: center;
  gap: 1.5rem;
}
@media (max-width: 600px) {
  .homepage .header {
    width: 100%;
  }
}
.homepage .header h1 {
  font-size: 7.25rem;
  margin: 0;
}
@media (max-width: 450px) {
  .homepage .header h1 {
    font-size: 3rem;
  }
}
@media (min-width: 450px) and (max-width: 600px) {
  .homepage .header h1 {
    font-size: 3.25rem;
  }
}
@media (min-width: 600px) and (max-width: 1000px) {
  .homepage .header h1 {
    font-size: 3.5rem;
  }
}
.homepage .header p {
  font-size: 2rem;
  margin: 0;
}
@media (max-width: 600px) {
  .homepage .header p {
    font-size: 1.1rem;
  }
}

.now {
  width: 100%;
  display: grid;
  gap: 6rem;
  grid-template-columns: 2fr 1.5fr;
  grid-template-rows: 1fr;
}
@media (max-width: 1000px) {
  .now {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

.blogpost {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: baseline;
}
.blogpost h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.article {
  grid-column: 1;
  margin-bottom: 4rem;
}
@media (max-width: 1000px) {
  .article {
    margin-bottom: 0rem;
  }
}

.aside {
  grid-column: 2;
  margin-bottom: 4rem;
}

.books {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
@media (max-width: 1000px) {
  .books {
    display: flex;
    flex-direction: column;
  }
}

.find-me {
  margin-top: 2rem;
  margin-bottom: 4rem;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
  display: flex;
  flex-direction: row;
  gap: 6.25rem;
}
.find-me .text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.find-me .text h2,
.find-me .text p {
  margin: 0;
}
@media (max-width: 1000px) {
  .find-me {
    display: flex;
    flex-direction: column;
  }
}

.portfolio {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.portfolio .item {
  display: flex;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 1000px) {
  .portfolio .item {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 450px) {
  .portfolio .item .case {
    width: 296px;
  }
}
@media (min-width: 450px) and (max-width: 600px) {
  .portfolio .item .case {
    width: 395px;
  }
}
.portfolio .item .labels {
  display: flex;
  gap: 2rem;
}
.portfolio .item .labels .label {
  font-size: 0.875rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.portfolio .item h1 {
  font-size: 1.75rem;
  font-weight: bold;
  margin: 0;
}
.portfolio .item p {
  margin: 1.5rem 0;
  font-size: 1.1rem;
}

.row-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
}
@media (max-width: 450px) {
  .row-title {
    flex-direction: column;
  }
}

.rating {
  display: flex;
  flex-direction: row;
  gap: 2px;
}

.final-cta {
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.final-cta .arrow {
  width: 1rem;
  margin: 0 auto;
  margin-bottom: 2rem;
}
.final-cta h3 {
  display: flex;
  flex-direction: column;
  font-size: 1.5rem;
  font-weight: 400;
}
.final-cta p {
  max-width: 42rem;
  font-size: 1.1rem;
  margin: 0 auto;
  text-align: left;
}

.books {
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto auto;
  gap: 0 1.5rem;
}
.books .book-1-img {
  grid-column: 1;
  grid-row: 1;
}
.books .book-1-header {
  grid-column: 1;
  grid-row: 2;
}
.books .book-1-cta {
  grid-column: 1;
  grid-row: 3;
}
.books .book-2-img {
  grid-column: 3;
  grid-row: 1;
}
.books .book-2-header {
  grid-column: 3;
  grid-row: 2;
}
.books .book-2-cta {
  grid-column: 3;
  grid-row: 3;
}
.books h2 {
  margin-top: 0;
}
.books .read-more {
  margin-left: 2rem;
  font-weight: 400;
  color: #003049;
  text-decoration: underline;
  text-decoration-color: #E29578;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}
.books .read-more::after {
  content: "  ->";
}

.feedback-item {
  background-color: #FFDDD2;
  padding: 1rem 0.5rem;
  margin: 1rem 0;
}

.upcoming-desktop {
  display: none;
}

.event-item h4,
.event-item h5 {
  margin: 0;
  line-height: normal;
}
.event-item h4 {
  font-weight: 400;
  color: #006D77;
}
.event-item p {
  margin-top: 0;
}
.event-item .cta {
  margin-top: 1rem;
}

@media (min-width: 800px) {
  .container.speaking {
    margin-bottom: 2.5rem;
    display: grid;
    gap: 6rem;
    grid-template-columns: 2fr 1.2fr;
    grid-template-rows: 1fr;
  }
  .container.speaking h1 {
    margin-top: 0;
    font-size: 4rem;
    font-weight: 700;
  }
  .container.speaking h2 {
    font-weight: 700;
  }
  .container.speaking .feedback-item {
    padding: 2rem;
  }
  .container.speaking .upcoming-desktop {
    margin-top: 2.1rem;
    display: block;
  }
  .container.speaking .upcoming-mobile {
    display: none;
  }
  .container.speaking .main {
    grid-column: 1;
  }
  .container.speaking .sidebar {
    grid-column: 2;
  }
}
.portfolio-details section img {
  max-width: 100%;
}
.portfolio-details ul.tags {
  margin-inline-start: 0;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  display: flex;
  gap: 1rem;
}
.portfolio-details ul.tags li {
  display: block;
  padding: 0.5rem;
  color: #003049;
  background-color: #FFDDD2;
}
.portfolio-details .row {
  gap: 0;
}
@media (min-width: 800px) {
  .portfolio-details .banner {
    background: linear-gradient(0deg, rgba(0, 129, 158, 0.9) 0%, rgba(0, 129, 158, 0.9) 100%), url("/images/portfolio/portfolio-hero.png"), lightgray 50%/cover no-repeat;
  }
  .portfolio-details .banner .container {
    padding-top: 12rem;
  }
  .portfolio-details section {
    padding-top: 4rem;
  }
  .portfolio-details .row {
    gap: 6rem;
    justify-content: space-between;
    margin-bottom: 4rem;
  }
  .portfolio-details .row:last-child {
    margin-bottom: 2rem;
  }
  .portfolio-details .row .col-main {
    flex-basis: 60%;
    flex-grow: 1;
  }
  .portfolio-details .row .col-side {
    flex-basis: 30%;
  }
  .portfolio-details .row h2 {
    margin-top: 0;
  }
}

footer .col.newsletter-subscribe, .seo-challenge .newsletter-subscribe {
  flex-basis: 21rem;
  flex-grow: 0;
}
footer .col.newsletter-subscribe h2, footer .col.newsletter-subscribe p, .seo-challenge .newsletter-subscribe h2, .seo-challenge .newsletter-subscribe p {
  margin: 0;
}
footer .col.newsletter-subscribe button, .seo-challenge .newsletter-subscribe button {
  border: none;
  width: 100%;
}
footer .col.newsletter-subscribe input[type=text], footer .col.newsletter-subscribe input[type=email], .seo-challenge .newsletter-subscribe input[type=text], .seo-challenge .newsletter-subscribe input[type=email] {
  border: none;
  width: 94%;
  border-radius: 1rem;
  padding: 0.7rem;
  margin-bottom: 0.5rem;
}
footer .col.newsletter-subscribe .newsletter-header, .seo-challenge .newsletter-subscribe .newsletter-header {
  margin-bottom: 1rem;
}
footer .col.newsletter-subscribe .privacy-policy p, .seo-challenge .newsletter-subscribe .privacy-policy p {
  font-size: 0.75rem;
  margin: 1rem 0 1.25rem;
}

.seo-challenge .newsletter-subscribe {
  max-width: 400px;
  margin: 0 auto;
}

body {
  margin: 0;
}