/**
 * Global Reset of all HTML Elements
 *
 * Resetting all of our HTML Elements ensures a smoother
 * visual transition between browsers. If you don't believe me,
 * try temporarily commenting out this block of code, then go
 * and look at Mozilla versus Safari, both good browsers with
 * a good implementation of CSS. The thing is, all browser CSS
 * defaults are different and at the end of the day if visual
 * consistency is what we're shooting for, then we need to
 * make sure we're resetting all spacing elements.
 *
 */
@import '../../fonts/fonts.css';
html,
body {
  border: 0;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  font-size: 16px;
}
@media only screen and (max-width: 1023px) {
  html,
  body {
    font-size: 14px;
  }
}
div,
span,
object,
iframe,
img,
table,
caption,
thead,
tbody,
tfoot,
tr,
tr,
td,
article,
aside,
canvas,
details,
figure,
hgroup,
menu,
nav,
footer,
header,
section,
summary,
mark,
audio,
video {
  border: 0;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cit,
code,
del,
dfn,
em,
ins,
q,
samp,
small,
strong,
sub,
sup,
b,
i,
hr,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
legend,
label {
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}
article,
aside,
canvas,
figure,
figure img,
figcaption,
hgroup,
footer,
header,
nav,
section,
audio,
video {
  display: block;
}
table {
  border-collapse: separate;
  border-spacing: 0;
}
table caption,
table th,
table td {
  text-align: left;
  vertical-align: middle;
}
a img {
  border: 0;
}
:focus {
  outline: 0;
}
div,
ul,
li {
  box-sizing: border-box;
}
p {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.text-beige {
  color: #d8c3b5;
}
.text-beige-2 {
  color: #bfafa6;
}
.space {
  margin: 0 10px;
}
.font-nexa {
  font-family: 'Montserrat', sans-serif;
}
.font-montserrat {
  font-family: 'Montserrat', sans-serif;
}
.font-openSans {
  font-family: 'Open Sans', sans-serif;
}
.size-big {
  font-size: clamp(2.5rem, 3.5vw, 4rem);
  line-height: clamp(2.7rem, 4vw, 4.5rem);
}
.size-h1 {
  font-size: clamp(1.5rem, 3.5vw, 3.6rem);
  line-height: clamp(1.5rem, 3.5vw, 4rem);
}
.size-h2b {
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  line-height: clamp(2.1rem, 3.6vw, 3rem);
}
.size-h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: clamp(2.5rem, 4vw, 3rem);
}
.size-h3 {
  font-size: clamp(1.3rem, 3.5vw, 2.25rem);
  line-height: clamp(1.6rem, 3.6vw, 2.55rem);
}
.size-h4 {
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  line-height: clamp(1.6rem, 3.6vw, 2rem);
}
.button {
  width: 160px;
  height: 49px;
  border: 2px #575a5c solid;
  text-align: center;
  padding: 0.5rem 1rem;
  color: #626567;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
}
.button-hollow {
  width: 160px;
  height: 49px;
  border: 2px #575a5c solid;
  text-align: center;
  padding: 0.5rem 1rem;
  color: #626567;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
}
.button-hollow:hover {
  border: 2px #575a5c solid;
  background-color: #575a5c;
  color: white;
}
.button-full {
  width: 160px;
  height: 49px;
  border: 2px #575a5c solid;
  text-align: center;
  padding: 0.5rem 1rem;
  color: #626567;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  background-color: grey;
  color: white;
  border: 1px solid grey;
}
.button-full:hover {
  background-color: transparent;
  color: grey;
  border: 1px solid grey;
}
#button {
  width: 160px;
  height: 49px;
  border: 2px #575a5c solid;
  text-align: center;
  padding: 0.5rem 1rem;
  color: #626567;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
}
#button-hollow {
  width: 160px;
  height: 49px;
  border: 2px #575a5c solid;
  text-align: center;
  padding: 0.5rem 1rem;
  color: #626567;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
}
#button-hollow:hover {
  border: 2px #575a5c solid;
  background-color: #575a5c;
  color: white;
}
#button-full {
  width: 160px;
  height: 49px;
  border: 2px #575a5c solid;
  text-align: center;
  padding: 0.5rem 1rem;
  color: #626567;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  background-color: grey;
  color: white;
  border: 1px solid grey;
}
#button-full:hover {
  background-color: transparent;
  color: grey;
  border: 1px solid grey;
}
body {
  background-color: #F2F2F2;
  position: relative;
}
body .container {
  max-width: 1920px;
  background-color: white;
  margin: auto;
}
body .container.adminSignedIn {
  margin-top: 35px;
}
body .no-scroll {
  overflow: hidden;
}
@media only screen and (max-width: 1023px) {
  #wpadminbar {
    display: none;
  }
}
#included-files-fie-on-wp-footer {
  display: none;
}
.wp-block-columns {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1023px) {
  .wp-block-columns {
    display: block;
  }
}
.wp-block-column {
  width: 50%;
}
@media only screen and (max-width: 1023px) {
  .wp-block-column {
    width: 100%;
  }
}
.footer {
  background-color: #d1d0cb;
  max-width: 1920px;
  margin: auto;
}
.footer__row {
  width: 85%;
  padding: 5rem 0 2rem;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
@media only screen and (max-width: 1366px) {
  .footer__row {
    display: block;
  }
}
.footer__row-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 65%;
}
@media only screen and (max-width: 1366px) {
  .footer__row-info {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .footer__row-info {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 576px) {
  .footer__row-info {
    display: block;
  }
}
.footer__row-box {
  width: 32%;
  padding: 5px;
}
@media only screen and (max-width: 768px) {
  .footer__row-box {
    width: 45%;
  }
}
@media only screen and (max-width: 576px) {
  .footer__row-box {
    width: 100%;
  }
}
.footer__row-box h3 {
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
}
.footer__row-box p {
  padding: 0;
  font-family: 'Open Sans', sans-serif;
}
.footer__row-box p a {
  color: black;
  font-weight: 400;
  margin-top: 0;
  display: inline-block;
}
.footer__row-box p a:hover {
  text-decoration: underline;
}
.footer__row-box a {
  display: block;
  font-family: 'Open Sans', sans-serif;
  color: #626567;
  font-weight: bold;
  text-decoration: none;
  margin-top: 30px;
}
.footer__row-box a:hover {
  text-decoration: underline;
}
.footer__row-form {
  width: 45%;
  display: flex;
  justify-content: right;
}
@media only screen and (max-width: 1366px) {
  .footer__row-form {
    margin-top: 3rem;
    width: 100%;
    justify-content: left;
  }
}
.footer__row-form h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.5rem;
}
.footer__row-form input[type="email"] {
  width: 270px;
  border: none;
  border-bottom: 2px solid black;
  background-color: transparent;
  padding: 10px;
  margin-right: 1.5rem;
}
@media only screen and (max-width: 576px) {
  .footer__row-form input[type="email"] {
    width: 160px;
  }
}
.footer__row-form input[type="submit"] {
  border: 2px solid black;
  width: 160px;
  height: 50px;
  background-color: transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
}
@media only screen and (max-width: 576px) {
  .footer__row-form input[type="submit"] {
    margin-top: 2rem;
  }
}
.footer__row-form input[type="submit"]:hover {
  background-color: #575a5c;
  color: white;
  border: #575a5c;
}
.footer__row-container {
  text-align: left;
}
.footer__info {
  text-transform: uppercase;
  color: #b3b4a7;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 1366px) {
  .footer__info {
    width: 85%;
    margin: auto;
    text-align: left;
  }
}
.blog__header {
  height: 780px;
  margin-top: -10rem;
}
@media only screen and (max-width: 576px) {
  .blog__header {
    height: 550px;
    margin-top: 0;
  }
}
.blog__header-largeImage {
  width: 100%;
  height: 100%;
}
.blog__header-largeImage img {
  width: 100%;
  height: 100%;
  object-position: top;
  object-fit: cover;
}
.blog__empty {
  height: 300px;
}
.blog__wrapper {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .blog__wrapper {
    flex-wrap: wrap;
  }
}
.blog__single {
  width: 70%;
  padding: 6rem;
  margin-top: -280px;
  background-color: #fff;
}
@media only screen and (max-width: 1024px) {
  .blog__single {
    width: 85%;
    margin: -200px auto 0;
  }
}
@media only screen and (max-width: 768px) {
  .blog__single {
    padding: 3rem;
  }
}
@media only screen and (max-width: 576px) {
  .blog__single {
    width: 90%;
    margin-top: -170px;
    padding: 2rem;
  }
}
.blog__single-tags {
  display: flex;
  color: #b3b4a7;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
}
.blog__single-tags-item {
  margin-right: 10px;
}
.blog__single-tags-item:hover {
  text-decoration: underline;
}
.blog__single-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: clamp(2.5rem, 4vw, 3rem);
}
.blog__single-author {
  display: flex;
  margin-top: 1rem;
  display: none;
}
.blog__single-authorImage {
  width: 50px;
  margin-right: 20px;
  display: none;
}
.blog__single-authorImage img {
  width: 100%;
  border-radius: 50%;
}
.blog__single-authorName {
  color: #575a5c;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
}
.blog__single-content {
  margin-top: 3rem;
}
.blog__single-content img {
  max-width: 100%;
  margin: 2rem 0 4rem;
}
.blog__single-content iframe {
  max-width: 100%;
  margin: 2rem 0 4rem;
  max-height: 700px;
}
@media only screen and (max-width: 1366px) {
  .blog__single-content iframe {
    max-height: 400px;
  }
}
@media only screen and (max-width: 768px) {
  .blog__single-content iframe {
    max-height: 300px;
  }
}
.blog__latest {
  width: 27%;
  margin-top: -65px;
}
@media only screen and (max-width: 1024px) {
  .blog__latest {
    width: 85%;
    margin: auto;
  }
}
@media only screen and (max-width: 1024px) {
  .blog__latest-wrapper {
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 576px) {
  .blog__latest-wrapper {
    flex-wrap: wrap;
    width: 80%;
    margin: auto;
  }
}
@media only screen and (max-width: 1024px) {
  .blog__latest-one {
    width: 45%;
  }
}
@media only screen and (max-width: 576px) {
  .blog__latest-one {
    width: 100%;
  }
}
.blog__latest-name {
  color: #fff;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 1.5rem;
  height: 65px;
  background-color: #7a9ca0;
}
.blog__latest-thumbnail {
  margin-top: 100px;
  width: 80%;
  height: 430px;
  position: relative;
}
.blog__latest-thumbnail::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0px 0px 0px 0px #bccacd;
  transition: box-shadow 0.4s ease-out;
}
.blog__latest-thumbnail:hover::after {
  box-shadow: inset 0px 0px 0px 10px #bccacd;
  transition: box-shadow 0.4s ease-out;
}
@media only screen and (max-width: 1024px) {
  .blog__latest-thumbnail {
    margin: 50px auto 0;
    width: 100%;
  }
}
.blog__latest-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog__latest-text {
  margin-left: 1rem;
}
.blog__latest-tags {
  display: flex;
}
.blog__latest-tags-item {
  margin-right: 1rem;
  margin-top: 3rem;
}
.blog__latest-tags-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  color: #d8c3b5;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.blog__latest-tags-link:hover {
  text-decoration: underline;
}
.blog__latest-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  line-height: clamp(1.6rem, 3.6vw, 2rem);
  color: #575a5c;
  font-weight: 500;
  max-width: 71%;
}
@media only screen and (max-width: 375px) {
  .blog__latest-title {
    max-width: 100%;
  }
}
.blog__latest-title:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 1366px) {
  .blog__latest-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    line-height: clamp(1.6rem, 3.6vw, 2.2rem);
  }
}
@media only screen and (max-width: 576px) {
  .blog__latest-title {
    height: 5rem;
  }
}
.blog__latest-author {
  position: relative;
  margin-left: 1rem;
  display: none;
}
.blog__latest-authorImage {
  width: 80px;
  position: absolute;
  bottom: 15rem;
  left: 1rem;
  display: none;
}
@media only screen and (max-width: 576px) {
  .blog__latest-authorImage {
    bottom: 12rem;
  }
}
.blog__latest-authorImage img {
  width: 100%;
  border-radius: 50%;
}
.blog__latest-authorName {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #575a5c;
}
.blogs {
  max-width: 1920px;
  margin: auto;
}
.blogs__wrapper {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 24%);
  grid-template-rows: auto;
  gap: 20px;
  align-items: start;
}
@media only screen and (max-width: 1366px) {
  .blogs__wrapper {
    grid-template-columns: repeat(3, 32%);
  }
}
@media only screen and (max-width: 768px) {
  .blogs__wrapper {
    display: block;
  }
}
.blogs__page {
  padding-left: 2rem;
  margin-top: 6rem;
  padding-top: 3rem;
}
@media only screen and (max-width: 1023px) {
  .blogs__page {
    grid-column: 1 / span 3;
  }
}
.blogs__page-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: #4d4d4d;
  max-width: 340px;
  margin: 1rem 0;
}
@media only screen and (max-width: 1023px) {
  .blogs__page-text {
    max-width: fit-content;
  }
}
.blogs__page-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: clamp(2.5rem, 4vw, 3rem);
  font-family: 'Montserrat', sans-serif;
  color: #575a5c;
  max-width: 270px;
}
@media only screen and (max-width: 1023px) {
  .blogs__page-text h2 {
    max-width: fit-content;
  }
}
.blogs__page-paragraph {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
}
.blogs__page-tags {
  display: flex;
  flex-wrap: wrap;
  max-width: 315px;
  padding-bottom: 1rem;
}
.blogs__page-tags li a {
  display: block;
  margin: 5px 10px 5px 0;
  background-color: #bccacd;
  text-transform: uppercase;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  padding: 5px 10px;
  width: 95px;
  height: 24px;
  text-align: center;
}
.blogs__page-tags li a:hover {
  background-color: #c9aa99;
}
.blogs__oneBlog {
  margin-top: 5rem;
  position: relative;
}
.blogs__oneBlog-thumbnail {
  height: 416px;
  width: 100%;
  position: relative;
}
.blogs__oneBlog-thumbnail::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0px 0px 0px 0px #bccacd;
  transition: box-shadow 0.4s ease-out;
}
.blogs__oneBlog-thumbnail:hover::after {
  box-shadow: inset 0px 0px 0px 10px #bccacd;
  transition: box-shadow 0.4s ease-out;
}
.blogs__oneBlog-thumbnail img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.blogs__oneBlog-gradient {
  display: none;
}
.blogs__oneBlog-text {
  margin-top: 3rem;
  display: flex;
  padding: 0 2rem;
}
.blogs__oneBlog-tags {
  display: flex;
  height: 2rem;
}
.blogs__oneBlog-tags-link {
  text-transform: uppercase;
  margin: 0 15px 15px 0;
  font-size: 11px;
  color: #d8c3b5;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  height: 1rem;
}
.blogs__oneBlog-tags-link:hover {
  text-decoration: underline;
}
.blogs__oneBlog-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  line-height: clamp(1.6rem, 3.6vw, 2.5rem);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  height: 11rem;
  max-width: 95%;
}
@media only screen and (max-width: 1680px) {
  .blogs__oneBlog-title {
    font-size: clamp(1.5rem, 3.5vw, 1.5rem);
    line-height: clamp(1.6rem, 3.6vw, 2rem);
    height: 8.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .blogs__oneBlog-title {
    height: 4.5rem;
  }
}
.blogs__oneBlog-title a {
  color: #575a5c;
}
.blogs__oneBlog-title a:hover {
  text-decoration: underline;
}
.blogs__oneBlog-excerpt,
.blogs__oneBlog-button {
  display: none;
}
.blogs__oneBlog-author {
  position: relative;
  display: none;
}
.blogs__oneBlog-authorImage {
  display: none;
  width: 75px;
  border-radius: 50%;
  position: absolute;
  bottom: 19rem;
  left: 1.5rem;
}
@media only screen and (max-width: 1680px) {
  .blogs__oneBlog-authorImage {
    bottom: 17rem;
  }
}
@media only screen and (max-width: 768px) {
  .blogs__oneBlog-authorImage {
    bottom: 13rem;
  }
}
.blogs__oneBlog-authorImage img {
  width: 100%;
  border-radius: 50%;
}
.blogs__oneBlog-authorName {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  color: #575a5c;
  font-weight: 500;
  padding-left: 2rem;
}
.blogs__oneBlog:first-of-type {
  grid-column: 2 / span 3;
  position: relative;
  margin-right: -6rem;
  margin-top: 2.5rem;
}
@media only screen and (max-width: 1366px) {
  .blogs__oneBlog:first-of-type {
    grid-column: 2 / span 2;
  }
}
@media only screen and (max-width: 1440px) {
  .blogs__oneBlog:first-of-type {
    margin-right: -4rem;
  }
}
@media only screen and (max-width: 768px) {
  .blogs__oneBlog:first-of-type {
    margin-right: -2.5rem;
  }
}
@media only screen and (max-width: 1023px) {
  .blogs__oneBlog:first-of-type {
    grid-column: 1 / span 3;
  }
}
.blogs__oneBlog:first-of-type .blogs__oneBlog-image {
  position: relative;
  padding-right: 3rem;
}
.blogs__oneBlog:first-of-type .blogs__oneBlog-thumbnail {
  display: block;
  position: relative;
  width: 100%;
  height: 650px;
}
.blogs__oneBlog:first-of-type .blogs__oneBlog-thumbnail::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0px 0px 0px 0px #bccacd;
  transition: box-shadow 0.4s ease-out;
}
.blogs__oneBlog:first-of-type .blogs__oneBlog-thumbnail:hover::after {
  box-shadow: inset 0px 0px 0px 15px #bccacd;
  transition: box-shadow 0.4s ease-out;
}
@media only screen and (max-width: 768px) {
  .blogs__oneBlog:first-of-type .blogs__oneBlog-thumbnail {
    height: 450px;
  }
}
.blogs__oneBlog:first-of-type .blogs__oneBlog-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blogs__oneBlog:first-of-type .blogs__oneBlog-gradient {
  display: block;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.99) 0%, rgba(255, 255, 255, 0) 70%);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
}
.blogs__oneBlog:first-of-type::before {
  content: "";
  background-color: #f2f2f2;
  position: absolute;
  top: -40px;
  right: 0;
  width: 890px;
  height: 750px;
}
@media only screen and (max-width: 1440px) {
  .blogs__oneBlog:first-of-type::before {
    width: 700px;
  }
}
@media only screen and (max-width: 1366px) {
  .blogs__oneBlog:first-of-type::before {
    width: 600px;
  }
}
@media only screen and (max-width: 768px) {
  .blogs__oneBlog:first-of-type::before {
    height: 550px;
  }
}
.blogs__oneBlog:first-of-type .blogs__oneBlog-text {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: absolute;
  bottom: 2rem;
  width: 85%;
  left: 5rem;
  padding: 0;
}
@media only screen and (max-width: 1680px) {
  .blogs__oneBlog:first-of-type .blogs__oneBlog-text {
    width: 85%;
    align-items: baseline;
  }
}
@media only screen and (max-width: 1366px) {
  .blogs__oneBlog:first-of-type .blogs__oneBlog-text {
    display: block;
  }
}
@media only screen and (max-width: 576px) {
  .blogs__oneBlog:first-of-type .blogs__oneBlog-text {
    left: 3rem;
    bottom: 0;
  }
}
.blogs__oneBlog:first-of-type .blogs__oneBlog-tagsTitle {
  width: 55%;
}
@media only screen and (max-width: 1366px) {
  .blogs__oneBlog:first-of-type .blogs__oneBlog-tagsTitle {
    width: 95%;
  }
}
.blogs__oneBlog:first-of-type .blogs__oneBlog-tagsTitle:hover {
  text-decoration: underline;
}
.blogs__oneBlog:first-of-type .blogs__oneBlog-tags {
  display: flex;
}
.blogs__oneBlog:first-of-type .blogs__oneBlog-tags-item {
  margin-right: 20px;
}
.blogs__oneBlog:first-of-type .blogs__oneBlog-tags-link {
  text-transform: uppercase;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
}
.blogs__oneBlog:first-of-type .blogs__oneBlog-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 3.6rem);
  line-height: clamp(1.5rem, 3.5vw, 4rem);
  color: #d8c3b5;
  max-width: 425px;
  height: unset;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 1366px) {
  .blogs__oneBlog:first-of-type .blogs__oneBlog-title {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 1023px) {
  .blogs__oneBlog:first-of-type .blogs__oneBlog-title {
    margin-bottom: 1rem;
  }
}
.blogs__oneBlog:first-of-type .blogs__oneBlog-title a {
  color: #d8c3b5;
}
.blogs__oneBlog:first-of-type .blogs__oneBlog-excerpt {
  display: block;
  font-family: 'Open Sans', sans-serif;
  color: #f2f2f2;
  font-size: 18px;
  width: 30%;
}
@media only screen and (max-width: 1366px) {
  .blogs__oneBlog:first-of-type .blogs__oneBlog-excerpt {
    width: 95%;
  }
}
@media only screen and (max-width: 768px) {
  .blogs__oneBlog:first-of-type .blogs__oneBlog-excerpt {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 576px) {
  .blogs__oneBlog:first-of-type .blogs__oneBlog-excerpt {
    width: 75%;
  }
}
.blogs__oneBlog:first-of-type .blogs__oneBlog-button {
  display: block;
  text-align: center;
  padding-top: 1.5rem;
  width: 260px;
  height: 65px;
  background-color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  position: relative;
  left: 75%;
  transform: translateX(-80%);
  bottom: -3.5rem;
  color: #575a5c;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  border: 1px solid #fff;
}
.blogs__oneBlog:first-of-type .blogs__oneBlog-button:hover {
  background-color: #575a5c;
  color: #fff;
  border: 1px solid #fff;
}
.blogs__oneBlog:first-of-type .blogs__oneBlog-button span {
  margin-left: 1rem;
}
@media only screen and (max-width: 576px) {
  .blogs__oneBlog:first-of-type .blogs__oneBlog-button {
    width: 200px;
    bottom: -1.5rem;
  }
}
.blogs__oneBlog:first-of-type .blogs__oneBlog-author {
  position: absolute;
  bottom: 2rem;
  left: 5rem;
}
.blogs__oneBlog:first-of-type .blogs__oneBlog-authorImage {
  width: 120px;
  left: -2rem;
  bottom: 2rem;
  display: none;
}
@media only screen and (max-width: 768px) {
  .blogs__oneBlog:first-of-type .blogs__oneBlog-authorImage {
    left: -4rem;
  }
}
@media only screen and (max-width: 576px) {
  .blogs__oneBlog:first-of-type .blogs__oneBlog-authorImage {
    width: 100px;
  }
}
.blogs__oneBlog:first-of-type .blogs__oneBlog-authorImage img {
  width: 100%;
  border-radius: 50%;
}
.blogs__oneBlog:first-of-type .blogs__oneBlog-authorName {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #bccacd;
  font-weight: 500;
  padding-left: 0;
}
@media only screen and (max-width: 576px) {
  .blogs__oneBlog:first-of-type .blogs__oneBlog-authorName {
    font-size: 0.9rem;
  }
}
.blogs__oneBlog:nth-of-type(2) {
  grid-column: 1 / span 2;
  position: relative;
}
.blogs__oneBlog:nth-of-type(2) .blogs__oneBlog-image {
  position: relative;
}
.blogs__oneBlog:nth-of-type(2) .blogs__oneBlog-thumbnail {
  display: block;
  position: relative;
  width: 100%;
  height: 635px;
}
.blogs__oneBlog:nth-of-type(2) .blogs__oneBlog-thumbnail::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0px 0px 0px 0px #bccacd;
  transition: box-shadow 0.4s ease-out;
}
.blogs__oneBlog:nth-of-type(2) .blogs__oneBlog-thumbnail:hover::after {
  box-shadow: inset 0px 0px 0px 15px #bccacd;
  transition: box-shadow 0.4s ease-out;
}
@media only screen and (max-width: 768px) {
  .blogs__oneBlog:nth-of-type(2) .blogs__oneBlog-thumbnail {
    height: 450px;
  }
}
.blogs__oneBlog:nth-of-type(2) .blogs__oneBlog-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blogs__oneBlog:nth-of-type(2) .blogs__oneBlog-gradient {
  display: block;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.99) 0%, rgba(255, 255, 255, 0) 70%);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  margin: auto;
}
.blogs__oneBlog:nth-of-type(2) .blogs__oneBlog-text {
  display: flex;
  justify-content: right;
  position: absolute;
  bottom: 5.5rem;
  width: 90%;
  right: 4.5rem;
  padding-left: 0;
  z-index: 2;
}
@media only screen and (max-width: 1680px) {
  .blogs__oneBlog:nth-of-type(2) .blogs__oneBlog-text {
    width: 77%;
  }
}
@media only screen and (max-width: 768px) {
  .blogs__oneBlog:nth-of-type(2) .blogs__oneBlog-text {
    width: 95%;
    bottom: 2.5rem;
    right: 1.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .blogs__oneBlog:nth-of-type(2) .blogs__oneBlog-text {
    width: 85%;
    bottom: 0.5rem;
    right: 3.5rem;
  }
}
.blogs__oneBlog:nth-of-type(2) .blogs__oneBlog-tagsTitle {
  width: 85%;
}
.blogs__oneBlog:nth-of-type(2) .blogs__oneBlog-tags {
  display: flex;
}
.blogs__oneBlog:nth-of-type(2) .blogs__oneBlog-tags-item {
  margin-right: 20px;
}
.blogs__oneBlog:nth-of-type(2) .blogs__oneBlog-tags-item a:hover {
  text-decoration: underline;
}
.blogs__oneBlog:nth-of-type(2) .blogs__oneBlog-tags-link {
  text-transform: uppercase;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  display: block;
}
.blogs__oneBlog:nth-of-type(2) .blogs__oneBlog-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2rem);
  line-height: clamp(2.1rem, 3.6vw, 2.85rem);
  max-width: 500px;
  color: #d8c3b5;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .blogs__oneBlog:nth-of-type(2) .blogs__oneBlog-title {
    font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    line-height: clamp(1.6rem, 3.6vw, 2rem);
    height: 7rem;
  }
}
.blogs__oneBlog:nth-of-type(2) .blogs__oneBlog-title a {
  color: #d8c3b5;
}
.blogs__oneBlog:nth-of-type(2) .blogs__oneBlog-button {
  display: block;
  text-align: center;
  padding-top: 1.5rem;
  width: 260px;
  height: 65px;
  background-color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  font-family: 'Nexa Regular';
  position: relative;
  left: 80%;
  transform: translateX(-80%);
  bottom: -3.5rem;
  color: #575a5c;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
}
.blogs__oneBlog:nth-of-type(2) .blogs__oneBlog-button span {
  margin-left: 1rem;
}
.blogs__oneBlog:nth-of-type(2) .blogs__oneBlog-author {
  position: absolute;
  bottom: 2rem;
  left: 4rem;
  display: none;
}
.blogs__oneBlog:nth-of-type(2) .blogs__oneBlog-authorImage {
  position: initial;
  width: 120px;
  display: none;
}
@media only screen and (max-width: 768px) {
  .blogs__oneBlog:nth-of-type(2) .blogs__oneBlog-authorImage {
    width: 100px;
    position: absolute;
    bottom: 1rem;
    left: -3rem;
  }
}
.blogs__oneBlog:nth-of-type(2) .blogs__oneBlog-authorImage img {
  width: 100%;
  border-radius: 50%;
}
.blogs__oneBlog:nth-of-type(2) .blogs__oneBlog-authorName {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #bccacd;
  font-weight: 500;
  margin-left: 10rem;
  margin-top: -1rem;
  padding-top: 0;
  padding-left: 0;
  display: none;
}
@media only screen and (max-width: 768px) {
  .blogs__oneBlog:nth-of-type(2) .blogs__oneBlog-authorName {
    margin-left: 11rem;
  }
}
.instagram {
  max-width: 1920px;
  margin: auto;
  background-color: #fff;
  padding: 4rem 0;
}
.instagram__box {
  display: flex;
  justify-content: center;
  align-items: baseline;
  padding: 3rem;
}
.instagram__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #575a5c;
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  line-height: clamp(1.6rem, 3.6vw, 2rem);
  text-align: center;
  margin-right: 3rem;
}
.instagram__subtitle {
  text-transform: uppercase;
  color: #d8c3b5;
  font-size: 12px;
  letter-spacing: 2px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  margin-left: 3rem;
}
.instagram__wrapper {
  width: 85%;
  margin: auto;
}
.categories,
.tags {
  padding: 5rem;
}
@media only screen and (max-width: 768px) {
  .categories,
  .tags {
    padding: 9rem 3rem;
  }
}
.categories__header,
.tags__header {
  text-align: center;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: clamp(2.5rem, 4vw, 3rem);
  font-family: 'Montserrat', sans-serif;
  color: #575a5c;
}
.categories__content,
.tags__content {
  display: flex;
  justify-content: center;
  margin: 4rem 0;
}
@media only screen and (max-width: 1366px) {
  .categories__content,
  .tags__content {
    flex-wrap: wrap;
  }
}
.categories__content-post,
.tags__content-post {
  width: 29%;
  position: relative;
  margin: 2rem;
}
@media only screen and (max-width: 1366px) {
  .categories__content-post,
  .tags__content-post {
    width: 40%;
  }
}
@media only screen and (max-width: 1024px) {
  .categories__content-post,
  .tags__content-post {
    width: 40%;
  }
}
@media only screen and (max-width: 768px) {
  .categories__content-post,
  .tags__content-post {
    width: 80%;
  }
}
@media only screen and (max-width: 576px) {
  .categories__content-post,
  .tags__content-post {
    width: 100%;
    margin: 1rem;
  }
}
.categories__content-text a,
.tags__content-text a {
  text-decoration: none;
}
.categories__content-text a:hover,
.tags__content-text a:hover {
  text-decoration: underline;
}
.categories__content-title,
.tags__content-title {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.3rem, 3.5vw, 2.25rem);
  line-height: clamp(1.6rem, 3.6vw, 2.55rem);
  color: #575a5c;
  font-weight: 500;
  max-width: 370px;
  height: 7rem;
  margin-top: 3rem;
}
.categories__content-title:hover,
.tags__content-title:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 1366px) {
  .categories__content-title,
  .tags__content-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    line-height: clamp(1.6rem, 3.6vw, 2.2rem);
  }
}
@media only screen and (max-width: 576px) {
  .categories__content-title,
  .tags__content-title {
    height: 6rem;
  }
}
.categories__content-largeImage,
.tags__content-largeImage {
  display: none;
}
.categories__content-smallImage,
.tags__content-smallImage {
  width: 80%;
  height: 430px;
  position: relative;
}
.categories__content-smallImage::after,
.tags__content-smallImage::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0px 0px 0px 0px #bccacd;
  transition: box-shadow 0.4s ease-out;
}
.categories__content-smallImage:hover::after,
.tags__content-smallImage:hover::after {
  box-shadow: inset 0px 0px 0px 10px #bccacd;
  transition: box-shadow 0.4s ease-out;
}
@media only screen and (max-width: 1024px) {
  .categories__content-smallImage,
  .tags__content-smallImage {
    width: 100%;
  }
}
.categories__content-smallImage img,
.tags__content-smallImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.categories__content-author,
.tags__content-author {
  position: relative;
  display: none;
}
.categories__content-authorImage,
.tags__content-authorImage {
  width: 80px;
  position: absolute;
  bottom: 13rem;
  left: 1rem;
}
@media only screen and (max-width: 576px) {
  .categories__content-authorImage,
  .tags__content-authorImage {
    bottom: 12rem;
  }
}
.categories__content-authorImage img,
.tags__content-authorImage img {
  width: 100%;
  border-radius: 50%;
}
.categories__content-authorName,
.tags__content-authorName {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #575a5c;
}
.search {
  max-width: 2000px;
  padding: 2rem;
}
@media only screen and (max-width: 1023px) {
  .search {
    padding-top: 10rem;
  }
}
.search__title {
  font-size: clamp(1.5rem, 3.5vw, 3.6rem);
  line-height: clamp(1.5rem, 3.5vw, 4rem);
  padding: 2rem;
  text-align: center;
}
.search__paragraph {
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  width: 50%;
  margin: auto;
}
.search__list a {
  text-decoration: none;
}
.search__list a:hover {
  text-decoration: underline;
}
article#post-0 {
  max-width: 500px;
  margin: auto;
  padding: 5rem 0;
}
h2.has-text-align-center.has-x-large-font-size {
  text-align: center;
  font-size: 3rem;
}
@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, 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');
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
/* 3D Effects */
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}
.mobileNav {
  display: none;
  background-color: white;
  position: relative;
  top: 3rem;
}
@media only screen and (max-width: 1023px) {
  .mobileNav {
    display: initial;
    position: fixed;
    z-index: 10;
    margin-top: -3rem;
    width: 100%;
  }
}
.mobileNav__header {
  margin: 2rem auto 0;
}
.mobileNav__logo {
  display: block;
  width: 65%;
  margin: 2rem 0 1.5rem 1rem;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .mobileNav__logo {
    margin-left: 2rem;
  }
}
.mobileNav__logo svg {
  width: 100%;
  max-width: 500px;
}
.mobileNav__btn {
  position: absolute;
  top: 2.2rem;
  right: 2rem;
}
.mobileNav__closeBtn {
  position: absolute;
  top: 3.8rem;
  right: 2rem;
}
.mobileNav__menuLogo {
  position: absolute;
  top: 3.8rem;
  left: 2rem;
  width: 65%;
  z-index: 15;
}
.mobileNav__menuLogo img {
  width: 100%;
  max-width: 500px;
  margin: auto;
}
.mobileNav a,
.mobileNav div {
  text-decoration: none;
  color: #626567;
  transition: color 0.3s ease;
  z-index: 15;
}
.mobileNav a:hover {
  cursor: pointer;
  text-decoration: underline;
}
.mobileNav__container {
  display: block;
  position: relative;
  top: 50px;
  left: 50px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}
