@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Lato, sans-serif;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
}

body {
  scrollbar-width: none;
}

nav {
  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;
  background: #ffffff;
  height: 5rem;
  padding-inline: 10px;
  position: sticky;
  top: 0;
  z-index: 10;
}
@media (min-width: 400px) {
  nav {
    padding-inline: 20px;
  }
}
nav .nav-left-side,
nav .nav-right-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
nav .nav-right-side-desktop {
  display: none;
}
nav .logo {
  width: auto;
  height: 35px;
}
nav .get-in-touch-btn {
  text-decoration: none;
  height: 35px;
}
nav .nav-hamburger {
  margin-left: 10px;
  font-size: 34px;
  color: #505050;
}
nav .nav-mobile-menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  background-color: #ffffff;
  border-bottom: 1px solid #808080;
  padding: 0 16px 16px 16px;
  position: absolute;
  top: 77px;
  left: 0;
  width: 100%;
}
nav .nav-mobile-menu a {
  text-decoration: none;
  color: #505050;
  font-size: 20px;
}
@media (min-width: 768px) {
  nav {
    height: 100px;
    padding: 20px 50px;
  }
  nav .logo {
    height: 50px;
  }
  nav .nav-right-side {
    display: none;
  }
  nav .nav-right-side-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4rem;
  }
  nav .nav-right-side-desktop .nav-item,
  nav .nav-right-side-desktop .nav-item-yoga {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5rem;
    font-size: 18px;
    color: #505050;
    cursor: pointer;
    text-decoration: none;
    position: relative;
  }
  nav .nav-right-side-desktop .nav-item .dropdown-icon,
  nav .nav-right-side-desktop .nav-item-yoga .dropdown-icon {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  nav .nav-right-side-desktop .nav-item:hover,
  nav .nav-right-side-desktop .nav-item-yoga:hover {
    border-bottom: 1px solid #505050;
  }
  nav .nav-right-side-desktop .nav-item-yoga:hover {
    border-bottom: none;
  }
  nav .nav-right-side-desktop #nav-partner-hover-div {
    display: none;
    position: absolute;
    left: -50%;
    bottom: -5.2rem;
    background: #ffffff;
    width: 300px;
    z-index: 2;
    border-radius: 5px;
    padding: 1rem;
    gap: 0.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.1);
            box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.1);
  }
  nav .nav-right-side-desktop #nav-partner-hover-div a {
    text-decoration: none;
    color: #505050;
  }
  nav .nav-right-side-desktop #nav-partner-hover-div a:hover {
    text-decoration: underline;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
  }
}
@media (min-width: 1024px) {
  nav {
    padding-inline: 100px;
  }
}

.outline-btn,
.outline-btn-green {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
  border: 1px solid #ebad0d;
  background: #fff;
  color: #ebad0d;
  padding: 0 0.9rem;
  height: 2rem;
  cursor: pointer;
}
.outline-btn:active,
.outline-btn-green:active {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.outline-btn-green {
  border: 1px solid #3a9693;
  color: #3a9693;
}

.solid-btn,
.solid-btn-green {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
  background: #ebad0d;
  color: #505050;
  padding: 0 0.9rem;
  font-size: 1.25rem;
  height: 2rem;
  border: none;
  outline: none;
  cursor: pointer;
}
.solid-btn:active,
.solid-btn-green:active {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.solid-btn-green {
  border-radius: 25px;
  background: #3a9693;
  color: #ffffff;
  padding: 0 40px;
  font-size: 1.5rem;
  font-weight: 500;
  height: 60px;
}

.underlined-heading {
  color: #d48d8a;
  font-size: calc(1.5rem + 0.375vw);
  position: relative;
}
.underlined-heading:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 150px;
  height: 2px;
  background: #afafaf;
  z-index: 2;
}

.underlined-heading-yoga {
  color: #505050;
  font-size: calc(1.5rem + 0.375vw);
  position: relative;
}
.underlined-heading-yoga:after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 100%;
  max-width: 150px;
  height: 2px;
  background: #2497d8;
  z-index: 2;
}

