@font-face {
  font-family: Montserrat;
  src: url("../fonts/montserrat/static/Montserrat-Regular.ttf");
  font-weight: 500;
}
@font-face {
  font-family: Montserrat;
  src: url("../fonts/montserrat/static/Montserrat-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Bold.ttf") format("truetype");
  font-weight: bold;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Bold.ttf") format("truetype");
}
h1, h2, h3 {
  font-family: "Roboto", sans-serif;
}

h1 {
  margin-top: 0;
}

h2, h3 {
  margin: 0;
}

body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Helvetica, sans-serif;
  max-width: 100%;
  overflow-x: hidden;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 950px) {
  .site-wrapper {
    max-width: 100%;
    overflow: hidden;
  }
}
.site-wrapper header {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 2vh;
}
.site-wrapper header .top-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7vw;
  width: 100%;
  max-height: 100px; /* Set max height for the top bar */
}
@media only screen and (max-width: 950px) {
  .site-wrapper header .top-bar {
    display: none;
  }
}
.site-wrapper header .top-bar .site-logo {
  display: flex;
}
.site-wrapper header .top-bar .site-logo img {
  object-fit: contain;
  height: 100%;
  max-height: 105px;
}
.site-wrapper header .top-bar .top-section {
  width: 100%;
}
.site-wrapper header .top-bar .top-section .top-banner {
  display: flex;
}
.site-wrapper header .top-bar .top-section .top-banner img {
  object-fit: cover;
  width: 100%;
  max-height: 100%; /* Ensure the image does not exceed 100px */
}
@media only screen and (max-width: 950px) {
  .site-wrapper header .top-bar .top-section .top-banner {
    display: none;
  }
}
.site-wrapper header .top-bar .widget {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 300px;
  height: 100%; /* Adjust to fit within the top-bar */
}
.site-wrapper header .top-bar .widget .date-string {
  font-weight: 500;
  font-size: 17px;
  text-align: right;
}
.site-wrapper header .top-bar .widget .search-bar {
  position: relative;
  margin-top: 15px;
}
.site-wrapper header .top-bar .widget .search-bar .search-input {
  padding: 10px;
  width: 250px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
}
.site-wrapper header .top-bar .widget .search-bar .search-button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: transparent;
  cursor: pointer;
  border: none;
}
.site-wrapper header .top-bar .widget .search-bar .search-button img {
  width: 50%;
  max-height: 100%; /* Ensure the image does not exceed the button's height */
}
.site-wrapper .mobile-menu {
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #23324f;
  padding: 15px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 950px) {
  .site-wrapper .mobile-menu {
    display: flex;
  }
}
.site-wrapper .mobile-menu .burger-menu {
  position: relative;
}
.site-wrapper .mobile-menu .burger-menu #menu__toggle {
  opacity: 0;
}
.site-wrapper .mobile-menu .burger-menu #menu__toggle:checked + .menu__btn > span {
  transform: rotate(45deg);
}
.site-wrapper .mobile-menu .burger-menu #menu__toggle:checked + .menu__btn > span::before,
.site-wrapper .mobile-menu .burger-menu #menu__toggle:checked + .menu__btn > span::after {
  top: 0;
  transition: transform 0.25s;
}
.site-wrapper .mobile-menu .burger-menu #menu__toggle:checked + .menu__btn > span::before {
  transform: rotate(0deg);
}
.site-wrapper .mobile-menu .burger-menu #menu__toggle:checked + .menu__btn > span::after {
  transform: rotate(90deg);
}
.site-wrapper .mobile-menu .burger-menu #menu__toggle:checked ~ .mobile-menu-cont .menu__box {
  left: 0 !important;
}
.site-wrapper .mobile-menu .burger-menu .menu__btn {
  position: absolute;
  top: 50%;
  left: 0;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 3;
}
.site-wrapper .mobile-menu .burger-menu .menu__btn > span, .site-wrapper .mobile-menu .burger-menu .menu__btn > span::before, .site-wrapper .mobile-menu .burger-menu .menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition-duration: 0.25s;
}
.site-wrapper .mobile-menu .burger-menu .menu__btn > span::before {
  content: "";
  top: -8px;
}
.site-wrapper .mobile-menu .burger-menu .menu__btn > span::after {
  content: "";
  top: 8px;
}
.site-wrapper .mobile-menu .menu__box {
  display: flex;
  flex-direction: column;
  gap: 5%;
  position: fixed;
  top: 0;
  left: -100%;
  width: 88%;
  height: 100%;
  margin: 0;
  padding: 80px 0;
  list-style: none;
  background-color: #177dea;
  opacity: 0.9;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  transition: left 0.5s ease-out;
  z-index: 2;
}
.site-wrapper .mobile-menu .menu__box .menu__item {
  display: block;
  padding: 12px 24px;
  color: #ffffff;
  font-family: "Roboto", sans-segf;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition-duration: 0.25s;
}
.site-wrapper .mobile-menu .menu__box .menu__item:hover {
  background-color: #cfd8dc;
}
.site-wrapper .mobile-menu .menu__box li {
  margin-left: 85px;
  list-style: none;
}
.site-wrapper .mobile-menu .menu__box li .sub-menu {
  padding-left: unset;
}
.site-wrapper .mobile-menu .menu__box a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 25px;
}
.site-wrapper .mobile-menu .menu__box .sub-menu {
  display: flex;
  flex-direction: column;
  z-index: 2;
  left: -10px;
  min-width: 110px;
  margin-top: 5px;
}
.site-wrapper .mobile-menu .menu__box .sub-menu li {
  margin-bottom: 6px;
}
.site-wrapper .mobile-menu .menu__box .sub-menu a {
  color: #ffffff;
  transition: color 0.3s;
  margin-left: -35px;
  font-size: 15px;
  font-weight: 500;
}
.site-wrapper .mobile-menu .menu__box .sub-menu a:hover {
  color: #a6e2ef;
}
.site-wrapper .mobile-icon img {
  width: 120px;
}
.site-wrapper .mobile-searchbar {
  position: relative;
}
.site-wrapper .mobile-searchbar img {
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.site-wrapper .mobile-searchbar .toggled-searchbar {
  display: flex;
  position: absolute;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  right: -48%;
  top: -95%;
  width: 300px;
  height: 200px;
  background-color: rgba(23, 125, 234, 0.95);
  transition: right 0.5s ease-out, opacity 0.5s ease-out;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
}
.site-wrapper .mobile-searchbar .toggled-searchbar.visible {
  opacity: 1;
  visibility: visible;
}
.site-wrapper .mobile-searchbar .toggled-searchbar input {
  border: none !important;
  border-bottom: 1px solid #ccc !important;
  background: transparent;
  color: #ffffff;
}
.site-wrapper .mobile-searchbar .toggled-searchbar input::placeholder {
  color: #ffffff;
}
.site-wrapper .mobile-searchbar .toggled-searchbar button.is-search-submit {
  display: none;
}
.site-wrapper .mobile-searchbar .close-search {
  border: none;
  cursor: pointer;
  background: transparent;
  color: #ffffff;
  font-size: 30px;
}

.nav-bar {
  border-top: 1px solid #d1c6c6;
  border-bottom: 1px solid #d1c6c6;
  margin: 20px 0 40px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.4s ease;
}
.nav-bar ul {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 30px;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 10px 0 10px 0;
}
.nav-bar ul .menu-item {
  position: relative;
  transition: 0.3s;
  margin-bottom: -5px;
}
.nav-bar ul .menu-item a {
  text-decoration: none;
  color: #090909;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.nav-bar ul .menu-item a:hover {
  color: #508ECE;
}
.nav-bar ul .menu-item.current-menu-item a {
  color: #508ECE; /* Change this to the desired color for the active item */
}
.nav-bar ul .menu-item .sub-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  background: rgba(1, 27, 77, 0.8);
  padding: 9px;
  z-index: 2;
  transition: 0.3s;
  left: -10px;
  min-width: 110px;
  margin-top: 2px;
}
.nav-bar ul .menu-item .sub-menu a {
  color: #090909;
  transition: 0.25s;
}
.nav-bar ul .menu-item .sub-menu a:hover {
  color: #508ECE;
}
.nav-bar ul .menu-item .sub-menu:hover {
  display: flex;
}
.nav-bar ul .menu-item:hover {
  opacity: 1;
  visibility: visible;
}
@media only screen and (max-width: 950px) {
  .nav-bar {
    display: none;
  }
}

