@charset "UTF-8";
:root {
  --white: #eeeee6;
  --gray: #3a3a3a;
  --background-gray: #eeeee6;
  --background-green: #427166;
}

body {
  background-color: var(--background-gray);
  color: var(--gray);
  font-family: merlo_neue_round;
  font-size: 18px;
}

h1, h2, h3, h4 {
  font-family: merlo_neue_round;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  font-weight: 700;
  font-size: 35px;
  letter-spacing: -2px;
  line-height: 1.2em;
}

h2 {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 2px;
}

h3 {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -1px;
  line-height: 1.2em;
  margin-bottom: 10px;
}

h4 {
  font-size: 24px;
  font-weight: 700;
}

small {
  font-size: 12px;
  font-family: 'merlo_neue_round';
  letter-spacing: 3px;
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .container {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 100%;
  }
}

@media (min-width: 640px) {
  .container {
    max-width: 100%;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

@media screen and (min-width: 768px) {
  h1 {
    font-size: 35px;
  }
  h2 {
    font-size: 35px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 20px;
  }
}

@media screen and (min-width: 1024px) {
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 50px;
  }
  h3 {
    font-size: 26px;
  }
  h4 {
    font-size: 20px;
  }
}

/**** overlay ***/
.overlay {
  top: 200px;
  left: 0;
  height: 100vh;
  min-height: 400px;
  position: absolute;
  width: 100%;
  background-color: var(--background-green);
  top: 0;
  color: var(--white);
  z-index: 20;
}

.overlay h4 {
  margin-bottom: 20px;
}

.overlay .feature-links-container ul svg {
  width: 30px;
  height: 30px;
}

.overlay .mobile-menu-toggle .close {
  font-size: 60px;
}

.overlay .close-menu svg {
  height: 20px;
  width: 20px;
  margin-left: 30px;
}

.overlay .action-button {
  position: absolute;
  -webkit-transform: rotate(90deg);
  text-transform: uppercase;
  top: 300px;
  left: 0;
}

.bottom-center .overlay .action-button {
  -webkit-transform: rotate(0);
}

.overlay .social-media-links {
  width: 300px;
  margin: 20px auto 0 auto;
}

.overlay .social-media-links a {
  font-size: 12px;
  letter-spacing: 5px;
  margin-bottom: 20px;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .overlay .social-media-links {
    width: 500px;
    margin: 20px auto 0 auto;
  }
}

/**** header ***/
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  z-index: 10;
  width: 100%;
  background-color: var(--background-gray);
  -webkit-box-shadow: 0 4px 30px -3px #bbb;
  box-shadow: 0 4px 30px -3px #bbb;
}

header .title-container span {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
}

header .title-container strong {
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 3px;
}

header .icon_mm_toggle::before {
  font-size: 45px;
}

header .links-container a {
  font-family: merlo_neue_round;
  font-size: 12px;
}

.overlay header .links-container a {
  border-bottom-color: var(--white);
}

header .menu-container .link-border {
  text-transform: uppercase;
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  header {
    padding: 20px 0;
  }
  header .title-container span {
    font-size: 20px;
  }
  header .title-container strong {
    font-size: 30px;
    letter-spacing: 5px;
  }
  header .menu-text {
    position: relative;
    top: -12px;
    left: -30px;
  }
}

@media screen and (min-width: 1024px) {
  header {
    padding: 20px 0;
  }
  .title-container h2 {
    font-size: 36px;
    letter-spacing: 5px;
  }
  .action-button-left {
    left: -10px;
    position: fixed;
    z-index: 10;
  }
  .action-button-right {
    right: -10px;
    position: fixed;
    z-index: 10;
  }
}

.site-content {
  position: relative;
  z-index: 0;
  padding: 80px 0 0;
}