.mobileNav__container-btnToggle {
  display: block;
  width: 80px;
  height: 80px;
  position: absolute;
  top: -9.5rem;
  left: 75%;
  cursor: pointer;
  opacity: 0;
  z-index: 15;
}
@media only screen and (max-width: 576px) {
  .mobileNav__container-btnToggle {
    left: 68%;
  }
}
@media only screen and (max-width: 375px) {
  .mobileNav__container-btnToggle {
    left: 60%;
  }
}
.mobileNav__menu {
  display: none;
  height: 65rem;
  background-color: white;
  text-align: center;
  position: absolute;
  width: 100%;
  margin: -100px 0 0 -50px;
  padding-top: 150px;
  list-style: none;
  top: -6.8rem;
}
.mobileNav__menu-list {
  list-style-type: none;
  text-align: left;
  padding-left: 4rem;
}
.mobileNav__menu-item {
  padding: 10px 0;
  font-size: 1.5rem;
  position: relative;
  margin: 1rem 0;
  font-family: 'Montserrat', sans-serif;
}
.mobileNav__menu-btn {
  margin: 5rem 0 2rem;
}
.mobileNav__submenu {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.5s;
  padding: 2rem;
  background-color: #e6e6e6;
  width: 15rem;
}
.mobileNav__submenu .page_item {
  list-style: none;
  position: relative;
  background: #e6e6e6;
  padding-left: 10px;
}
.mobileNav__submenu .page_item a {
  color: #626567;
  background: #e6e6e6;
  width: 100%;
  margin: auto;
}
@media only screen and (max-width: 1023px) {
  .mobileNav__submenu .page_item a {
    font-size: 1rem;
  }
}
.mobileNav__onclick-menu p {
  padding: 0 1rem 0 0;
  width: fit-content;
}
.mobileNav__onclick-menu p:active,
.mobileNav__onclick-menu p:hover {
  background-color: #e6e6e6;
}
@media only screen and (max-width: 1023px) {
  .mobileNav__onclick-menu p:active,
  .mobileNav__onclick-menu p:hover {
    background-color: white;
  }
}
.mobileNav__onclick-menu:focus .mobileNav__submenu {
  opacity: 1;
  visibility: visible;
  display: inherit;
  pointer-events: auto;
}
.mobileNav__getStarted {
  width: 160px;
  height: 49px;
  border: 2px #575a5c solid;
  text-align: center;
  padding: 0.5rem 1rem;
  color: #626567;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
}
.mobileNav__getStarted:hover {
  border: 2px #575a5c solid;
  background-color: #575a5c;
  color: white;
}
@media only screen and (max-width: 1023px) {
  .mobileNav__getStarted {
    padding: 1.1rem;
  }
}
.mobileNav__search {
  width: 157px;
}
.mobileNav__search img {
  width: 1rem;
}
.mobileNav__buttons-search-input {
  font-size: 1rem;
  width: 100%;
  height: 2rem;
  position: relative;
  border: 2px solid #575a5c;
  padding: 3px;
  background-image: url('/wp-content/uploads/2021/12/magnifier.png');
  background-position: calc(100% - 10px) 0;
  background-size: 1rem;
  background-position-y: 7px;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1023px) {
  .mobileNav__buttons-search-input {
    padding: 1.1rem;
  }
}
.mobileNav__buttons-search-icon {
  position: relative;
  bottom: 25px;
  right: -18px;
}
.visible {
  display: block;
  margin-bottom: 100px;
  z-index: 20;
  top: -10rem;
}
@media only screen and (max-width: 768px) {
  .visible {
    top: -11rem;
  }
}
@media only screen and (max-width: 576px) {
  .visible {
    top: -10rem;
  }
}
@media only screen and (max-width: 375px) {
  .visible {
    top: -9rem;
  }
}
.hide {
  display: none;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 95px;
  padding: 1rem 3rem;
  background-color: #fff;
  z-index: 10;
}
@media only screen and (max-width: 1366px) {
  .nav {
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 1023px) {
  .nav {
    display: none;
  }
}
.nav__logo {
  width: 350px;
}
@media only screen and (max-width: 1440px) {
  .nav__logo {
    display: none;
  }
}
.nav__logo svg {
  width: 100%;
}
.nav .hidden {
  display: none;
  width: 200px;
}
.nav .hidden img {
  width: 100%;
}
@media only screen and (max-width: 1440px) {
  .nav .hidden {
    display: block;
  }
}
.nav a,
.nav div {
  text-decoration: none;
  transition: color 0.3s ease;
  z-index: 15;
}
.nav__menu {
  display: flex;
  justify-content: center;
  color: #626567;
  list-style: none;
}
@media only screen and (max-width: 1023px) {
  .nav__menu {
    display: none;
  }
}
.nav__menu-item {
  position: relative;
  padding: 1rem 0;
}
.nav__menu-item a {
  font-size: 1rem;
  color: #626567;
  text-decoration: none;
  margin: 0 2.5rem;
  font-family: 'Montserrat', sans-serif;
}
@media only screen and (max-width: 1366px) {
  .nav__menu-item a {
    margin: 0 1rem;
  }
}
@media only screen and (max-width: 1023px) {
  .nav__menu-item a {
    margin: 0 0.5rem;
  }
}
.nav__menu-item span {
  font-size: 0.7rem;
  margin-left: 5px;
}
.nav__menu-item:hover {
  background-color: #e6e6e6;
}
.nav__menu-item:hover > ul {
  visibility: visible;
  opacity: 1;
  display: block;
}
.nav__submenu {
  list-style: none;
  visibility: hidden;
  transition: all 0.5s ease;
  left: 0;
  display: none;
  position: absolute;
  background-color: #e6e6e6;
  z-index: 10;
}
.nav__submenu .page_item {
  background-color: #e6e6e6;
  width: 14rem;
  cursor: pointer;
  padding: 10px 0;
  border-bottom: #dddddd solid 1px;
}
.nav__submenu .page_item:first-of-type {
  padding-top: 20px;
}
.nav__submenu .page_item:hover {
  background-color: #dddddd;
  cursor: pointer;
}
@media only screen and (max-width: 1024px) {
  .nav__submenu .page_item {
    width: 10rem;
  }
}
.nav__submenu .page_item a {
  text-decoration: none;
  margin: 1rem;
  padding-top: 0.5rem;
  font-weight: 500;
  padding-left: 0.5rem;
}
.nav__buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.nav__buttons-sepatator {
  font-size: 2rem;
  color: #d1d0cb;
  margin: 0 1rem;
  font-weight: 100;
}
.nav__buttons-search {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .nav__buttons-search {
    display: none;
  }
}
.nav__buttons-search img {
  width: 25px;
  vertical-align: text-top;
  cursor: pointer;
}
.nav__buttons-search-input {
  display: none;
  vertical-align: bottom;
  margin-left: 1rem;
  border: 3px #575a5c solid;
}
.nav__buttons-search-input:active,
.nav__buttons-searchinput:focus {
  border: 3px solid #575a5c;
}
.nav__buttons-search .active {
  display: inline-block;
  padding-left: 5px;
}
.nav__buttons-cancel {
  margin-left: 1rem;
  position: absolute;
  padding-right: 0.5rem;
  padding-bottom: 0.3rem;
  font-weight: bold;
  cursor: pointer;
  display: none;
}
.nav__buttons-cancel .active {
  display: inline-block;
}
.nav__get-started {
  width: 160px;
  height: 49px;
  border: 2px #575a5c solid;
  text-align: center;
  padding: 0.5rem 1rem;
  color: #626567;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
}
.nav__get-started:hover {
  border: 2px #575a5c solid;
  background-color: #575a5c;
  color: white;
}
.shrink {
  height: 70px;
  border-bottom: 1px solid #e6e6e6;
  position: sticky;
  top: 0;
  transition: all 0.4s ease-in-out;
}
body > .container.adminSignedIn .shrink {
  top: 32px;
}
.active {
  display: inline-block;
}