.nav-bar.scrolled {
  background: rgba(1, 27, 77, 0.8);
  border: none;
}
.nav-bar.scrolled .menu-item a {
  color: #ffffff;
}

.breadcrumbs {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 30px;
  width: 1200px;
}
@media only screen and (max-width: 950px) {
  .breadcrumbs {
    width: 100%;
  }
}
@media only screen and (max-width: 950px) {
  .breadcrumbs #titles-wrapper {
    padding: 10px;
    max-width: 100%;
    overflow: hidden;
  }
}
.breadcrumbs #titles-wrapper {
  display: flex;
  justify-content: flex-start;
  border-bottom: 3px solid #e3e3e3;
}
.breadcrumbs #titles-wrapper span {
  font-size: 14px;
  margin-bottom: 30px;
}
.breadcrumbs #titles-wrapper a {
  text-decoration: none;
  color: #508ECE;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.breadcrumbs #titles-wrapper a.home-page-link {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #dcdada;
}

main {
  width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 950px) {
  main {
    max-width: 100%;
    overflow: hidden;
  }
}
main .post-page-wrapper {
  width: 100%;
  margin-bottom: 10em;
}
@media only screen and (max-width: 600px) {
  main .post-page-wrapper {
    margin-bottom: 5em;
  }
}
main .post-page-wrapper .main-wrapper {
  width: 100%;
}
@media only screen and (max-width: 950px) {
  main .post-page-wrapper .main-wrapper {
    padding: 0 13px;
    width: unset;
  }
}
main .post-page-wrapper .main-wrapper .top-banner-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
main .post-page-wrapper .main-wrapper .top-banner-title h1 {
  text-align: left;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 25px;
  text-transform: uppercase;
}
main .post-page-wrapper .main-wrapper .main-top-banners {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 45px;
}
@media only screen and (max-width: 950px) {
  main .post-page-wrapper .main-wrapper .main-top-banners {
    flex-direction: column;
  }
}
main .post-page-wrapper .main-wrapper .main-top-banners .banner {
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
@media only screen and (max-width: 950px) {
  main .post-page-wrapper .main-wrapper .main-top-banners .banner {
    margin-bottom: 20px;
    width: 100%;
    flex-direction: row;
    border: 1px solid #f5f4f4;
    position: unset;
    min-height: 125px;
  }
}
main .post-page-wrapper .main-wrapper .main-top-banners .banner img {
  width: 100%;
}
@media only screen and (max-width: 950px) {
  main .post-page-wrapper .main-wrapper .main-top-banners .banner img {
    width: 220px;
    min-height: 100%;
    max-height: 100%;
    object-fit: cover;
  }
}
main .post-page-wrapper .main-wrapper .main-top-banners .banner .banner-title {
  position: absolute;
  bottom: 0;
  color: #ffffff;
  height: 115px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 15px;
  background: linear-gradient(0deg, #000, transparent);
}
@media only screen and (max-width: 950px) {
  main .post-page-wrapper .main-wrapper .main-top-banners .banner .banner-title {
    position: unset;
    background: #ffffff;
    align-items: flex-start;
    width: 100%;
    height: 100%;
  }
}
main .post-page-wrapper .main-wrapper .main-top-banners .banner .category {
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  background: #508ECE;
  padding: 5px 12px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.25s;
}
main .post-page-wrapper .main-wrapper .main-top-banners .banner .category:hover {
  background: #0056b3;
}
@media only screen and (max-width: 950px) {
  main .post-page-wrapper .main-wrapper .main-top-banners .banner .category {
    color: #508ECE;
    background: #ffffff;
    padding: unset;
  }
}
main .post-page-wrapper .main-wrapper .main-top-banners .banner .banner-subtitle {
  text-decoration: none;
  color: #ffffff;
}
main .post-page-wrapper .main-wrapper .main-top-banners .banner .banner-subtitle h3 {
  font-size: 18px;
  transition: 0.25s;
}
@media only screen and (max-width: 950px) {
  main .post-page-wrapper .main-wrapper .main-top-banners .banner .banner-subtitle h3 {
    color: #090909;
    text-align: left;
    font-size: 15px;
  }
}
main .post-page-wrapper .main-wrapper .main-top-banners .banner .banner-subtitle h3:hover {
  color: #508ECE;
}
main .post-page-wrapper .main-wrapper .top-grid-title {
  text-transform: uppercase;
  font-weight: 600;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
main .post-page-wrapper .main-wrapper .top-grid-title::after {
  content: "";
  position: absolute;
  background-color: #e3e3e3;
  height: 2px;
  bottom: 43%;
  width: 83%;
  right: 0;
}
@media only screen and (max-width: 950px) {
  main .post-page-wrapper .main-wrapper .top-grid-title::after {
    display: none;
  }
}
main .post-page-wrapper .main-wrapper .top-grid-title span {
  font-size: 25px;
  font-weight: 600;
}
main .post-page-wrapper .main-wrapper .main-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 20px;
  row-gap: 30px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 950px) {
  main .post-page-wrapper .main-wrapper .main-grid {
    display: flex;
    flex-direction: column;
  }
}
main .post-page-wrapper .main-wrapper .main-grid .element-wrapper {
  text-decoration: none;
  color: black;
  border: 1px solid #e3e3e3;
  text-align: center;
  transition: 0.3s;
}
main .post-page-wrapper .main-wrapper .main-grid .element-wrapper img {
  max-width: 100%;
  min-width: 100%;
  margin-bottom: 10px;
  height: 200px;
  object-fit: cover;
}
@media only screen and (max-width: 950px) {
  main .post-page-wrapper .main-wrapper .main-grid .element-wrapper img {
    min-width: 100%;
  }
}
main .post-page-wrapper .main-wrapper .main-grid .element-wrapper .article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px;
}
main .post-page-wrapper .main-wrapper .main-grid .element-wrapper .article .category {
  color: #508ECE;
  font-size: 12px;
  margin: 0 0 10px;
  font-weight: 700;
  transition: 0.25s;
}
main .post-page-wrapper .main-wrapper .main-grid .element-wrapper .article .category:hover {
  color: #090909;
}
main .post-page-wrapper .main-wrapper .main-grid .element-wrapper .article .subtitle {
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  transition: 0.25s;
}
main .post-page-wrapper .main-wrapper .main-grid .element-wrapper .article .subtitle:hover {
  color: #508ECE;
}
@media only screen and (max-width: 950px) {
  main .search-page-wrapper {
    margin: 12px;
  }
}
main .search-page-wrapper .entry-footer {
  padding: 17px 0 17px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}
main .search-page-wrapper .entry-footer span {
  padding: 5px;
  color: #ffffff;
}
main .search-page-wrapper .entry-footer span a {
  color: #ffffff;
}
main .search-page-wrapper .entry-footer .edit-link {
  display: none;
}

.paginator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 60px;
}
.paginator .paginator-button {
  padding: 10px;
  background-color: #508ECE; /* Button background color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.25s;
}
.paginator .paginator-counter {
  text-decoration: none;
  color: black;
  border: 1px solid #508ECE;
  padding: 9px 17px;
}
.paginator .paginator-button:hover {
  background-color: #0056b3; /* Hover state color */
}
.paginator .paginator-disabled {
  color: #999; /* Disabled button text color */
  cursor: not-allowed;
}
@media only screen and (max-width: 950px) {
  .paginator .paginator-table {
    display: none;
  }
}

