@font-face {
  font-family: 'Quicksand';
  src: url('/fonts/quicksand/Quicksand-VariableFont_wght.ttf');
}
body {
  font-family: "Quicksand", sans-serif;
  font-size: 16px;
  line-height: 1.2;
}
a,
a:visited,
a:hover {
  color: #444;
}
html,
body,
#__next {
  min-height: 100vh;
}
.content-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}
.content-body .blog-heading,
.content-body .main-heading {
  margin: 15% 0 11%;
  color: white;
  text-align: center;
  font-size: 4em;
}
@media (max-width: 480px) {
  .content-body .blog-heading,
  .content-body .main-heading {
    font-size: 2.4em;
    margin: 40% 0 20%;
  }
}
.content-main {
  background: white;
  flex: 1;
}
.content-main .blog-content {
  padding: 20px 10% 40px;
  margin-bottom: 20px;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .content-main .blog-content {
    padding: 20px 5% 40px;
  }
}
a.cta-button {
  background: black;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 40px;
  text-align: center;
  text-decoration: none;
}

.blog-background-image {
  position: fixed;
  top: 0px;
  width: 100%;
  min-height: 500px;
  background-image: url("/img/header-cropped.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -100;
}
.blog-background-image h1 {
  margin-top: 20%;
  color: white;
  text-align: center;
  font-size: 4em;
}

.nav-main {
  display: flex;
  width: 100%;
  align-items: center;
  position: fixed;
  top: 0;
  background: #FCF161;
  z-index: 100;
}
.nav-main .logo-container .logo {
  padding: 10px 20px;
  max-width: 200px;
  transition: all 1s ease;
  width: 100%;
}
@media (max-width: 480px) {
  .nav-main .logo-container {
    width: 50%;
  }
}
.nav-main.header-small .logo-container .logo {
  padding: 13.33333333px;
  max-width: 100px;
}
.nav-main .nav-links {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.nav-main .nav-links .language-chooser {
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.nav-main .nav-links .language-chooser .language-chooser-button {
  border: none;
  background: transparent;
  cursor: pointer;
}
@media (max-width: 480px) {
  .nav-main .nav-links .language-chooser .language-chooser-button {
    margin-right: 30px;
  }
}
.nav-main .nav-links .links-container {
  display: flex;
}
.nav-main .nav-links .menu-main {
  margin-left: auto;
  background: #FCF161;
  font-size: 20px;
  font-weight: bold;
}
.nav-main .nav-links .menu-main .nav-mobile-control {
  display: none;
}
.nav-main .nav-links .menu-main ul.menu-items {
  list-style-type: none;
  padding: 0;
}
.nav-main .nav-links .menu-main ul.menu-items li {
  padding: 10px;
  display: inline-block;
}
.nav-main .nav-links .menu-main ul.menu-items li a {
  text-decoration: none;
}
.nav-main .nav-links .menu-main ul.menu-items li a:hover {
  border-bottom: 2px solid yellow;
}
.nav-main .nav-links .menu-main ul.menu-items li a.active {
  border-bottom: 2px solid black;
}
@media (max-width: 480px) {
  .nav-main .nav-links .menu-main ul.menu-items li a {
    font-weight: normal;
  }
  .nav-main .nav-links .menu-main ul.menu-items li a.active {
    border-bottom: none;
  }
}
@media (max-width: 768px) {
  .nav-main ul.menu-items {
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
  }
  .nav-main .nav-links .links-container {
    position: absolute;
    background: white;
    flex-direction: column;
    z-index: 100;
    right: 2%;
    top: 40%;
  }
  .nav-main .nav-links .links-container span.nav-mobile-control {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: black;
    border-radius: 3px;
  }
  .nav-main .nav-links .links-container input.nav-mobile-control {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0;
    /* hide this */
    z-index: 2;
    /* and place it over the hamburger */
    -webkit-touch-callout: none;
  }
  .nav-main .nav-links .links-container input:checked ~ .menu-items {
    height: auto;
    transition: all 1s ease;
    max-height: 300px;
  }
  .nav-main .nav-links .links-container input:checked ~ .menu-items li,
  .nav-main .nav-links .links-container input:checked ~ .menu-items a {
    opacity: 1;
  }
  .nav-main .nav-links .links-container ul.menu-items {
    position: absolute;
    right: 0px;
    max-height: 0;
    background: white;
    transition: all 1s ease;
  }
  .nav-main .nav-links .links-container ul.menu-items li,
  .nav-main .nav-links .links-container ul.menu-items a {
    opacity: 0;
    transition: opacity 1s;
  }
}

.header-background-image {
  position: fixed;
  top: 0px;
  width: 100%;
  min-height: 500px;
  background-image: url("/img/header-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -100;
}

.sticky-footer {
  background: black;
  color: white;
  padding: 20px 0 40px;
}
.sticky-footer h3 {
  text-align: center;
  margin: 20px 0 40px;
}
.sticky-footer .footer-info {
  display: flex;
  justify-content: space-evenly;
}
@media (max-width: 480px) {
  .sticky-footer .footer-info {
    flex-direction: column;
  }
}
.sticky-footer .footer-info .google-maps iframe {
  border: none;
  width: 500px;
}
.sticky-footer .footer-info .contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sticky-footer .footer-info .contact a {
  color: white;
  padding: 5px 0;
  text-decoration: none;
}
.sticky-footer .footer-info .contact .instagram-link {
  display: flex;
  align-items: center;
}
.sticky-footer .footer-info .contact .instagram-link img {
  max-width: 30px;
}
@media (max-width: 480px) {
  .sticky-footer .footer-info .contact {
    flex-direction: column;
    padding-top: 10px;
  }
}

.whatsapp-widget {
  position: fixed;
  height: 100px;
  width: 100px;
  bottom: 100px;
  right: 100px;
}
@media (max-width: 480px) {
  .whatsapp-widget {
    right: 0;
    bottom: 1%;
  }
}
.whatsapp-widget img {
  width: 100%;
}
.whatsapp-widget .chat-with-us {
  background: white;
  color: #482c3d;
  padding: 5px 20px;
  border-radius: 5px;
  white-space: nowrap;
  position: absolute;
  left: -69%;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 480px) {
  .whatsapp-widget .chat-with-us {
    display: none;
  }
}

.resources-page .resource-section {
  margin-bottom: 60px;
}
.resources-page .resource-section h2 {
  text-align: center;
}
.resources-page .resource-section p {
  text-align: center;
}
.resources-page .resource-section p a {
  text-decoration: none;
  border-bottom: 1px dotted;
}
.resources-page .resource-section .resource-description {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .resources-page .resource-section .resource-description {
    flex-direction: column;
  }
}
.resources-page .resource-section .resource-clipart {
  width: 200px;
  margin: 0 40px 0;
}
.resources-page .resource-section.community-section .resource-clipart {
  width: 250px;
}

.content-body.membership-page .content-main {
  padding: 20px 0 0;
}
.content-body.membership-page .content-main h1 {
  color: black;
  margin: 25px 0;
  text-align: center;
}
.content-body.membership-page .content-main .pricing-notice {
  margin: 20px;
  text-align: center;
  font-size: 2em;
  padding: 20px;
  background: red;
}
.content-body.membership-page .content-main h2 {
  padding: 20px 0;
  text-align: center;
  margin-bottom: 40px;
}
.content-body.membership-page .content-main p {
  font-size: 18px;
  line-height: 1.5;
}
.content-body.membership-page .content-main .membership-explanation {
  width: 65%;
  margin: auto auto 40px;
  text-align: center;
}
@media (max-width: 480px) {
  .content-body.membership-page .content-main .membership-explanation {
    width: 90%;
  }
}
.content-body.membership-page .content-main .membership-explanation.membership-examples {
  margin: 20px auto;
  font-size: 18px;
  width: 87%;
}
.content-body.membership-page .content-main .membership-explanation.membership-examples span {
  font-weight: bold;
}
.content-body.membership-page .content-main .membership-explanation.membership-examples ul {
  list-style-type: none;
  padding: 0;
}
.content-body.membership-page .content-main .membership-explanation.membership-examples li {
  padding: 5px 0;
}
.content-body.membership-page .content-main p.membership-types {
  text-align: center;
  width: 80%;
  margin: 60px auto 40px;
}
@media (max-width: 480px) {
  .content-body.membership-page .content-main p.membership-types {
    width: 90%;
  }
}
.content-body.membership-page .content-main p.membership-types .membership-benefits {
  text-align: left;
  width: 60%;
  margin: auto;
}
@media (max-width: 480px) {
  .content-body.membership-page .content-main p.membership-types .membership-benefits {
    width: 85%;
  }
}
.content-body.membership-page .content-main p.membership-types .membership-benefits li {
  margin: 10px 0;
}
.content-body.membership-page .content-main .membership-list {
  display: flex;
  padding: 0 6%;
  margin-bottom: 40px;
  align-items: stretch;
  justify-content: center;
}
@media (max-width: 480px) {
  .content-body.membership-page .content-main .membership-list {
    flex-direction: column;
  }
}
.content-body.membership-page .content-main .membership-list .membership-plan {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 0 5px 40px;
  margin-bottom: 40px;
  width: 20%;
}
@media (max-width: 480px) {
  .content-body.membership-page .content-main .membership-list .membership-plan {
    width: 100%;
    margin-bottom: 20px;
  }
}
.content-body.membership-page .content-main .membership-list .membership-plan:not(:last-of-type) {
  margin-right: 20px;
}
@media (max-width: 480px) {
  .content-body.membership-page .content-main .membership-list .membership-plan:not(:last-of-type) {
    margin-right: 0;
  }
}
.content-body.membership-page .content-main .membership-list .membership-plan h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.content-body.membership-page .content-main .membership-list .membership-plan .membership-blurb {
  flex: 1;
  padding: 0 10px;
}
.content-body.membership-page .content-main .membership-list .membership-plan .membership-blurb ul {
  text-align: left;
}
.content-body.membership-page .content-main .membership-list .membership-plan .membership-price {
  font-weight: bold;
  font-size: 1.6rem;
}
.content-body.membership-page .content-main .membership-list .membership-plan .membership-price .membership-hourly-rate {
  display: block;
  font-weight: normal;
  font-size: 1rem;
  padding-top: 10px;
}
.sun-div {
  display: flex;
  width: 80%;
  margin: auto;
  align-items: center;
}
@media (max-width: 480px) {
  .sun-div {
    flex-direction: column-reverse;
    width: 100%;
  }
}
.sun-div .sun {
  position: relative;
  width: 200px;
  margin: 60px auto 0;
}
@media (max-width: 480px) {
  .sun-div .sun {
    margin-bottom: 40px;
  }
}
.sun-div .sun:before,
.sun-div .sun:after {
  content: '';
  background-color: #FDD835;
  height: 200px;
  width: 200px;
  border-radius: 5px;
  display: inline-block;
  box-shadow: 1px 0px 5px rgba(0, 0, 0, 0.33);
}
.sun-div .sun:before {
  position: absolute;
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sun-div .round {
  position: absolute;
}
.sun-div .round:before {
  content: '';
  background-color: #FDD835;
  height: 200px;
  width: 200px;
  border-radius: 5px;
  display: block;
}
.sun-div .round::after {
  content: '';
  background-color: #FFEB3B;
  height: 200px;
  width: 200px;
  border-radius: 100%;
  display: block;
  position: absolute;
  top: 0;
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.sun-div .sun-text {
  position: absolute;
  top: 27%;
  left: 2%;
  text-align: center;
  z-index: 10;
  transform: rotate(29deg);
  font-weight: bold;
  font-size: 1.3em;
}

.blog-listing-card {
  width: 30%;
  display: block;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.25) 0 3px 11px 0;
  border-radius: 5px;
  margin: 0 20px;
}
@media (max-width: 768px) {
  .blog-listing-card {
    width: 45%;
  }
}
@media (max-width: 480px) {
  .blog-listing-card {
    width: 100%;
  }
}
.blog-listing-card .image-container {
  overflow: hidden;
  border-radius: 5px 5px 0 0;
}
.blog-listing-card .image-container img {
  width: 100%;
  transition: all 1s ease;
}
.blog-listing-card .image-container img:hover {
  transform: scale(1.07);
}
.blog-listing-card .card-text {
  padding: 10px 10px 20px;
}
.blog-listing-card .card-text h3 {
  font-size: 16px;
}

.resources-page .resource-section {
  margin-bottom: 60px;
}
.resources-page .resource-section h2 {
  text-align: center;
}
.resources-page .resource-section p {
  text-align: center;
}
.resources-page .resource-section p a {
  text-decoration: none;
  border-bottom: 1px dotted;
}
.resources-page .resource-section .resource-description {
  display: flex;
  align-items: center;
  justify-content: center;
}
.resources-page .resource-section .resource-clipart {
  width: 200px;
  margin: 0 40px 0;
}
.resources-page .resource-section.community-section .resource-clipart {
  width: 250px;
}

@media (max-width: 768px) {
  .blog-post {
    width: 100%;
  }
}
.blog-post .blogpost-heading-container {
  padding: 16% 0 6%;
  color: white;
  text-align: center;
}
.blog-post .blogpost-heading-container h1 {
  font-size: 38px;
}
.blog-post .blogpost-heading-container h2 {
  font-size: 16px;
}

.content-body .content-main {
  padding: 20px 0 60px;
}
.content-body .content-main h2 {
  padding: 20px 0;
  text-align: center;
}
.content-body .content-main .blog-listings {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  justify-content: center;
}
.content-body .content-main .blog-listings .blog-listing-card {
  max-width: 250px;
}
@media (max-width: 480px) {
  .content-body .content-main .blog-listings .blog-listing-card {
    max-width: 90%;
  }
  .content-body .content-main .blog-listings .blog-listing-card:not(:last-of-type) {
    margin-bottom: 20px;
  }
}

.home-content {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}
.home-content h2 {
  font-weight: 400;
  text-align: center;
  font-size: 2.6em;
  width: 100%;
}
@media (max-width: 480px) {
  .home-content h2 {
    width: 90%;
    margin-top: 50px;
    font-size: 2em;
  }
}
.home-content img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}
.home-content section {
  padding: 40px;
}
@media (max-width: 480px) {
  .home-content section {
    padding: 0;
    margin-bottom: 20px;
  }
}
.home-content .welcome-blurb {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-content .welcome-blurb a.cta {
  width: 200px;
  background: black;
  color: white;
  border-radius: 30px;
  border: 1px solid black;
  padding: 17px 0;
  font-size: 1.4em;
  text-align: center;
  text-decoration: none;
}
.home-content .mangohub-carousel {
  width: 60%;
  margin: auto;
}
@media (max-width: 480px) {
  .home-content .mangohub-carousel {
    width: 90%;
  }
}
.home-content p.faded-text {
  font-size: 1.3rem;
  width: 50%;
  text-align: center;
  color: darkgray;
  margin: auto;
}
@media (max-width: 480px) {
  .home-content p.faded-text {
    width: 90%;
  }
}
.home-content p.free-pitch {
  width: 80%;
  margin: auto;
  text-align: center;
}
.home-content .workspace-features {
  width: 100%;
  display: flex;
  justify-content: center;
}
.home-content .features-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .home-content .features-section {
    display: block;
  }
}
.home-content .features-section .feature-container {
  width: 50%;
}
@media (max-width: 480px) {
  .home-content .features-section .feature-container {
    width: 100%;
  }
}
.home-content .features-section .feature-container:last-child {
  margin-top: -60px;
}
@media (max-width: 480px) {
  .home-content .features-section .feature-container:last-child {
    margin-top: 0;
  }
}
.home-content .features-section .feature-container.feature-offset {
  margin-top: 230px;
}
@media (max-width: 480px) {
  .home-content .features-section .feature-container.feature-offset {
    margin-top: 0;
  }
}
.home-content .features-section .feature-container h3 {
  text-align: center;
}
.home-content .features-section .feature-container .feature-detail {
  display: flex;
  align-items: center;
}
@media (max-width: 480px) {
  .home-content .features-section .feature-container .feature-detail {
    flex-direction: column;
  }
}
.home-content .features-section .feature-container .feature-detail .feature-image {
  width: 30%;
}
@media (max-width: 480px) {
  .home-content .features-section .feature-container .feature-detail .feature-image {
    width: 50%;
  }
}
.home-content .features-section .feature-container .feature-detail .feature-image img {
  width: 100%;
  border-radius: 10px;
}
.home-content .features-section .feature-container .feature-detail .feature {
  padding: 20px;
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-content .features-section .feature-container .feature-detail .feature p {
  margin-top: 0;
}
.home-content .reviews {
  position: relative;
  color: white;
  text-align: center;
  background-image: url(/_next/static/images/header-background-302242f9f740a6ee006e2352125cace9.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.home-content .reviews .review-blurb {
  padding: 10% 0;
  color: white;
}
.home-content .reviews a {
  color: white;
  text-decoration: none;
}
.home-content .why-tulum .tulum-feature {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
}
.home-content .why-tulum .tulum-feature .tulum-image-container {
  margin-right: 40px;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .home-content .why-tulum .tulum-feature .tulum-image-container {
    margin: 10px 10px;
  }
}
.home-content .why-tulum .tulum-feature .tulum-blurb {
  width: 58%;
}
@media (max-width: 480px) {
  .home-content .why-tulum .tulum-feature .tulum-blurb {
    width: 75%;
    padding: 20px 0;
  }
}