@media screen and (min-width: 768px) {
  .site-content {
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .site-content {
    overflow: hidden;
  }
}

.action-button-right {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  height: 100%;
  right: -20px;
  z-index: 10;
}

.action-button-right a {
  -webkit-transform: rotate(-90deg);
}

.single-post .action-button-right {
  border: 1px solid #000;
  display: none;
}

.action-button-left {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  top: 0;
  left: -10px;
}

.action-button-left a {
  -webkit-transform: rotate(90deg);
}

.blog-post-tools-container {
  position: fixed;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  top: 0;
  left: -10px;
  z-index: 10;
}

.blog-post-tools-container a {
  -webkit-transform: rotate(90deg);
}

a {
  font-family: merlo_neue_round;
  letter-spacing: 2px;
}

button:focus, a:focus, input:focus {
  outline: none;
}

/**** hero section ****/
.hero-section h1 {
  margin-bottom: 1.5rem;
}

.hero-section p {
  margin-bottom: 40px;
}

.hero-section .image-container {
  display: block;
  margin-bottom: 8px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 75%;
}

.hero-section .featured-container {
  margin-top: 20px;
  margin-bottom: 50px;
}

.hero-section .featured-container a {
  letter-spacing: 2px;
  font-size: 12px;
}

.hero-section .category-name {
  color: #396a5f;
  position: absolute;
  background-color: #ECECE9;
  padding: 5px 20px;
  border-radius: 4px;
  border: 1px solid #396a5f;
  font-size: 12px;
  letter-spacing: 0;
}

@media screen and (min-width: 768px) {
  .hero-section {
    padding-top: 120px;
  }
  .hero-section .featured-container {
    margin-right: -20px;
    margin-bottom: 0;
  }
  .hero-section .featured-content-container {
    padding-right: 50px;
  }
}

@media screen and (min-width: 1024px) {
  .hero-section {
    padding-top: 120px;
  }
  .hero-section .featured-container {
    margin-right: -20px;
  }
}

/*** blog **/
article {
  padding-top: 80px;
}

article .post-thumbnail {
  margin-bottom: 30px;
  position: relative;
  width: 95%;
}

article h1 {
  margin-bottom: 40px;
}

article h2 {
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

article h3 {
  margin-bottom: 1rem;
  letter-spacing: 0;
}

article h4 {
  margin-bottom: 1rem;
}

article small {
  display: block;
  margin-bottom: 12px;
}

article p {
  margin-bottom: 20px;
}

article blockquote::before {
  content: open-quote;
  position: absolute;
  font-size: 38px;
  margin-top: -7px;
}

article blockquote::after {
  content: close-quote;
  position: absolute;
  font-size: 38px;
}

article blockquote {
  quotes: "“" "”" "‘" "’";
  margin-bottom: 3rem;
  margin-top: 3rem;
}

article blockquote p {
  padding: 0 10px;
  margin: 0;
  display: inline;
  font-size: 38px;
  line-height: 1.2em;
  font-weight: bold;
  font-family: merlo_neue_round;
}

article img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 15px;
  -webkit-box-shadow: 5px 10px 30px -8px #bbbbbb;
  box-shadow: 5px 10px 30px -8px #bbbbbb;
}

article ul {
  list-style-type: disc;
  font-size: 10px;
  padding: 20px 0 30px 50px;
}

article ul li {
  font-size: 18px;
  padding-bottom: 5px;
  padding-left: 10px;
}

article .entry-content img {
  border-radius: 15px;
  -webkit-box-shadow: 5px 10px 30px -8px #bbbbbb;
  box-shadow: 5px 10px 30px -8px #bbbbbb;
}

article .entry-content a {
  letter-spacing: 0;
}

article .preview-container a {
  letter-spacing: 0;
}

@media screen and (min-width: 768px) {
  article .article-top-section {
    padding-top: 120px;
  }
  article .post-thumbnail {
    width: 100%;
    height: auto !important;
  }
  article .entry-content {
    width: 50%;
    margin: 0 auto;
  }
  article h2 {
    font-size: 22px;
  }
  article h3 {
    font-size: 18px;
  }
}

.post-navigation {
  display: none;
}

.mobile-most-popular .post-container {
  padding-right: 1rem;
}

.mobile-most-popular .owl-nav {
  display: none;
}

@media screen and (min-width: 768px) {
  .mobile-most-popular {
    display: none !important;
  }
}

/*** footer ***/
footer {
  min-height: 300px;
  position: relative;
  z-index: 1;
  padding: 30px 0 0;
}

footer .social-media-container {
  min-width: 400px;
}

/*** Latest container ****/
section h2 {
  border-bottom: 2px solid var(--gray);
  text-transform: capitalize;
  font-size: 36px;
  letter-spacing: -1px;
}

@media screen and (min-width: 768px) {
  section h2 {
    font-size: 48px;
  }
}

@media screen and (min-width: 1024px) {
  section h2 {
    font-size: 58px;
  }
}

/*** Single Post Page ****/
.single-post .site-content {
  padding-top: 0;
}

.single-post .site-content .post-attribute-container {
  position: relative;
  right: -1rem;
}

.single-post .site-content .featured-container .image-container {
  display: block;
  margin-bottom: 8px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 95%;
}

.single-post .entry-content a {
  color: #297D6B;
}

.single-post .entry-content a:hover {
  border-bottom: 1px solid #297D6B;
}

@media screen and (min-width: 768px) {
  .single-post .article-top-section {
    padding-top: 0;
  }
  .single-post .site-content {
    padding-top: 0 !important;
  }
  .single-post .site-content .post-attribute-container {
    position: relative;
    right: -2rem;
  }
}

@media screen and (min-width: 1024px) {
  .single-post .article-top-section {
    padding-top: 0;
  }
  .single-post .site-content {
    padding-top: 0 !important;
  }
  .single-post .site-content .post-attribute-container {
    position: relative;
    right: -3rem;
  }
}

/**** Category Page ****/
.page-template-category-page .category-name {
  display: none;
}

/*** MISC ****/
.site-name {
  font-family: merlo_neue_round;
}

.site-name span {
  font-size: 14px;
  font-weight: bold;
  display: block;
}

.site-name strong {
  font-size: 26px;
  letter-spacing: 6px;
}

/*** .subscribe section ****/
.search-results header {
  position: relative;
}

.search-results article:nth-child(odd) {
  padding-right: 0.5rem;
}

.search-results article:nth-child(even) {
  padding-left: 0.5rem;
}

@media screen and (min-width: 768px) {
  .search-results article:nth-child(odd) {
    padding-right: 0;
  }
  .search-results article:nth-child(even) {
    padding-left: 0;
  }
  .search-results article:nth-child(2n+2) {
    padding-right: 0.5rem;
  }
  .search-results article:nth-child(2n+3) {
    padding-left: 0.5rem;
  }
}

.search-form .search-field {
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  padding: 5px 0;
  background-color: var(--background-green);
  border-bottom: 2px solid var(--white);
}

.search-form .search-field:focus {
  outline: none;
}

.search-form .search-field::-webkit-input-placeholder {
  color: var(--white);
}

.search-form .search-field:-ms-input-placeholder {
  color: var(--white);
}

.search-form .search-field::-ms-input-placeholder {
  color: var(--white);
}

.search-form .search-field::placeholder {
  color: var(--white);
}

.search-form .search-field::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--white);
}