.post-page-wrapper {
  display: flex;
  gap: 3vw;
  width: 100%;
}
@media only screen and (max-width: 950px) {
  .post-page-wrapper {
    flex-direction: column-reverse;
  }
}
.post-page-wrapper .sidebar {
  box-sizing: border-box;
  width: 100%;
}
@media only screen and (max-width: 950px) {
  .post-page-wrapper .sidebar {
    padding: 0 13px;
    width: unset;
    order: 2;
  }
}
.post-page-wrapper .sidebar .top-aside-banner {
  background-color: #e3e3e3;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.post-page-wrapper .sidebar .top-aside-banner .aside-banner-title {
  margin-bottom: 20px;
}
.post-page-wrapper .sidebar .top-aside-banner .author-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.post-page-wrapper .sidebar .top-aside-banner .author-section .author {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.post-page-wrapper .sidebar .top-aside-banner .author-section .author .author-image {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 50%;
}
.post-page-wrapper .sidebar .top-aside-banner .author-section .author .author-name {
  color: #0056b3;
  font-size: 16px;
  font-weight: 600;
  font-family: "Roboto", serif;
}
.post-page-wrapper .sidebar .top-aside-banner .author-section .social-string a {
  text-decoration: none;
}
.post-page-wrapper .sidebar .top-aside-banner .author-section .social-string img {
  width: 30px;
  transition: 0.3s;
}
.post-page-wrapper .sidebar .top-aside-banner .author-section .social-string img:hover {
  transform: scale(1.2);
}
.post-page-wrapper .sidebar .sidebar-posts-wrapper {
  position: sticky;
  top: 0;
  margin-bottom: 20px;
}
.post-page-wrapper .sidebar .sidebar-posts-wrapper .sidebar-posts-title {
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}
.post-page-wrapper .sidebar .sidebar-posts-wrapper .post-link {
  border: 1px solid #e3e3e3;
  margin-bottom: 30px;
  transition: 0.3s;
}
.post-page-wrapper .sidebar .sidebar-posts-wrapper .post-link img {
  width: 100%;
  height: 125px;
  object-fit: cover;
}
.post-page-wrapper .sidebar .sidebar-posts-wrapper .post-link .post-link-image {
  width: 100%;
  height: 125px;
  object-fit: cover;
}
.post-page-wrapper .sidebar .sidebar-posts-wrapper .post-link .post-link-content {
  text-align: left;
  padding: 10px;
}
.post-page-wrapper .sidebar .sidebar-posts-wrapper .post-link .post-link-content .link-category-title {
  color: #508ECE;
  margin-bottom: 13px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
}
.post-page-wrapper .sidebar .sidebar-posts-wrapper .post-link .post-link-content .link-subtitle a {
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  color: #090909;
  font-weight: 600;
  font-size: 14px;
}
.post-page-wrapper .sidebar .sidebar-posts-wrapper .post-link .post-link-content .link-subtitle a:hover {
  color: #508ECE;
}
.post-page-wrapper .main-content {
  max-width: 600px;
  min-width: 600px;
}
@media only screen and (max-width: 950px) {
  .post-page-wrapper .main-content {
    padding: 0 13px;
    order: 3;
    max-width: unset;
    min-width: unset;
  }
}
.post-page-wrapper .main-content section {
  width: 100%;
}
.post-page-wrapper .main-content section .post-section-title {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 30px;
}
@media only screen and (max-width: 950px) {
  .post-page-wrapper .main-content section .post-section-title {
    font-size: 20px;
    text-align: left;
  }
}
.post-page-wrapper .main-content section .post-section-title h1 {
  font-weight: 500 !important;
}
.post-page-wrapper .main-content section img {
  width: 100%;
  margin-bottom: 30px;
}
.post-page-wrapper .main-content section .share {
  display: flex;
  justify-content: center;
  margin: 30px;
}
.post-page-wrapper .main-content section .share .a2a_svg, .post-page-wrapper .main-content section .share .a2a_count {
  border-radius: 0 !important;
}
.post-page-wrapper .main-content section p {
  text-align: left;
  letter-spacing: 0.1px;
  line-height: 1.5;
  max-width: 100%;
}
.post-page-wrapper .main-content section .wp-block-buttons {
  margin: 20px;
}
.post-page-wrapper .main-content .bottom-category-section {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  list-style-type: none;
  font-size: 15px;
  margin: 40px 0 40px;
  flex-wrap: wrap;
}
.post-page-wrapper .main-content .bottom-category-section .category-title {
  font-weight: 600;
}
.post-page-wrapper .main-content .bottom-category-section a {
  text-decoration: none;
  margin: 5px 0;
  font-weight: 500;
}
.post-page-wrapper .main-content .bottom-category-section a .bottom-category {
  background: #508ECE;
  border-radius: 20px;
  padding: 4px 15px;
  margin-left: 7px;
  color: #ffffff;
  transition: 0.3s;
  text-decoration: none;
}
.post-page-wrapper .main-content .bottom-category-section a .bottom-category:hover {
  background: #0056b3;
}
.post-page-wrapper .right-aside-banner {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 950px) {
  .post-page-wrapper .right-aside-banner {
    order: 1;
  }
}
.post-page-wrapper .right-aside-banner .right-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  color: #ffffff;
}
.post-page-wrapper .right-aside-banner .right-banner .right-banner-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.post-page-wrapper .right-aside-banner .right-banner .right-banner-wrapper .right-banner-content {
  text-decoration: none;
}
.post-page-wrapper .right-aside-banner .right-banner .right-banner-wrapper .right-banner-content h3 {
  color: #ffffff;
}
.post-page-wrapper .right-aside-banner .right-banner .right-banner-wrapper .right-banner-content .right-banner-image {
  width: 100%;
}
.post-page-wrapper .right-aside-banner .embedded-banner {
  margin-bottom: 40px;
}
.post-page-wrapper .right-aside-banner .embedded-banner img {
  width: 100%;
}
.post-page-wrapper .right-aside-banner .right-aside-banner-wrapper {
  position: sticky;
  top: 0;
  margin-bottom: 20px;
  background: #23324f;
  min-height: 210px;
}
.post-page-wrapper .right-aside-banner .right-aside-banner-wrapper .right-aside-banner-content {
  padding: 25px;
}
.post-page-wrapper .right-aside-banner .right-aside-banner-wrapper .right-aside-banner-content .title {
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 16px;
}
.post-page-wrapper .right-aside-banner .right-aside-banner-wrapper .right-aside-banner-content .wpcf7 {
  margin-top: 12px;
}
.post-page-wrapper .right-aside-banner .right-aside-banner-wrapper .right-aside-banner-content .wpcf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
}
.post-page-wrapper .right-aside-banner .right-aside-banner-wrapper .right-aside-banner-content .wpcf7 .wpcf7-form .wpcf7-form-control-wrap {
  width: 100%;
  margin-bottom: 10px;
}
.post-page-wrapper .right-aside-banner .right-aside-banner-wrapper .right-aside-banner-content .wpcf7 .wpcf7-form .wpcf7-form-control-wrap input[type=email]::placeholder {
  padding-left: 10px;
}
.post-page-wrapper .right-aside-banner .right-aside-banner-wrapper .right-aside-banner-content .wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control {
  width: 100%;
  padding: 12px 12px;
  border: none;
  color: #090909;
}
.post-page-wrapper .right-aside-banner .right-aside-banner-wrapper .right-aside-banner-content .wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  margin-top: 15px;
}
.post-page-wrapper .right-aside-banner .right-aside-banner-wrapper .right-aside-banner-content .wpcf7 .wpcf7-form .wpcf7-form-control-wrap input {
  background: #ffffff;
  color: #090909;
}
.post-page-wrapper .right-aside-banner .right-aside-banner-wrapper .right-aside-banner-content .wpcf7 .wpcf7-form .wpcf7-response-output {
  color: #ffffff;
}
.post-page-wrapper .right-aside-banner .right-aside-banner-wrapper .right-aside-banner-content .wpcf7 .wpcf7-form input {
  background: #508ECE;
  color: #ffffff;
  padding: 12px;
  border: none;
}
.post-page-wrapper .right-aside-banner .right-aside-banner-wrapper .right-aside-banner-content .wpcf7 .wpcf7-form .wpcf7-spinner {
  margin: -32px auto !important;
}
.post-page-wrapper .right-aside-banner .right-aside-banner-wrapper .right-aside-banner-content .wpcf7 .wpcf7-form .wpcf7-response-output {
  margin: 4em 0.5em 1em !important;
  padding: 1.2em 1em !important;
}

