@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700;800;900&display=swap");
/* Font and Border */
/* Colors */
* {
  font-family: "Figtree", sans-serif;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1 {
  font-size: 2.6em;
  font-weight: 700;
}

h2 {
  font-size: 2.2em;
  font-weight: 700;
}

h3 {
  font-size: 1.8em;
  font-weight: 500;
}

p, a {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.5;
  text-decoration: none;
}

a {
  color: #2590f4;
}

a:hover {
  color: #db545a;
}

strong {
  font-weight: 600;
}

li {
  list-style-type: none;
  cursor: pointer;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
header .menu-main-menu-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  background-color: #f2f2f2;
}
header .menu-main-menu-container .main-menu {
  max-width: 1200px;
  margin: 0;
  padding: 0;
  display: flex;
  width: 100%;
}
header .menu-main-menu-container .main-menu .menu-item {
  position: relative;
  width: 100%;
}
header .menu-main-menu-container .main-menu .menu-item a {
  display: block;
  padding: 0.5rem 1rem;
  color: #000000;
  white-space: nowrap;
  text-align: center;
}
header .menu-main-menu-container .main-menu .menu-item-has-children::after {
  content: "▾";
  display: inline-block;
  margin-left: 5px;
  font-size: 1.5em;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
header .menu-main-menu-container .main-menu .menu-item:hover {
  background-color: #e8e8e8;
}
header .menu-main-menu-container .main-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #e8e8e8;
  padding: 0;
  margin: 0;
  width: auto;
}
header .menu-main-menu-container .main-menu .sub-menu .menu-item {
  margin: 0;
  white-space: nowrap;
}
header .menu-main-menu-container .main-menu .sub-menu .menu-item:hover {
  background-color: #dedede;
}
header .menu-main-menu-container .main-menu .menu-item-has-children:hover > .sub-menu {
  display: block;
  width: 100%;
}
header .menu-main-menu-container .main-menu .menu-item-has-children:hover > .sub-menu .menu-item-has-children:hover .sub-menu {
  top: 0;
  left: 100%;
  background-color: #dedede;
}
header .menu-main-menu-container .main-menu .menu-item-has-children:hover > .sub-menu .menu-item-has-children:hover .sub-menu .menu-item:hover {
  background-color: lightgray;
}
header .menu-main-menu-container .main-menu .menu-item-has-children:hover > .sub-menu .menu-item-has-children::after {
  content: "▸";
}
header .menu-main-menu-container .main-menu .menu-item-has-children:last-child:hover > .sub-menu .menu-item-has-children:hover .sub-menu {
  top: 0;
  left: -100%;
}
header .menu-main-menu-container .main-menu .menu-item-has-children:last-child:hover > .sub-menu .menu-item-has-children::after {
  content: "";
}
header .menu-main-menu-container .main-menu .menu-item-has-children:last-child:hover > .sub-menu .menu-item-has-children::before {
  content: "◂";
  display: inline-block;
  margin-left: 5px;
  font-size: 1.5em;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}
header .menu-main-menu-container .main-menu .current-menu-item > a {
  color: #2590f4;
}

main {
  display: flex;
  justify-content: center;
  padding-top: 75px;
  padding-bottom: 25px;
  flex-grow: 1;
}
main .content-container {
  max-width: 1200px;
  width: 100%;
  padding: 0 15px;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background-color: #333333;
  padding: 15px;
  padding-bottom: 50px;
}
footer .contact-container {
  width: 33%;
  text-align: center;
}
footer .contact-container p {
  color: #ffffff;
  margin: 0;
}
footer .contact-container a {
  color: #ffffff;
  font-weight: 600;
}
footer .contact-container a:hover {
  color: #db545a;
}
footer .menu-header {
  width: 33%;
  text-align: center;
}
footer .menu-footer-menu-container {
  width: 33%;
  text-align: center;
}
footer .menu-footer-menu-container .footer-menu .menu-item a {
  color: #ffffff;
}
footer .menu-footer-menu-container .footer-menu .current-menu-item a {
  color: #2590f4;
}
footer .menu-footer-menu-container .footer-menu .menu-item:hover a {
  color: #db545a;
}

.post-container {
  background-color: #f2f2f2;
  padding: 15px;
  margin-bottom: 50px;
  border-radius: 15px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
}
.post-container .post-content {
  display: flex;
  flex-direction: row;
}
.post-container .post-content .post-thumbnail {
  margin-left: 25px;
}
.post-container .post-content .post-thumbnail img {
  width: 200px;
  height: auto;
}
.post-container .post-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.post-container .post-footer p {
  width: 200px;
  text-align: center;
  margin: 0;
}

.primary-btn {
  background-color: #2590f4;
  border-radius: 10px;
  padding: 7px 12px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1em;
}

.primary-btn:hover {
  background-color: #0a69c3;
  color: #ffffff;
}

@media screen and (max-width: 1024px) {
  header .menu-main-menu-container .main-menu .menu-item {
    display: none;
  }
  footer .contact-container {
    display: none;
  }
  footer .menu-header {
    display: none;
  }
  footer .menu-footer-menu-container {
    width: 100%;
  }
}/*# sourceMappingURL=main.css.map */