.input {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  border: 1px solid #00b386;
  background: #fff;
  padding: 8px 10px;
  font-size: 1.25rem;
  color: #00b386;
  outline: none;
  font-family: Montserrat, sans-serif;
}

.normal-input {
  border-radius: 3px;
  border: 0.5px solid #d9d9d9;
  background: #ffffff;
  font-size: 20px;
  font-family: Montserrat, sans-serif;
  color: #333333;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
}
.normal-input:focus {
  border: 1px solid #d48d8a;
  outline: none;
}

.custom-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
}

.custom-checkbox input[type=checkbox] {
  display: none;
}

.custom-checkbox .custom-checkmark {
  width: 20px;
  height: 20px;
  border: 1px solid #898989;
  background-color: #fff;
  border-radius: 3px;
}

.custom-checkbox input[type=checkbox]:checked + .custom-checkmark {
  border: 1px solid #d48d8a;
  background-color: #d48d8a;
  position: relative;
}
.custom-checkbox input[type=checkbox]:checked + .custom-checkmark:after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #ffffff;
}

#contact-us-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #4f6137;
  padding: 58px 34px;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  #contact-us-section {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
    padding-bottom: 30px;
  }
}
#contact-us-section .footer-text {
  margin-top: 2rem;
  text-align: center;
  color: rgba(238, 238, 238, 0.93);
  font-weight: 300;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  font-size: 12px;
}
@media (min-width: 768px) {
  #contact-us-section .footer-text {
    margin-top: 0;
  }
}
#contact-us-section .newsletter {
  max-width: 338px;
  font-weight: 600;
}
@media (min-width: 768px) {
  #contact-us-section .newsletter {
    margin: 45px 54px;
  }
}
#contact-us-section .newsletter h4 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 20px;
}
#contact-us-section .newsletter p {
  color: #ebad0d;
  margin-bottom: 34px;
}
#contact-us-section .newsletter form {
  margin-bottom: 34px;
}
#contact-us-section .newsletter form input {
  width: 208px;
  padding-bottom: 11px;
  margin-bottom: 14px;
  background-color: transparent;
  outline: none;
  border: none;
  border-bottom: 1px solid #ffffff;
  color: #d9d9d9;
  font-weight: 600;
}
@media (min-width: 768px) {
  #contact-us-section .newsletter form input {
    width: 254px;
    margin-bottom: 21px;
    font-size: 20px;
  }
}
#contact-us-section .newsletter form .google-captcha {
  margin-top: 1rem;
  margin-bottom: 2rem;
  width: 100%;
}
#contact-us-section .newsletter form .google-captcha .error-message {
  color: red;
  margin-top: 10px;
}
#contact-us-section .newsletter form button {
  width: 125px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffffff;
  border: 1px solid #d9e7cb;
  border-radius: 50px;
  color: #4f6137;
  font-weight: 600;
  cursor: pointer;
}
#contact-us-section .newsletter form button:active {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
@media (min-width: 768px) {
  #contact-us-section .newsletter form button {
    width: 188px;
    height: 45px;
    font-size: 18px;
  }
}
#contact-us-section .policies {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}
#contact-us-section .policies a {
  cursor: pointer;
  color: #d9e7cb;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
}
@media (min-width: 768px) {
  #contact-us-section .policies {
    margin-top: 45px;
  }
}
#contact-us-section .img-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#contact-us-section .img-div img {
  display: none;
}
@media (min-width: 1024px) {
  #contact-us-section .img-div img {
    display: block;
    width: 100%;
    height: 300px;
  }
}
@media (min-width: 1200px) {
  #contact-us-section .img-div img {
    height: 434px;
  }
}

body {
  color: #505050;
}

.nav-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.nav-icon a {
  padding: 5px 5px;
  margin-left: 5px;
  color: #3a9693;
}
.nav-icon a span {
  width: 40px;
  height: 40px;
}
.nav-icon a svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 0;
}