footer {
  background-color: #23324f;
  padding: 44px 0 44px;
  color: #090909;
}
footer .footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
footer .footer-wrapper .footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 950px) {
  footer .footer-wrapper .footer-menu {
    flex-direction: column;
    padding: 0 24px;
  }
}
footer .footer-wrapper .footer-menu .column-element {
  width: calc(33.333% - 20px); /* 33.333% width with 20px gap */
  box-sizing: border-box;
  text-align: left;
  padding: 1%;
}
@media only screen and (max-width: 950px) {
  footer .footer-wrapper .footer-menu .column-element {
    width: 100%;
  }
}
footer .footer-wrapper .footer-menu .column-element .title {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
footer .footer-wrapper .footer-menu .column-element .subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 11px;
}
footer .footer-wrapper .footer-menu .column-element .menu-elements {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
footer .footer-wrapper .footer-menu .column-element .menu-elements ul {
  padding: unset;
  margin: unset;
}
footer .footer-wrapper .footer-menu .column-element .menu-elements ul a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  font-size: 11px;
  margin-bottom: 10px;
}
footer .footer-wrapper .footer-menu .column-element .menu-elements .menu-subtitle {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 30px;
}
footer .footer-wrapper .footer-menu .column-element .menu-elements .wpcf7 {
  margin-top: 12px;
}
footer .footer-wrapper .footer-menu .column-element .menu-elements .wpcf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
}
footer .footer-wrapper .footer-menu .column-element .menu-elements .wpcf7 .wpcf7-form .wpcf7-form-control-wrap {
  width: 100%;
  margin-bottom: 10px;
}
footer .footer-wrapper .footer-menu .column-element .menu-elements .wpcf7 .wpcf7-form .wpcf7-form-control-wrap input[type=email]::placeholder {
  padding-left: 10px;
}
footer .footer-wrapper .footer-menu .column-element .menu-elements .wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control {
  width: 100%;
  padding: 12px 12px;
  border: none;
}
footer .footer-wrapper .footer-menu .column-element .menu-elements .wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  margin-top: 15px;
}
footer .footer-wrapper .footer-menu .column-element .menu-elements .wpcf7 .wpcf7-form .wpcf7-form-control-wrap input {
  background: #ffffff;
  color: #090909;
}
footer .footer-wrapper .footer-menu .column-element .menu-elements .wpcf7 .wpcf7-form .wpcf7-response-output {
  color: #ffffff;
}
footer .footer-wrapper .footer-menu .column-element .menu-elements .wpcf7 .wpcf7-form input {
  background: #508ECE;
  color: #ffffff;
  padding: 12px;
  border: none;
}
footer .footer-wrapper .footer-menu .column-element .menu-elements .wpcf7 .wpcf7-form .wpcf7-spinner {
  margin: -32px auto !important;
}
footer .footer-wrapper .footer-menu .column-element .menu-elements .wpcf7 .wpcf7-form .wpcf7-response-output {
  margin: 4em 0.5em 1em !important;
  padding: 1.2em 1em !important;
}
footer .footer-wrapper .footer-menu .column-element .menu-item {
  list-style: none;
  margin-bottom: 15px;
}
footer .footer-wrapper .footer-menu .column-element .menu-item a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s;
}
footer .footer-wrapper .footer-menu .column-element .menu-item a:hover {
  color: #c6e8f5;
}
footer .footer-wrapper .footer-menu .column-element .sub-menu a {
  font-weight: 500;
  font-size: 12px;
}
footer .footer-bottom-part {
  margin-top: 30px;
  text-align: left;
}
@media only screen and (max-width: 950px) {
  footer .footer-bottom-part {
    padding: 0 24px;
  }
}
footer .footer-bottom-part .bottom-title h2 {
  position: relative;
  text-transform: uppercase;
  margin-bottom: 30px;
  margin-top: 30px;
  color: #ffffff;
}
footer .footer-bottom-part .bottom-title h2::after {
  content: "";
  position: absolute;
  background-color: #687788;
  height: 2px;
  bottom: 50%;
  width: 87%;
  margin-left: 13px;
}
@media only screen and (max-width: 950px) {
  footer .footer-bottom-part .bottom-title h2::after {
    width: 55%;
  }
}
footer .footer-bottom-part .footer-bottom-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 950px) {
  footer .footer-bottom-part .footer-bottom-section {
    flex-direction: column;
    align-items: flex-start;
  }
}
footer .footer-bottom-part .footer-bottom-section .footer-logo-link {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 950px) {
  footer .footer-bottom-part .footer-bottom-section .footer-logo-link {
    flex-direction: column;
  }
}
footer .footer-bottom-part .footer-bottom-section .footer-logo-link .footer-logo {
  margin-bottom: 30px;
}
@media only screen and (max-width: 950px) {
  footer .footer-bottom-part .footer-bottom-section .footer-logo-link .footer-logo img {
    width: 50%;
  }
}
footer .footer-bottom-part .footer-bottom-section .footer-logo-link .social {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
footer .footer-bottom-part .footer-bottom-section .footer-logo-link .social .social-icon {
  transition: 0.25s;
}
footer .footer-bottom-part .footer-bottom-section .footer-logo-link .social .social-icon:hover {
  transform: scale(1.2);
}
footer .footer-bottom-part .footer-bottom-section .footer-links {
  display: flex;
  justify-content: center;
}
footer .footer-bottom-part .footer-bottom-section .footer-links ul {
  display: flex;
}
footer .footer-bottom-part .footer-bottom-section .footer-links ul li {
  margin-left: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 12px;
  list-style: none;
}
footer .footer-bottom-part .footer-bottom-section .footer-links ul li a {
  text-decoration: none;
  color: #ffffff;
}
footer .footer-bottom-part .footer-bottom-section .site-info {
  color: #ffffff;
  border-top: 1px solid #687788;
  width: 100%;
}
footer .footer-bottom-part .footer-bottom-section .site-info .info {
  margin-top: 35px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 950px) {
  footer .footer-bottom-part .footer-bottom-section .site-info .info {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 14px;
  }
}
footer .footer-bottom-part .footer-bottom-section .site-info .info a {
  color: #ffffff;
  margin-right: 5px;
  text-decoration: none;
}
@media only screen and (max-width: 950px) {
  footer .footer-bottom-part .footer-bottom-section .site-info .info a {
    margin-right: unset;
  }
}

/*# sourceMappingURL=style.css.map */