.search-form .search-submit {
  display: none;
}

.search-form label {
  display: none;
}

.search-tools li {
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .site-name {
    margin-top: 12px;
    font-weight: 700;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 5px;
  }
  .site-name span {
    font-size: 18px;
    font-weight: 700;
  }
}

.link-border:after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 0;
  border-bottom: 2px solid var(--gray);
  -webkit-transition: .2s;
  transition: .2s;
  margin: 0 auto;
}

.overlay .link-border:after {
  border-bottom: 2px solid var(--white);
}

.link-border:hover:after {
  width: calc(100% - 8px);
}

.roundedCorner {
  border-radius: 15px;
  -webkit-box-shadow: 5px 10px 30px -8px #bbb;
  box-shadow: 5px 10px 30px -8px #bbb;
}

.site-footer {
  -webkit-box-shadow: 0 4px 10px 5px #bbb;
  box-shadow: 0 4px 10px 5px #bbb;
  min-height: 100px;
}

.blog-container {
  position: relative;
}

.blog-container .category-name {
  color: #396a5f;
  position: absolute;
  background-color: #ECECE9;
  padding: 5px 20px;
  border-radius: 5px;
  border: 1px solid #396a5f;
  font-size: 12px;
  letter-spacing: 0;
}

.blog-container .image-container {
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 75%;
}

.other-blog-list .blog-container .image-container {
  padding-top: 95%;
}

.blog-horizontal-list-container {
  padding-left: 0 !important;
  margin-bottom: 1rem;
}

.blog-horizontal-list-container .post-container .blog-container .image-container {
  padding-top: 95%;
  height: 0;
}

.blog-horizontal-list-container .category-name {
  display: none;
}

.blog-horizontal-list-container .slick-disabled {
  display: none !important;
}

.blog-horizontal-list-container .owl-nav {
  display: none;
  position: absolute;
  width: 100%;
  top: 25%;
}

.blog-horizontal-list-container .owl-nav .owl-prev {
  position: absolute;
  top: 0;
  left: 10px;
}

.blog-horizontal-list-container .owl-nav .owl-next {
  position: absolute;
  top: 0;
  right: 10px;
}

@media screen and (min-width: 768px) {
  .blog-horizontal-list-container .owl-nav {
    display: block;
  }
}

a:hover .image-container {
  -webkit-box-shadow: 5px 10px 30px -5px #aaa;
  box-shadow: 5px 10px 30px -5px #aaa;
}