h1 {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 800;
}

h2 {
  font-size: 1.75rem;
  line-height: 1.3;
  font-weight: 700;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 800;
}

h4 {
  font-size: 1.25rem;
  line-height: 1.4;
}

p {
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  p {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1rem;
  }
  h4 {
    font-size: 1rem;
  }
  p {
    font-size: 1rem;
  }
}
@media (max-width: 385px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1rem;
  }
  h4 {
    font-size: 1rem;
  }
  p {
    font-size: 1rem;
  }
}
main {
  margin: 0 auto;
}
@media (min-width: 480px) {
  main {
    max-width: calc(100% - 40px);
  }
}
@media (min-width: 768px) {
  main {
    max-width: calc(100% - 100px);
  }
}
@media (min-width: 1024px) {
  main {
    max-width: 1280px;
  }
}

.heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.main-heading {
  margin-bottom: 24px;
}

.main-meta {
  padding: 20px 0 0 0;
  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;
}

.post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.post-meta svg {
  margin: 0 6px 2px 0;
  color: #666666;
}
.post-meta span {
  color: #666666;
}

.share-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.share-icon .icon {
  height: 35px;
  width: 35px;
  text-align: center;
  border: 1px solid #808080;
  border-radius: 50%;
  -webkit-filter: grayscale(80%);
          filter: grayscale(80%);
}
.share-icon .icon a {
  text-decoration: none;
}
.share-icon .icon svg {
  margin-top: 5px;
  height: 20px;
  width: 20px;
}
.share-icon .icon:hover {
  -webkit-filter: grayscale(10%);
          filter: grayscale(10%);
  cursor: pointer;
  background-color: #eeeeee;
}

.layout {
  padding: 0 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 3rem;
}

.post-content {
  max-width: 750px;
  width: auto;
  overflow: auto;
}
.post-content .subtitle-above p {
  color: #666666;
  line-height: 1.3rem;
  font-style: italic;
}

.img-container {
  width: 100%;
  max-width: 800px;
  height: auto;
  padding: 20px 0;
}
.img-container img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-heading h2 {
  margin: 10px 0;
}
@media (min-width: 480px) {
  .section-heading h2 {
    margin: 20px 0;
  }
}

.subtitle-below,
.post-section {
  padding: 10px 0;
}
.subtitle-below h2,
.post-section h2 {
  font-weight: 500;
  margin: 10px 0;
}
.subtitle-below h3,
.post-section h3 {
  margin: 10px 0;
}
.subtitle-below h4,
.post-section h4 {
  color: #666666;
}
.subtitle-below p,
.post-section p {
  text-align: justify;
}
.subtitle-below a,
.post-section a {
  cursor: pointer;
  text-decoration: none;
  color: #171b39;
  font-weight: bold;
}
.subtitle-below figure.image,
.post-section figure.image {
  width: 100% !important;
  max-width: 800px;
  height: auto;
  padding: 20px 0;
  text-align: center;
}
.subtitle-below figure.image img,
.post-section figure.image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.subtitle-below figure.image figcaption,
.post-section figure.image figcaption {
  text-align: center;
}
.subtitle-below figure.media oembed,
.post-section figure.media oembed {
  display: block;
  height: 300px;
  width: 100%;
}
.subtitle-below figure.media iframe,
.subtitle-below figure.media video,
.post-section figure.media iframe,
.post-section figure.media video {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: auto 3/2;
}
.subtitle-below blockquote,
.post-section blockquote {
  padding: 10px 0;
  font-style: italic;
  margin: 20px 0;
  padding: 10px 20px;
  border-left: 5px solid #ccc;
  background: #f9f9f9;
}
.subtitle-below ol,
.subtitle-below ul,
.post-section ol,
.post-section ul {
  padding-left: 30px;
}
.subtitle-below ol li,
.subtitle-below ul li,
.post-section ol li,
.post-section ul li {
  padding: 5px 0;
}
.subtitle-below figure.table,
.post-section figure.table {
  float: none !important;
  width: 100%;
  margin: 0;
}
.subtitle-below figure.table table,
.post-section figure.table table {
  width: 100%;
  table-layout: auto;
  border-collapse: collapse;
  border: 1px solid #808080 !important;
}
.subtitle-below figure.table th,
.subtitle-below figure.table td,
.post-section figure.table th,
.post-section figure.table td {
  padding: 8px;
  text-align: center;
  border: 1px solid #808080 !important;
}
.subtitle-below figure.table figcaption,
.post-section figure.table figcaption {
  margin: 5px 0 0 0;
  text-align: center;
}