.post-category:last-of-type {
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .post-category:last-of-type {
    margin-bottom: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .post-category:last-of-type {
    margin-bottom: 3rem;
  }
}

.mobile-list .other-blog-list .post-container:nth-child(odd) {
  padding-right: 0.5rem;
}

.mobile-list .other-blog-list .post-container:nth-child(even) {
  padding-left: 0.5rem;
}

@media screen and (min-width: 768px) {
  .other-blog-list .post-container:nth-child(odd) {
    padding-right: 0.5rem;
  }
  .other-blog-list .post-container:nth-child(even) {
    padding-left: 0.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .blog-container .image-container {
    display: block;
    background-size: cover;
    padding-top: 75%;
  }
}

/*** .subscribe section ****/
.subscribe-container {
  min-height: 300px;
}

.subscribe-container small {
  display: block;
}

.subscribe-container h3 {
  font-weight: 700;
  font-size: 35px;
  letter-spacing: -2px;
  line-height: 1.2em;
  display: block;
}

.subscribe-container p {
  display: block;
}

.subscribe-container .subscribe-form-container {
  position: relative;
  width: 350px;
}

.subscribe-container .subscribe-form-container .subscribe {
  position: absolute;
  padding: 15px 60px 15px 15px;
  border: 2px solid #4e4e4d;
  width: 100%;
  background-color: var(--background-gray);
  left: 0;
  right: 0;
  margin: 0 auto;
}

.subscribe-container .subscribe-form-container .submit-button {
  position: absolute;
  top: 25px;
  right: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.subscribe-container .subscribe-form-container .submit-button:hover {
  right: 10px;
}

@media screen and (min-width: 768px) {
  .subscribe-container h3 {
    font-size: 48;
  }
  .subscribe-container .subscribe-form-container .subscribe {
    max-width: 400px;
  }
  .subscribe-container .subscribe-form-container .submit-button {
    right: 20px;
  }
  .subscribe-container .subscribe-form-container .submit-button:hover {
    right: 10px;
  }
  .primary-post-container .subscribe-container .subscribe-form-container {
    width: 100%;
    max-width: 400px;
  }
}

@media screen and (min-width: 1024px) {
  .subscribe-container h3 {
    font-size: 58px;
    line-height: 1.2em;
  }
}

@media screen and (min-width: 1024px) {
  .single-post .blog-post-tools-container {
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .single-post .search-button {
    display: none;
  }
}

.avatar {
  max-width: 60px;
  margin-right: 20px;
  border-radius: 50%;
}

.user-container {
  margin-bottom: 50px;
}

.go-back-to-top {
  margin-left: -6px;
}

#bitnami-banner {
  display: none !important;
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.go-back-to-top:hover {
  cursor: pointer;
  -webkit-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
}

.slick-track {
  margin-left: 0;
  margin-right: 0;
}

.error {
  color: #f65a5f;
}

.form-error-container {
  position: relative;
  top: 70px;
}

.slick-custom-previous {
  position: absolute;
  z-index: 20;
  height: 100%;
  left: 0;
  top: 0;
}

.slick-custom-next {
  position: absolute;
  z-index: 20;
  height: 100%;
  right: 0;
  top: 0;
}

.owl-stage {
  margin-left: -50px;
}

.prev-slide {
  background-image: url("../images/LeftCarrouselArrow.svg");
  width: 50px;
  height: 50px;
  background-size: cover;
}

.next-slide {
  background-image: url("../images/RightCarrouselArrow.svg");
  width: 50px;
  height: 50px;
  background-size: cover;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: none;
}

.owl-dots {
  display: none;
}

.screen-reader-text, .nav-links {
  text-align: center;
}

.search article h3 {
  font-size: 26px;
}

.nav-links {
  text-align: center;
  width: 680px;
  position: relative;
  margin: 0 auto 2rem;
}

.nav-links .prev {
  position: absolute;
  left: 0;
}

.nav-links .prev .nav-prev-text {
  position: absolute;
  width: 150px;
  top: 0;
}

.nav-links .next {
  position: absolute;
  right: 0;
}

.nav-links .next .nav-next-text {
  position: absolute;
  width: 150px;
  top: 0;
  right: 9px;
}

.post-inner-container {
  position: -webkit-sticky;
  position: sticky;
  top: 160px;
}

.single-post article h2 {
  font-size: 30px;
}

#svgContainer {
  overflow: hidden;
  border-radius: 10px;
}
/*# sourceMappingURL=style.css.map */