.table-content,
.related-content {
  border: 1px solid #808080;
  padding: 15px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.table-content h3,
.related-content h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
}
.table-content ul,
.related-content ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.table-content ul li,
.related-content ul li {
  margin-bottom: 10px;
}
.table-content ul li a,
.related-content ul li a {
  text-decoration: none;
  color: #505050;
}
.table-content ul li a:hover,
.related-content ul li a:hover {
  text-decoration: underline;
}
.table-content .table,
.related-content .table {
  list-style-type: decimal;
}
.table-content .table li,
.related-content .table li {
  margin-left: 15px;
}

.related-content {
  margin-top: 50px;
}

.collapsible-container {
  width: 100%;
  margin: 0 auto;
}

.collapsible {
  background-color: #fff;
  color: #505050;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  border: 1px solid #808080;
  text-align: left;
  outline: none;
  font-size: 16px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  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;
}
.collapsible:hover {
  background-color: #f2f2f2;
}
.collapsible span {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.collapsible.active span {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.content {
  padding: 0 10px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease, padding 0.3s ease;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.content p {
  margin: 10px 0;
}

.collapsible.active + .content {
  padding: 10px;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content; /* Adjust this value based on the content height */
  border: 1px solid #808080;
}

#reference {
  list-style-type: decimal;
}
#reference li {
  margin-left: 20px;
  margin-bottom: 15px;
}
#reference li a {
  text-decoration: none;
  cursor: pointer;
  color: #d48d8a;
}

.post-widget {
  width: 100%;
  max-width: 380px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.post-widget .post-list {
  border: 1px solid #808080;
  border-radius: 8px;
  padding: 15px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.post-widget .post-list h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
}
.post-widget .post-list ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.post-widget .post-list ul li {
  margin-bottom: 10px;
}
.post-widget .post-list ul li a {
  text-decoration: none;
  color: #505050;
}
.post-widget .post-list ul li a:hover {
  text-decoration: underline;
}
.post-widget .post-list .table {
  list-style-type: decimal;
}
.post-widget .post-list .table li {
  margin-left: 15px;
}

.nav-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3rem;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #505050;
  z-index: 1000;
  border-top: 1px solid #eeeeee;
  padding: 10px;
}
.nav-bottom .CTA span {
  padding: 0 5px;
}
.nav-bottom .CTA span a {
  height: 25px;
  padding: 0.5rem 0.5rem;
  border-radius: 40px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid #3a9693;
}
.nav-bottom .CTA span a:hover {
  background-color: #d48d8a;
  color: #ffffff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (max-width: 480px) {
  .nav-bottom {
    height: 4rem;
  }
  .nav-bottom .CTA {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav-bottom .CTA span:nth-child(odd) {
    margin: 5px 0;
  }
  .nav-bottom .CTA span:nth-child(even) {
    margin: 10px 0 20px 0;
  }
}

.post-tag {
  margin: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 5px;
}
.post-tag span {
  margin-right: 10px;
}
.post-tag a {
  text-transform: capitalize;
  color: #505050;
  text-decoration: none;
  cursor: pointer;
  padding: 6px;
  margin-right: 7px;
  border-radius: 5px;
  font-size: 0.8rem;
  background-color: #eeeeee;
}