:root {
  --primary: #3E908A;
  --secondary: #EDEDED;
  --tertiary: #8890A7;
  --accent: #FF5449;
  --background: #F5F5F5;
  --text: #363636;
  --highlight: #F2E2E2;
  --black: #1E1E1E;
  --white: #FFFFFF;
  --teal: #3E908A;
  --green: #87CB28;
  --dark-green: #194C47;
  --header: #02938b;
  --blue: #002459;
  --grey: #7A7A7A;
  --lightblue: #F7FDFF;
}

/* Typography */
body,
html,
input,
select,
option,
label,
textarea,
li,
p,
span,
a {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text);
}

body p {
  line-height: 25px;
  font-size: 16px;
  color: #6B6B6B;
}
body p:not(:last-of-type) {
  margin-bottom: 1rem;
}
body p:last-of-type {
  margin-bottom: 0;
}
body strong {
  font-weight: 700;
}
body h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 56px;
  color: var(--black);
  margin: 1.5rem 0;
  line-height: 1;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  body h1 {
    font-size: 22px !important;
  }
}
body h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 36px;
  color: var(--blue);
  margin: 2.5rem 0;
  line-height: 1;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  body h2 {
    font-size: 22px !important;
  }
}
body h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 36px;
  color: var(--blue);
  margin: 1rem 0;
  line-height: 1;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  body h3 {
    font-size: 22px !important;
  }
}
body h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  color: var(--black);
  margin: 1.5rem 0;
  line-height: 1;
}
@media (max-width: 991px) {
  body h4 {
    font-size: 22px !important;
  }
}
body h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  color: var(--black);
  margin: 1.5rem 0;
  line-height: 1;
}
@media (max-width: 991px) {
  body h5 {
    font-size: 22px;
  }
}
body h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--black);
  margin: 1.5rem 0;
  line-height: 1;
}
@media (max-width: 991px) {
  body h6 {
    font-size: 1.4rem;
  }
}
body button,
body input[type=submit] {
  font-family: "Montserrat", sans-serif;
}
body a {
  color: var(--blue);
  text-decoration: underline;
}

footer#footer .footer_top .footer-top-inner .right_side .column ul li a, footer#footer .footer_top .footer-top-inner .right_side .column .col_header, footer#footer .footer_top .footer-top-inner .left_side p.terms {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* Button styles */
.button, .gform_button.button {
  width: auto;
  display: inline-block;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  text-align: center;
  border-radius: 5px;
  padding: 1.4rem 3rem;
  font-size: 1.8rem;
  font-weight: 300;
  font-style: normal;
  line-height: normal;
  transition: all 0.5s ease;
  text-transform: capitalize;
  font-weight: 600;
}
@media (max-width: 500px) {
  .button, .gform_button.button {
    font-size: 16px;
  }
}
.button.button-primary, .button.gform_button, .gform_button.button.button-primary, .gform_button.button.gform_button {
  color: var(--white);
  background-color: var(--green);
}
.button.button-secondary, .gform_button.button.button-secondary {
  color: var(--green);
  background-color: var(--white);
}

/* Container styles */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 500px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 760px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 980px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1160px;
  }
}
@media (min-width: 1360px) {
  .container {
    max-width: 1600px;
    padding-right: 100px;
    padding-left: 100px;
  }
}
@media (min-width: 1660px) {
  .container {
    max-width: 1800px;
    padding-right: 70px;
    padding-left: 70px;
  }
}
/* Section styles */
main.page_wrapper > section {
  width: 100%;
  position: relative;
}

/* Scrollbar styles */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f6f6f6;
}

::-webkit-scrollbar-thumb {
  background: #5a5a5a;
}

::-webkit-scrollbar-thumb:hover {
  background: #2a2a33;
}

.highlight {
  background-color: yellow;
  font-weight: bold;
}

.tag {
  background-color: #eee;
  padding: 2px 6px;
  border-radius: 4px;
  margin-right: 4px;
  display: inline-block;
}

/* Yoast breadcrumbs */
p#breadcrumbs {
  width: 100%;
  margin: 0 0 2rem;
}
p#breadcrumbs > span {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 1.2rem !important;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--background);
}
p#breadcrumbs > span a {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--background);
  margin-right: 1rem;
  transition: all 0.3s ease;
}
p#breadcrumbs > span a:hover {
  color: var(--secondary);
}
p#breadcrumbs > span span {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
p#breadcrumbs > span span:not(:first-of-type) {
  margin-left: 1rem;
}
p#breadcrumbs > span span.breadcrumb_last {
  color: var(--secondary) !important;
}

/* Slick styles */
/* For using pagination dots */
.slick-dots {
  display: flex;
  flex-direction: row;
  justify-content: center;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 5rem 0 0;
}
.slick-dots > li {
  font-size: 0;
  margin: 0 1rem;
}
.slick-dots > li.slick-active button {
  background: var(--blue);
}
.slick-dots > li > button {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0;
  border: none;
  border-radius: 50%;
  outline: 0;
  cursor: pointer;
}

/* Call to action buttons */
.call_to_action_buttons {
  width: 100%;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .call_to_action_buttons {
    flex-direction: row;
  }
  .call_to_action_buttons > a:not(:last-child) {
    margin-right: 2rem;
  }
}
@media (max-width: 991px) {
  .call_to_action_buttons {
    flex-direction: column;
  }
  .call_to_action_buttons > a {
    width: 100%;
  }
  .call_to_action_buttons > a:not(:last-child) {
    margin-bottom: 2rem;
  }
}

/* Tablepress */
table.tablepress {
  width: 100%;
  margin: 5rem 0 0;
}
@media (max-width: 991px) {
  table.tablepress {
    display: block;
    overflow-y: hidden;
  }
}
table.tablepress thead tr th {
  font-size: 1.6rem;
  font-weight: 400;
  background: var(--primary) !important;
  color: var(--white);
  padding: 2rem;
}
table.tablepress tbody tr td {
  font-size: 1.6rem;
  font-weight: 400;
  background: #EEEEEE !important;
  padding: 2rem;
}

/* 404 Section */
.section_404 {
  background: #4E0038;
  margin-top: 10.5rem;
}
.section_404 .container {
  position: relative;
  z-index: 2;
  padding-top: 20rem;
  padding-bottom: 20rem;
}
.section_404 .container .section_inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
}
.section_404 .container .section_inner .left_side {
  width: 58%;
}
.section_404 .container .section_inner .right_side {
  width: 38%;
  display: flex;
  flex-direction: column;
}
.section_404 .container .section_inner .right_side > p {
  color: #FFF;
  font-family: Verdana;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 166.667% */
}
.section_404 .container .section_inner .right_side .content {
  margin-top: auto;
}
.section_404 .container .section_inner .right_side .content p {
  color: #FFF;
  font-family: Verdana;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 105%;
  /* 25.2px */
  margin: 0 0 3rem;
}
.section_404 .bg_pattern {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
}
.section_404 .bg_pattern svg {
  width: 32%;
}
.section_404 .bg_pattern svg circle {
  width: 100%;
  fill: #5a0041;
}

.slider {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  overflow-x: hidden;
}
.slider .slider.global_box_slider.slick-initialized.slick-slider {
  margin-right: 0;
}
.slider .slider.global_box_slider.slick-initialized.slick-slider .slider-item {
  box-sizing: border-box;
  width: 100%;
}
.slider .slider.global_box_slider.slick-initialized.slick-slider .slider-item .industry_information {
  display: flex;
  justify-content: flex-start;
  background-color: #408EC6;
  gap: 2rem;
  padding: 4rem 4rem 0 4rem;
  border-radius: 5px;
  width: 100%;
  min-height: 453px;
}
@media screen and (max-width: 991px) {
  .slider .slider.global_box_slider.slick-initialized.slick-slider .slider-item .industry_information {
    flex-direction: column-reverse;
    min-height: auto;
    width: 100%;
  }
}
.slider .slider.global_box_slider.slick-initialized.slick-slider .slider-item .industry_information .slide_image {
  width: 49%;
  position: relative;
  border-radius: 5px;
}
@media (max-width: 991px) {
  .slider .slider.global_box_slider.slick-initialized.slick-slider .slider-item .industry_information .slide_image {
    width: 100%;
  }
}
.slider .slider.global_box_slider.slick-initialized.slick-slider .slider-item .industry_information .slide_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
}
@media (max-width: 991px) {
  .slider .slider.global_box_slider.slick-initialized.slick-slider .slider-item .industry_information .slide_image img {
    position: relative;
  }
}
.slider .slider.global_box_slider.slick-initialized.slick-slider .slider-item .industry_information .text_area {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 49%;
}
@media screen and (max-width: 991px) {
  .slider .slider.global_box_slider.slick-initialized.slick-slider .slider-item .industry_information .text_area {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    padding-bottom: 2rem;
  }
}
.slider .slider.global_box_slider.slick-initialized.slick-slider .slider-item .industry_information .text_area span {
  color: #FFF;
  font-size: 22.4px;
  font-weight: 600;
  text-transform: capitalize;
}
.slider .slider.global_box_slider.slick-initialized.slick-slider .slider-item .industry_information .text_area .learn-more p {
  color: #FFF;
  font-size: 16px;
}
.slider .slider_width {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .slider .slider_width {
    width: 100%;
  }
}

.custom-arrows .slider-global_box_slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 30%;
  margin-top: 4rem;
  gap: 3rem;
  padding-right: 2rem;
  margin-right: 8rem;
}
@media screen and (max-width: 992px) {
  .custom-arrows .slider-global_box_slider {
    justify-content: center;
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding-right: 0;
  }
}

.slick-arrow {
  cursor: pointer;
}

@media (max-width: 991px) {
  #section-contact-11 {
    padding-top: 110px;
    padding-bottom: 160px;
  }
}

/* Sitewide resets */
html, body {
  font-size: 62.5%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  min-width: 100%;
  box-sizing: border-box;
}

body {
  min-width: 100%;
  line-height: 1;
  overflow-x: hidden;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
}

nav ul, nav ol {
  list-style-type: none !important;
  padding-left: 0 !important;
}

ul, ol {
  padding-left: 2rem;
}
ul li, ol li {
  line-height: 1.5;
}
ul li:not(:last-of-type), ol li:not(:last-of-type) {
  margin-bottom: 1rem;
}

ul {
  list-style-type: disc !important;
}

ol {
  list-style-type: decimal !important;
}

img {
  height: auto;
  max-width: 100%;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote {
  background-clip: padding-box;
  border-radius: 5px;
  margin: 22px;
  padding: 0;
  background-color: var(--primary);
  position: relative;
}
blockquote:before {
  border-right: 20px solid transparent !important;
  border-top: 20px solid;
  content: "";
  height: 0;
  left: 4.5em;
  position: absolute;
  top: 100%;
  border-top-color: var(--primary);
  width: 0;
}
blockquote p {
  padding: 1rem;
  color: var(--background) !important;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 19px;
  font-style: italic;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:focus {
  outline: none;
}

button:focus, button:active {
  outline: none !important;
}

a,
a:active,
a:hover {
  outline: 0;
}

::-moz-selection {
  background: var(--primary);
  color: var(--background);
}

::selection {
  background: var(--primary);
  color: var(--background);
}

::-moz-selection {
  background: var(--primary);
  color: var(--background);
}

main + p {
  margin: 0;
  font-size: 0;
}

.header-quick-links {
  background-color: #408EC6;
}
.header-quick-links .quick-links {
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
}
.header-quick-links .quick-links .quick-links-wrapper {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.header-quick-links .quick-links .quick-links-wrapper > div {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-quick-links .quick-links .quick-links-wrapper > div a {
  font-size: 12px;
  text-transform: capitalize;
  text-decoration: none;
  color: var(--white);
}
.header-quick-links .quick-links .quick-links-wrapper hr {
  color: var(--white);
}

header#masthead {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  header#masthead .left_side {
    z-index: 9999;
    position: relative;
  }
  header#masthead .left_side nav a {
    color: var(--white) !important;
  }
  header#masthead .right_side a.button {
    background: var(--black) !important;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  header#masthead .right_side a.button {
    display: none;
  }
}
@media (max-width: 991px) {
  header#masthead .right_side a.button:hover {
    background: var(--black) !important;
    border: var(--white) !important;
  }
}
header#masthead .section_inner {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
}
@media (min-width: 768px) {
  header#masthead .section_inner {
    height: 10.5rem;
  }
}
@media (max-width: 767px) {
  header#masthead .section_inner {
    height: 8rem;
  }
}
header#masthead .section_inner .left_side {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
}
header#masthead .section_inner .left_side a.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
header#masthead .section_inner .left_side a.logo span {
  font-size: 4rem;
  font-weight: 600;
  color: var(--white);
}
@media (max-width: 767px) {
  header#masthead .section_inner .left_side a.logo span {
    font-size: 3rem;
  }
}
header#masthead .section_inner .left_side a.logo img {
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  header#masthead .section_inner .left_side a.logo img {
    width: 16rem;
    max-width: 100%;
  }
}
header#masthead .section_inner .right_side {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
header#masthead .section_inner .right_side a.button.button-primary {
  color: var(--white) !important;
  background: var(--green) !important;
}
header#masthead .section_inner .right_side .mobile_telephone_button {
  position: relative;
  display: block;
  width: 2.4rem;
  height: auto;
  top: 1px;
}
@media (min-width: 992px) {
  header#masthead .section_inner .right_side .mobile_telephone_button {
    display: none;
  }
}
header#masthead .section_inner .right_side .mobile_telephone_button svg {
  width: 100%;
  height: 100%;
}
header#masthead .section_inner .right_side .nav_toggle {
  width: 24px;
  height: 53.3333333333px;
  position: relative;
  cursor: pointer;
  transform: translate3d(0, 0, 0);
  transition: all 0.3s ease;
  margin-left: 2rem;
}
@media (min-width: 992px) {
  header#masthead .section_inner .right_side .nav_toggle {
    display: none;
  }
}
header#masthead .section_inner .right_side .nav_toggle span {
  transition: 0.15s top ease-out;
  background: var(--white);
  width: 24px;
  height: 3px;
  position: absolute;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
}
header#masthead .section_inner .right_side .nav_toggle span:nth-child(1) {
  top: 17.3333333333px;
}
header#masthead .section_inner .right_side .nav_toggle span:nth-child(2) {
  top: 25.3333333333px;
}
header#masthead .section_inner .right_side .nav_toggle span:nth-child(3) {
  top: 33.3333333333px;
}
header#masthead .section_inner .right_side .nav_toggle.active span {
  transition: 0.15s top ease-out, 0.15s width ease-out, 0.15s transform 0.15s ease-out;
  top: 50%;
  background: var(--white);
}
header#masthead .section_inner .right_side .nav_toggle.active span:nth-child(1) {
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
}
header#masthead .section_inner .right_side .nav_toggle.active span:nth-child(2) {
  opacity: 0;
}
header#masthead .section_inner .right_side .nav_toggle.active span:nth-child(3) {
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}

.sticky {
  background: rgba(0, 36, 89, 0.34);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5.1px);
  -webkit-backdrop-filter: blur(5.1px);
}

footer#footer {
  width: 100%;
}
footer#footer .footer_top {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #0A1524;
  padding: 5rem 0;
}
@media (max-width: 991px) {
  footer#footer .footer_top {
    padding: 3rem 0;
  }
}
footer#footer .footer_top .footer-top-inner {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer#footer .footer_top .footer-top-inner .left_side {
  width: 40%;
}
@media (max-width: 991px) {
  footer#footer .footer_top .footer-top-inner .left_side {
    width: 100%;
  }
}
footer#footer .footer_top .footer-top-inner .left_side p {
  font-size: 16px;
  line-height: 24px;
  margin-top: 4rem;
  color: var(--white);
}
footer#footer .footer_top .footer-top-inner .left_side p.terms {
  color: var(--white);
  margin: 0;
  text-transform: capitalize;
  font-size: 14px;
}
footer#footer .footer_top .footer-top-inner .left_side .footer-image-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
footer#footer .footer_top .footer-top-inner .right_side {
  width: 60%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  footer#footer .footer_top .footer-top-inner .right_side {
    justify-content: flex-end;
  }
}
@media (max-width: 991px) {
  footer#footer .footer_top .footer-top-inner .right_side {
    width: 100%;
    margin-top: 3rem;
  }
}
@media (min-width: 992px) {
  footer#footer .footer_top .footer-top-inner .right_side .column:not(:last-child) {
    margin-right: 10rem;
  }
}
@media (max-width: 991px) {
  footer#footer .footer_top .footer-top-inner .right_side .column {
    width: 50%;
    margin-bottom: 3rem;
  }
  footer#footer .footer_top .footer-top-inner .right_side .column:last-child {
    width: 100%;
    margin-bottom: 0;
  }
}
footer#footer .footer_top .footer-top-inner .right_side .column .col_header {
  font-size: 16px;
  margin: 0 0 3rem;
  color: var(--lightblue);
  text-transform: uppercase;
}
footer#footer .footer_top .footer-top-inner .right_side .column ul {
  list-style-type: none;
  padding-left: 0;
}
footer#footer .footer_top .footer-top-inner .right_side .column ul.contact_outer li {
  display: flex;
  flex-direction: row;
}
footer#footer .footer_top .footer-top-inner .right_side .column ul.contact_outer li svg {
  width: 2.4rem;
  height: 2.4rem;
}
footer#footer .footer_top .footer-top-inner .right_side .column ul.contact_outer li span {
  display: block;
  margin-left: 1rem;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 20px;
}
footer#footer .footer_top .footer-top-inner .right_side .column ul li {
  list-style-type: none;
}
footer#footer .footer_top .footer-top-inner .right_side .column ul li a {
  font-size: 14px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}
footer#footer .footer_top .footer-top-inner .right_side .column ul li a:hover {
  color: var(--green);
}
footer#footer .footer_top .footer-top-inner .right_side .column .menu-footer-menu-two-container {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 10rem;
       column-gap: 10rem;
}
@media (max-width: 991px) {
  footer#footer .footer_top .footer-top-inner .right_side .column .menu-footer-menu-two-container {
    -moz-column-count: 1;
         column-count: 1;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
footer#footer .footer_top .footer-top-inner .right_side .column .menu-footer-menu-two-container ul li {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
footer#footer .footer_bottom {
  background-color: #000;
  padding: 5rem 0;
}
footer#footer .footer_bottom .top {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
footer#footer .footer_bottom .top .group-image {
  width: 40%;
}
footer#footer .footer_bottom .top .group-image .veg-fund {
  width: 30%;
}
@media (max-width: 991px) {
  footer#footer .footer_bottom .top .group-image .veg-fund {
    width: 100%;
  }
}
footer#footer .footer_bottom .top .group-image:nth-of-type(2) {
  display: flex;
  gap: 2rem;
  width: 40%;
  align-items: center;
  justify-content: flex-end;
}
footer#footer .footer_bottom .top .group-image:nth-of-type(2) .veg-fund {
  width: 40%;
}
@media (max-width: 991px) {
  footer#footer .footer_bottom .top .group-image:nth-of-type(2) .veg-fund {
    width: 100%;
  }
}
@media (max-width: 991px) {
  footer#footer .footer_bottom .top .group-image:nth-of-type(2) {
    flex-direction: column;
  }
}
footer#footer .footer_bottom .bottom {
  width: 68%;
}
@media (max-width: 991px) {
  footer#footer .footer_bottom .bottom {
    width: 100%;
  }
}
footer#footer .footer_bottom .right_side {
  width: 28%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
@media (max-width: 991px) {
  footer#footer .footer_bottom .right_side {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 3rem;
  }
}

nav.main_navigation {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
nav.main_navigation.active {
  background: rgba(0, 36, 89, 0.34);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(12.1px);
          backdrop-filter: blur(12.1px);
}
nav.main_navigation > .nav_buttons.nav_buttons_mobile {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}
@media (min-width: 992px) {
  nav.main_navigation > .nav_buttons.nav_buttons_mobile {
    display: none;
  }
}
@media (max-width: 991px) {
  nav.main_navigation > .nav_buttons.nav_buttons_mobile {
    padding: 3rem 3rem 0;
  }
}
nav.main_navigation > .nav_buttons.nav_buttons_mobile > .button {
  cursor: pointer;
  border-radius: 10rem;
  background: var(--secondary) !important;
  border-color: var(--secondary) !important;
}
nav.main_navigation > .nav_buttons.nav_buttons_mobile > .button.create-account-button:hover {
  opacity: 0.5 !important;
}
nav.main_navigation > .nav_buttons.nav_buttons_mobile > .button.trigger_logout_popup:hover, nav.main_navigation > .nav_buttons.nav_buttons_mobile > .button.button-white:hover {
  background: var(--secondary) !important;
  border-color: var(--secondary) !important;
}
nav.main_navigation > .nav_buttons.nav_buttons_mobile > .button span {
  text-transform: none !important;
}
@media (max-width: 991px) {
  nav.main_navigation > .nav_buttons.nav_buttons_mobile > .button {
    border: none;
    height: 5rem;
  }
}
nav.main_navigation > .nav_buttons.nav_buttons_mobile .user_profile {
  margin-left: 3rem;
  cursor: pointer;
}
nav.main_navigation > .nav_buttons.nav_buttons_mobile .user_profile .profile_picture {
  width: 4.8rem;
  height: 4.8rem;
}
nav.main_navigation > .nav_buttons.nav_buttons_mobile .user_profile .profile_picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 50%;
}
nav.main_navigation > .nav_buttons.nav_buttons_mobile .user_profile .profile_details {
  display: none;
  position: absolute;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 3rem 2rem;
  border: 1px solid #fff;
  width: 30rem;
  border-radius: 12px;
  background: #1F1F2C;
  cursor: initial;
}
@media (min-width: 992px) {
  nav.main_navigation > .nav_buttons.nav_buttons_mobile .user_profile .profile_details {
    top: calc(100% + 2rem);
    left: 0;
  }
}
@media (max-width: 991px) {
  nav.main_navigation > .nav_buttons.nav_buttons_mobile .user_profile .profile_details {
    top: 3rem;
    left: 3rem;
    width: calc(100% - 6rem);
    z-index: 9999;
  }
}
nav.main_navigation > .nav_buttons.nav_buttons_mobile .user_profile .profile_details.active {
  display: flex;
}
nav.main_navigation > .nav_buttons.nav_buttons_mobile .user_profile .profile_details .close_button {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
nav.main_navigation > .nav_buttons.nav_buttons_mobile .user_profile .profile_details .close_button svg {
  width: 3rem;
}
nav.main_navigation > .nav_buttons.nav_buttons_mobile .user_profile .profile_details .close_button svg path {
  fill: #fff;
}
nav.main_navigation > .nav_buttons.nav_buttons_mobile .user_profile .profile_details .username {
  font-family: "QTAgateType";
  color: var(--background);
  font-size: 2rem;
  display: block;
  margin: 0 0 3rem;
}
nav.main_navigation > .nav_buttons.nav_buttons_mobile .user_profile .profile_details .messages_area {
  display: block;
}
@media (max-width: 991px) {
  nav.main_navigation > .nav_buttons.nav_buttons_mobile .user_profile .profile_details .messages_area {
    flex-direction: column !important;
  }
}
nav.main_navigation > .nav_buttons.nav_buttons_mobile .user_profile .profile_details .messages_area span.messages_header {
  width: 100%;
  display: block;
  font-family: "DM Sans";
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  color: var(--background);
  margin: 0 0 1rem;
  text-transform: none;
}
nav.main_navigation > .nav_buttons.nav_buttons_mobile .user_profile .profile_details .messages_area p {
  width: 100%;
  display: block;
  color: var(--background);
}
nav.main_navigation > .nav_buttons.nav_buttons_mobile .user_profile .profile_details hr {
  width: 100%;
  height: 1px;
  display: block;
  border: none;
  background: #28303F;
  margin: 1.5rem 0 3rem;
}
nav.main_navigation > .nav_buttons.nav_buttons_mobile .user_profile .profile_details .profile_button,
nav.main_navigation > .nav_buttons.nav_buttons_mobile .user_profile .profile_details .reviews_button,
nav.main_navigation > .nav_buttons.nav_buttons_mobile .user_profile .profile_details .subscriptions_button {
  margin-bottom: 1rem;
}
nav.main_navigation > .nav_buttons.nav_buttons_mobile .user_profile .profile_details .profile_button span,
nav.main_navigation > .nav_buttons.nav_buttons_mobile .user_profile .profile_details .reviews_button span,
nav.main_navigation > .nav_buttons.nav_buttons_mobile .user_profile .profile_details .subscriptions_button span {
  text-transform: none;
}
nav.main_navigation > .nav_buttons.nav_buttons_mobile .user_profile .profile_details .logout_button span {
  text-transform: none;
}
@media (min-width: 992px) {
  nav.main_navigation {
    height: 100%;
  }
  nav.main_navigation > div {
    height: 100%;
  }
  nav.main_navigation > div ul.main_navigation_inner {
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style-type: none;
  }
  nav.main_navigation > div ul.main_navigation_inner > li {
    height: 100%;
    margin-right: 5rem;
  }
  nav.main_navigation > div ul.main_navigation_inner > li > a {
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  nav.main_navigation > div ul.main_navigation_inner > li > ul {
    display: none;
    position: absolute;
    top: 100%;
    background: var(--header);
    padding: 2rem !important;
  }
  nav.main_navigation > div ul.main_navigation_inner > li > ul li:not(:last-child) {
    margin-bottom: 0;
  }
  nav.main_navigation > div ul.main_navigation_inner > li > ul li.current-menu-item > a, nav.main_navigation > div ul.main_navigation_inner > li > ul li.current-menu-parent > a {
    color: var(--secondary);
  }
  nav.main_navigation > div ul.main_navigation_inner > li > ul li a {
    font-size: 1.6rem;
    color: var(--background);
    justify-content: flex-start !important;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  nav.main_navigation > div ul.main_navigation_inner > li > ul li a:hover {
    color: var(--secondary);
    text-decoration: underline;
  }
  nav.main_navigation > div ul.main_navigation_inner > li.current-menu-item > a, nav.main_navigation > div ul.main_navigation_inner > li.current-menu-parent > a {
    font-weight: 700;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  nav.main_navigation > div ul.main_navigation_inner > li.contact-us-button {
    margin-left: 12rem !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 992px) {
  nav.main_navigation > div ul.main_navigation_inner > li.contact-us-button > a {
    background: var(--white);
    color: var(--primary);
    height: auto;
    width: auto;
    display: inline-block;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    text-align: center;
    border-radius: 500px;
    padding: 1.4rem 2.4rem;
    font-family: "DM Sans", "arial";
    font-size: 1.6rem;
    font-weight: 700;
    font-style: normal;
    line-height: normal;
    transition: all 0.5s ease;
    border: 2px solid transparent;
  }
}
@media (min-width: 992px) {
  nav.main_navigation > div ul.main_navigation_inner > li:hover > ul {
    display: block !important;
  }
}
@media (min-width: 992px) {
  nav.main_navigation .search_form, nav.main_navigation .social_media_icons {
    display: none !important;
  }
}
@media (max-width: 991px) {
  nav.main_navigation {
    display: none;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
  }
  nav.main_navigation.active {
    display: flex;
  }
  nav.main_navigation > div {
    width: 100%;
  }
  nav.main_navigation > div > ul {
    width: 100%;
    display: flex;
    list-style-type: none;
    flex-direction: column !important;
    padding: 10rem 3rem 2rem !important;
    margin-top: 4rem;
  }
  nav.main_navigation > div > ul > li {
    width: 100%;
    margin-bottom: 2rem !important;
  }
  nav.main_navigation > div > ul > li:last-child {
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--background);
  }
  nav.main_navigation > div > ul > li.menu-item-has-children > a:after {
    content: ">";
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
  }
  nav.main_navigation > div > ul > li.current-menu-item > a, nav.main_navigation > div > ul > li.current-menu-parent > a {
    color: var(--secondary);
  }
  nav.main_navigation > div > ul > li > a {
    width: 100%;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--background);
    align-items: center !important;
    justify-content: space-between !important;
  }
  nav.main_navigation > div > ul > li:hover > ul {
    display: flex;
  }
  nav.main_navigation > div > ul > li > ul {
    display: none;
    width: 100%;
    list-style-type: none;
    flex-direction: column !important;
    padding: 0;
    margin-top: 3rem;
  }
  nav.main_navigation > div > ul > li > ul > li {
    width: 100%;
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 991px) and (min-width: 1200px) {
  nav.main_navigation > div > ul > li > ul > li {
    margin-right: 3rem;
  }
}
@media (max-width: 991px) and (min-width: 992px) and (max-width: 1199px) {
  nav.main_navigation > div > ul > li > ul > li {
    margin-right: 1rem;
  }
}
@media (max-width: 991px) {
  nav.main_navigation > div > ul > li > ul > li.current-menu-item > a, nav.main_navigation > div > ul > li > ul > li.current-menu-parent > a {
    color: var(--secondary);
  }
}
@media (max-width: 991px) {
  nav.main_navigation > div > ul > li > ul > li > a {
    font-size: 1.6rem;
    font-weight: 400;
    text-decoration: none;
    color: var(--background);
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
}
@media (max-width: 991px) {
  nav.main_navigation > .social_media_icons {
    display: flex;
    position: relative;
    top: unset;
    padding: 3rem;
    background: none;
  }
  nav.main_navigation > .social_media_icons a {
    background: #28303F;
    border-radius: 1rem;
    padding: 1rem;
  }
  nav.main_navigation > .social_media_icons a:not(:last-child) {
    margin-right: 1rem;
  }
  nav.main_navigation > .social_media_icons a svg {
    width: 2.5rem !important;
    margin: 0 !important;
  }
}

.blog_wrapper .blog_posts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 5rem 0 10rem;
}
@media (max-width: 991px) {
  .blog_wrapper .blog_posts {
    flex-direction: column;
  }
}
.blog_wrapper .blog_posts .blog_post {
  width: 30%;
  margin-top: 5rem;
}
@media (max-width: 991px) {
  .blog_wrapper .blog_posts .blog_post {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.blog_wrapper .blog_posts .blog_post a {
  text-decoration: none;
}
.blog_wrapper .blog_posts .blog_post .reading_time {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 2rem 0;
}
.blog_wrapper .blog_posts .blog_post .reading_time svg {
  margin-right: 1rem;
}
.blog_wrapper .blog_posts .blog_post .reading_time span {
  color: #BCBCBC;
  font-family: Verdana;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.blog_wrapper .blog_posts .blog_post h3 {
  color: #9F237B;
  font-family: Verdana;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  margin: 2rem 0;
}
.blog_wrapper .blog_posts .blog_post .excerpt {
  margin: 2rem 0;
}
.blog_wrapper .blog_posts .blog_post .excerpt p {
  color: #676767;
  font-family: Verdana;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.blog_wrapper .blog_posts .pagination-links {
  width: 100%;
}

.page_not_found_wrapper {
  background-color: var(--blue);
  padding: 10rem 0;
}
.page_not_found_wrapper .page_404_section .section_inner {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  position: relative;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1;
}
.page_not_found_wrapper .page_404_section .section_inner .error_content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page_not_found_wrapper .page_404_section .section_inner .error_content .content-text {
  width: 100%;
}
.page_not_found_wrapper .page_404_section .section_inner .error_content .content-text p {
  width: 100%;
  text-align: center;
  margin: 0 0 3rem;
  color: var(--white);
}
.page_not_found_wrapper .page_404_section .section_inner .error_content .content-text p:first-of-type {
  font-size: 3rem;
  font-weight: 600;
  text-transform: uppercase;
}
.page_not_found_wrapper .page_404_section .section_inner .error_content .call_to_action_buttons {
  justify-content: center;
}
.page_not_found_wrapper img.iwt_bg_pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
@media (max-width: 991px) {
  body.archive .hero_banner_alt > .container {
    padding-top: 110px !important;
    padding-bottom: 50px !important;
  }
}

@media (max-width: 991px) {
  body:not(.archive) .hero_banner_alt > .container {
    padding-top: 100px !important;
    padding-bottom: 50px !important;
  }
}

.hero_banner_alt {
  display: flex;
  flex-direction: column;
  background-color: var(--secondary);
  position: relative;
}
.hero_banner_alt.full {
  height: 60vh;
}
@media screen and (max-width: 1510px) {
  .hero_banner_alt.full {
    height: 70vh;
  }
}
@media (max-width: 400px) {
  .hero_banner_alt.full {
    height: 80vh;
  }
}
.hero_banner_alt > .container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  z-index: 2;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .hero_banner_alt > .container {
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .hero_banner_alt > .container .hero_banner_alt_inner {
    align-items: center !important;
  }
}
@media (max-width: 500px) {
  .hero_banner_alt > .container {
    padding-top: 140px;
  }
}
.hero_banner_alt > .container .down-arrow {
  position: relative;
  top: 15%;
  animation: bounce 2s infinite;
  cursor: pointer;
  width: 100%;
}
@media (max-width: 1510px) {
  .hero_banner_alt > .container .down-arrow {
    top: 6%;
  }
}
.hero_banner_alt > .container.left {
  align-items: flex-start;
  text-align: left;
}
.hero_banner_alt > .container.left .hero_banner_alt_inner {
  align-items: flex-start;
}
.hero_banner_alt > .container.center {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero_banner_alt > .container.center .hero_banner_alt_inner {
  align-items: center;
}
.hero_banner_alt > .container.right {
  align-items: flex-end;
  text-align: right;
}
.hero_banner_alt > .container.right .hero_banner_alt_inner {
  align-items: flex-end;
}
.hero_banner_alt > .container .hero_banner_alt_inner {
  width: 50%;
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
@media (max-width: 1200px) {
  .hero_banner_alt > .container .hero_banner_alt_inner {
    width: 100%;
  }
}
.hero_banner_alt > .container .hero_banner_alt_inner p#breadcrumbs {
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}
@media (max-width: 1510px) {
  .hero_banner_alt > .container .hero_banner_alt_inner p#breadcrumbs {
    margin-top: 6rem;
  }
}
.hero_banner_alt > .container .hero_banner_alt_inner p#breadcrumbs > span {
  width: 100%;
}
.hero_banner_alt > .container .hero_banner_alt_inner p#breadcrumbs a, .hero_banner_alt > .container .hero_banner_alt_inner p#breadcrumbs span {
  display: inline-block;
  text-decoration: none;
  font-weight: 400;
  color: var(--white) !important;
}
.hero_banner_alt > .container .hero_banner_alt_inner .title-image-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 991px) {
  .hero_banner_alt > .container .hero_banner_alt_inner .title-image-wrapper {
    align-items: center;
  }
}
@media (max-width: 768px) {
  .hero_banner_alt > .container .hero_banner_alt_inner .title-image-wrapper {
    margin-top: 0rem;
  }
}
.hero_banner_alt > .container .hero_banner_alt_inner .title-image-wrapper h1 {
  font-size: 56px;
  margin: 0;
  color: var(--white);
}
@media (max-width: 1510px) {
  .hero_banner_alt > .container .hero_banner_alt_inner .title-image-wrapper h1 {
    font-size: 48px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero_banner_alt > .container .hero_banner_alt_inner .title-image-wrapper h1 {
    font-size: 4rem;
  }
}
@media (max-width: 767px) {
  .hero_banner_alt > .container .hero_banner_alt_inner .title-image-wrapper h1 {
    font-size: 22px;
    margin: 0;
  }
}
.hero_banner_alt > .container .hero_banner_alt_inner .title-image-wrapper h1 span {
  font-size: inherit;
  font-weight: inherit;
  color: var(--white);
}
.hero_banner_alt > .container .hero_banner_alt_inner .title-image-wrapper .image-wrapper {
  width: 100px;
  height: 80px;
}
.hero_banner_alt > .container .hero_banner_alt_inner .title-image-wrapper .image-wrapper img.veg-image {
  -o-object-fit: contain;
     object-fit: contain;
  position: unset;
}
.hero_banner_alt > .container .hero_banner_alt_inner p {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 2rem;
}
@media (max-width: 1510px) {
  .hero_banner_alt > .container .hero_banner_alt_inner p {
    font-size: 16px;
  }
}
.hero_banner_alt > .container .hero_banner_alt_inner.top {
  justify-content: flex-start;
}
.hero_banner_alt > .container .hero_banner_alt_inner.middle {
  justify-content: center;
}
.hero_banner_alt > .container .hero_banner_alt_inner.bottom {
  justify-content: flex-end;
}
.hero_banner_alt .image_overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 0;
  inset: 0;
  background: #002459;
}
.hero_banner_alt img.hero_banner_alt_image_desktop {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  z-index: 0;
  mix-blend-mode: soft-light;
}
@media (max-width: 767px) {
  .hero_banner_alt img.hero_banner_alt_image_desktop {
    display: none;
  }
}
.hero_banner_alt img.hero_banner_alt_image_mobile {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 0;
}
@media (min-width: 768px) {
  .hero_banner_alt img.hero_banner_alt_image_mobile {
    display: none;
  }
}

.search_area.active {
  display: block;
}

/* Styling the search area */
.search_icon {
  cursor: pointer;
}

#search-results, #search-results-mobile {
  position: absolute;
  z-index: 99;
  max-height: 300px;
  overflow-y: auto;
  background: #ffffff;
  width: 100%;
  text-align: left;
}

.search-result, .search-category {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.search-results a, .search-category a {
  text-decoration: none !important;
  font-weight: bold;
}

.search_area {
  width: 80%;
  position: relative;
  z-index: 21;
  border: 1px solid white;
  border-radius: 3px;
}
@media (max-width: 991px) {
  .search_area {
    width: 100% !important;
  }
}

.overlay_search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  /* Dark transparent overlay */
  display: none;
  z-index: 20;
  /* Behind the search area */
}

.thumb-and-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.thumb-and-title span {
  text-decoration: none;
}

.title-type {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.search_type {
  font-size: 14px;
}

span.search_title {
  display: block;
  font-size: 16px;
}

.overlay_search.active {
  display: block;
}

#search-results-mobile p.no_results {
  color: #002459;
  font-size: 14px;
  padding: 1rem;
}

input#search-input-mobile {
  width: 100%;
  height: 50px;
  padding: 1rem;
  margin: 0;
  font-size: 14px;
  background-color: var(--white);
  border: 1px solid var(--white);
  color: #545454;
}

form#search-form-mobile {
  display: flex;
  width: 100%;
  align-items: center;
  background-color: var(--white);
  border: 1px solid var(--white);
  border-radius: 2%;
  padding: 0 0 0 1rem;
}

form#search-form-mobile .dgwt-wcas-ico-magnifier {
  height: 27px;
  width: auto;
  opacity: 0.5;
  fill: #444;
}

form#search-form-mobile .dgwt-wcas-ico-magnifier path {
  fill: #545454;
}

input#search-input {
  width: 100%;
  height: 50px;
  padding: 1rem;
  margin: 0;
  font-size: 14px;
  background-color: #545454;
  border: 1px solid #545454;
  color: #fff;
}

form#search-form {
  display: flex;
  width: 100%;
  align-items: center;
  background-color: #545454;
  border: 1px solid #545454;
  border-radius: 2%;
  padding: 0 1rem;
}

form#search-form .dgwt-wcas-ico-magnifier {
  height: 27px;
  width: auto;
  opacity: 0.5;
  fill: #444;
}

form#search-form.dgwt-wcas-ico-magnifier path {
  fill: #fff;
}

.recipes_archive_section {
  padding: 60px 0;
}

.recipe-categories {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.recipe-categories a {
  text-decoration: none;
}
@media (max-width: 991px) {
  .recipe-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .recipe-categories {
    grid-template-columns: 1fr;
  }
}
.recipe-categories .current, .recipe-categories .active {
  background: var(--green) !important;
}
.recipe-categories .current .category-image img, .recipe-categories .current .category-image svg, .recipe-categories .active .category-image img, .recipe-categories .active .category-image svg {
  mix-blend-mode: hard-light;
  filter: brightness(1000%);
}
.recipe-categories .current .category-title, .recipe-categories .active .category-title {
  color: var(--white) !important;
}
.recipe-categories .recipe-category {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}
@media (max-width: 992px) {
  .recipe-categories .recipe-category {
    min-height: auto;
  }
}
.recipe-categories .recipe-category:hover {
  transform: translateY(-5px);
  background-color: var(--green);
}
.recipe-categories .recipe-category:hover .category-image img, .recipe-categories .recipe-category:hover .category-image svg {
  mix-blend-mode: hard-light;
  filter: brightness(1000%);
}
.recipe-categories .recipe-category:hover .category-image img path, .recipe-categories .recipe-category:hover .category-image svg path {
  fill: var(--white);
}
.recipe-categories .recipe-category:hover .category-title {
  color: var(--white);
}
.recipe-categories .recipe-category .category-image {
  margin-bottom: 15px;
  height: 58px;
  width: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.recipe-categories .recipe-category .category-image img, .recipe-categories .recipe-category .category-image svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.recipe-categories .recipe-category .category-title {
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 15px;
  color: #408EC6;
}
@media (max-width: 1024px) {
  .recipe-categories .recipe-category .category-title {
    font-size: 20px;
  }
}
.recipe-categories .recipe-category .category-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.recipe-categories .recipe-category .category-link:hover {
  background-color: var(--secondary);
}

.post_query_section {
  margin-bottom: 4rem;
}
.post_query_section .section_inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1512px) {
  .post_query_section .section_inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .post_query_section .section_inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 786px) {
  .post_query_section .section_inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
.post_query_section .section_inner .top-section {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: baseline;
  margin-bottom: 4rem;
}
.post_query_section .section_inner .top-section .left-side {
  width: 70%;
  padding-right: 9rem;
}
.post_query_section .section_inner .top-section .left-side p {
  color: #6B6B6B;
  max-width: 85%;
}
.post_query_section .section_inner .top-section .left-side p strong {
  color: #408EC6;
}
.post_query_section .section_inner .top-section .left-side h2, .post_query_section .section_inner .top-section .left-side h3, .post_query_section .section_inner .top-section .left-side h4, .post_query_section .section_inner .top-section .left-side h5, .post_query_section .section_inner .top-section .left-side a, .post_query_section .section_inner .top-section .left-side li, .post_query_section .section_inner .top-section .left-side span {
  color: var(--blue);
}
.post_query_section .section_inner .top-section .right-side {
  display: flex;
  justify-content: flex-end;
  width: 30%;
}
.post_query_section .section_inner .post_block {
  width: 100%;
  min-height: 429px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.post_query_section .section_inner .post_block span.code {
  font-size: 14px;
  font-weight: 700;
  background-color: var(--green);
  padding: 1rem;
  color: var(--white);
  position: absolute;
  z-index: 1;
  top: 2rem;
  left: 2rem;
}
.post_query_section .section_inner .post_block .post_overlay {
  position: absolute;
  width: 100%;
  height: 85%;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 32, 91, 0.95) 0%, rgba(0, 32, 91, 0.85) 30%, rgba(0, 32, 91, 0.5) 60%, rgba(0, 32, 91, 0.1) 85%, rgba(0, 32, 91, 0) 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  bottom: 0 !important;
  top: unset;
  left: 0;
  margin: 0;
  padding: 1rem 4rem;
}
.post_query_section .section_inner .post_block .post_overlay:focus a {
  display: block;
  opacity: 1;
  transition-delay: 0s;
  margin-bottom: 1rem;
}
.post_query_section .section_inner .post_block .post_overlay:hover a {
  display: block;
  opacity: 1;
  transition-delay: 0s;
  margin-bottom: 1rem;
}
.post_query_section .section_inner .post_block .post_overlay h3, .post_query_section .section_inner .post_block .post_overlay p {
  width: 100%;
  color: var(--white);
}
.post_query_section .section_inner .post_block .post_overlay h3 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 2rem;
}
.post_query_section .section_inner .post_block .post_overlay p {
  font-size: 1.6rem;
  font-weight: 300;
  margin: 0 0 2rem;
}
.post_query_section .section_inner .post_block .post_overlay a {
  color: var(--green);
  font-size: 16px;
  text-transform: capitalize;
  display: none;
  opacity: 0;
  /* Set opacity to 0 for smooth fade-in */
  transition: visibility 0s linear 0.3s, opacity 0.3s ease-in-out;
  /* Transition effect */
}
.post_query_section .section_inner .post_block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.post_query_section .pagination {
  display: flex;
  justify-content: flex-end;
  margin-top: 5rem;
}

.contact_section {
  width: 100%;
  background-color: var(--blue);
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}
@media (max-width: 991px) {
  .contact_section {
    padding-top: 56px;
    padding-bottom: 160px;
  }
}
.contact_section .image_container__image {
  position: absolute;
  bottom: -100px;
  left: 0;
  z-index: 0;
  width: 744px;
  max-width: 100%;
  height: auto;
}
@media (max-width: 400px) {
  .contact_section .image_container__image {
    bottom: -67px;
  }
}
.contact_section .section_inner {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .contact_section .section_inner {
    flex-direction: column;
  }
}
.contact_section .section_inner .inner_content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  width: 50%;
}
@media screen and (max-width: 1510px) {
  .contact_section .section_inner .inner_content {
    width: 45%;
  }
}
.contact_section .section_inner .inner_content h2 {
  color: var(--white);
  margin: 0 0 3rem;
}
.contact_section .section_inner .inner_content p {
  color: var(--white);
  margin: 0 0 3rem;
}
.contact_section .section_inner .inner_content a {
  font-weight: 500;
}
@media (max-width: 991px) {
  .contact_section .section_inner .inner_content {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .contact_section .section_inner .inner_content {
    width: 100%;
  }
}

.single-recipe .hero_banner_alt, .single-practical_activity .hero_banner_alt, .single-learning_area .hero_banner_alt, .single-produce_knowledge .hero_banner_alt {
  display: flex;
  flex-direction: column;
  background-color: var(--secondary);
  position: relative;
}
.single-recipe .hero_banner_alt.full, .single-practical_activity .hero_banner_alt.full, .single-learning_area .hero_banner_alt.full, .single-produce_knowledge .hero_banner_alt.full {
  height: 60vh;
}
.single-recipe .hero_banner_alt > .container, .single-practical_activity .hero_banner_alt > .container, .single-learning_area .hero_banner_alt > .container, .single-produce_knowledge .hero_banner_alt > .container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  z-index: 2;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .single-recipe .hero_banner_alt > .container, .single-practical_activity .hero_banner_alt > .container, .single-learning_area .hero_banner_alt > .container, .single-produce_knowledge .hero_banner_alt > .container {
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .single-recipe .hero_banner_alt > .container .hero_banner_alt_inner, .single-practical_activity .hero_banner_alt > .container .hero_banner_alt_inner, .single-learning_area .hero_banner_alt > .container .hero_banner_alt_inner, .single-produce_knowledge .hero_banner_alt > .container .hero_banner_alt_inner {
    align-items: center !important;
  }
}
.single-recipe .hero_banner_alt > .container .down-arrow, .single-practical_activity .hero_banner_alt > .container .down-arrow, .single-learning_area .hero_banner_alt > .container .down-arrow, .single-produce_knowledge .hero_banner_alt > .container .down-arrow {
  position: relative;
  top: 20%;
  animation: bounce 2s infinite;
  cursor: pointer;
}
.single-recipe .hero_banner_alt > .container.left, .single-practical_activity .hero_banner_alt > .container.left, .single-learning_area .hero_banner_alt > .container.left, .single-produce_knowledge .hero_banner_alt > .container.left {
  align-items: flex-start;
  text-align: left;
}
.single-recipe .hero_banner_alt > .container.left .hero_banner_alt_inner, .single-practical_activity .hero_banner_alt > .container.left .hero_banner_alt_inner, .single-learning_area .hero_banner_alt > .container.left .hero_banner_alt_inner, .single-produce_knowledge .hero_banner_alt > .container.left .hero_banner_alt_inner {
  align-items: flex-start;
}
.single-recipe .hero_banner_alt > .container.center, .single-practical_activity .hero_banner_alt > .container.center, .single-learning_area .hero_banner_alt > .container.center, .single-produce_knowledge .hero_banner_alt > .container.center {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.single-recipe .hero_banner_alt > .container.center .hero_banner_alt_inner, .single-practical_activity .hero_banner_alt > .container.center .hero_banner_alt_inner, .single-learning_area .hero_banner_alt > .container.center .hero_banner_alt_inner, .single-produce_knowledge .hero_banner_alt > .container.center .hero_banner_alt_inner {
  align-items: center;
}
.single-recipe .hero_banner_alt > .container.right, .single-practical_activity .hero_banner_alt > .container.right, .single-learning_area .hero_banner_alt > .container.right, .single-produce_knowledge .hero_banner_alt > .container.right {
  align-items: flex-end;
  text-align: right;
}
.single-recipe .hero_banner_alt > .container.right .hero_banner_alt_inner, .single-practical_activity .hero_banner_alt > .container.right .hero_banner_alt_inner, .single-learning_area .hero_banner_alt > .container.right .hero_banner_alt_inner, .single-produce_knowledge .hero_banner_alt > .container.right .hero_banner_alt_inner {
  align-items: flex-end;
}
.single-recipe .hero_banner_alt > .container .hero_banner_alt_inner, .single-practical_activity .hero_banner_alt > .container .hero_banner_alt_inner, .single-learning_area .hero_banner_alt > .container .hero_banner_alt_inner, .single-produce_knowledge .hero_banner_alt > .container .hero_banner_alt_inner {
  width: auto;
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
  margin-bottom: 4rem;
}
@media (max-width: 991px) {
  .single-recipe .hero_banner_alt > .container .hero_banner_alt_inner, .single-practical_activity .hero_banner_alt > .container .hero_banner_alt_inner, .single-learning_area .hero_banner_alt > .container .hero_banner_alt_inner, .single-produce_knowledge .hero_banner_alt > .container .hero_banner_alt_inner {
    width: 100%;
    margin-bottom: 0;
  }
}
.single-recipe .hero_banner_alt > .container .hero_banner_alt_inner p#breadcrumbs, .single-practical_activity .hero_banner_alt > .container .hero_banner_alt_inner p#breadcrumbs, .single-learning_area .hero_banner_alt > .container .hero_banner_alt_inner p#breadcrumbs, .single-produce_knowledge .hero_banner_alt > .container .hero_banner_alt_inner p#breadcrumbs {
  font-weight: 400;
  color: var(--white);
  text-transform: capitalize;
  line-height: 1;
}
.single-recipe .hero_banner_alt > .container .hero_banner_alt_inner p#breadcrumbs > span, .single-practical_activity .hero_banner_alt > .container .hero_banner_alt_inner p#breadcrumbs > span, .single-learning_area .hero_banner_alt > .container .hero_banner_alt_inner p#breadcrumbs > span, .single-produce_knowledge .hero_banner_alt > .container .hero_banner_alt_inner p#breadcrumbs > span {
  width: 100%;
}
.single-recipe .hero_banner_alt > .container .hero_banner_alt_inner p#breadcrumbs span, .single-practical_activity .hero_banner_alt > .container .hero_banner_alt_inner p#breadcrumbs span, .single-learning_area .hero_banner_alt > .container .hero_banner_alt_inner p#breadcrumbs span, .single-produce_knowledge .hero_banner_alt > .container .hero_banner_alt_inner p#breadcrumbs span {
  text-decoration: none;
  font-weight: bold;
  color: var(--white) !important;
  text-transform: capitalize;
  font-size: 18px;
}
.single-recipe .hero_banner_alt > .container .hero_banner_alt_inner p#breadcrumbs span a, .single-practical_activity .hero_banner_alt > .container .hero_banner_alt_inner p#breadcrumbs span a, .single-learning_area .hero_banner_alt > .container .hero_banner_alt_inner p#breadcrumbs span a, .single-produce_knowledge .hero_banner_alt > .container .hero_banner_alt_inner p#breadcrumbs span a {
  font-weight: 100;
  font-size: inherit;
  text-transform: capitalize;
}
.single-recipe .hero_banner_alt > .container .hero_banner_alt_inner p#breadcrumbs span #text, .single-practical_activity .hero_banner_alt > .container .hero_banner_alt_inner p#breadcrumbs span #text, .single-learning_area .hero_banner_alt > .container .hero_banner_alt_inner p#breadcrumbs span #text, .single-produce_knowledge .hero_banner_alt > .container .hero_banner_alt_inner p#breadcrumbs span #text {
  font-size: 18px;
}
.single-recipe .hero_banner_alt > .container .hero_banner_alt_inner h1, .single-practical_activity .hero_banner_alt > .container .hero_banner_alt_inner h1, .single-learning_area .hero_banner_alt > .container .hero_banner_alt_inner h1, .single-produce_knowledge .hero_banner_alt > .container .hero_banner_alt_inner h1 {
  font-size: 56px;
  color: var(--white);
}
@media (min-width: 768px) and (max-width: 991px) {
  .single-recipe .hero_banner_alt > .container .hero_banner_alt_inner h1, .single-practical_activity .hero_banner_alt > .container .hero_banner_alt_inner h1, .single-learning_area .hero_banner_alt > .container .hero_banner_alt_inner h1, .single-produce_knowledge .hero_banner_alt > .container .hero_banner_alt_inner h1 {
    font-size: 5rem;
  }
}
@media (max-width: 767px) {
  .single-recipe .hero_banner_alt > .container .hero_banner_alt_inner h1, .single-practical_activity .hero_banner_alt > .container .hero_banner_alt_inner h1, .single-learning_area .hero_banner_alt > .container .hero_banner_alt_inner h1, .single-produce_knowledge .hero_banner_alt > .container .hero_banner_alt_inner h1 {
    font-size: 4rem;
  }
}
.single-recipe .hero_banner_alt > .container .hero_banner_alt_inner h1 span.code, .single-practical_activity .hero_banner_alt > .container .hero_banner_alt_inner h1 span.code, .single-learning_area .hero_banner_alt > .container .hero_banner_alt_inner h1 span.code, .single-produce_knowledge .hero_banner_alt > .container .hero_banner_alt_inner h1 span.code {
  font-size: 14px;
  font-weight: 700;
  background-color: var(--green);
  padding: 1rem;
  color: var(--white);
  vertical-align: middle;
}
.single-recipe .hero_banner_alt > .container .hero_banner_alt_inner h1 span, .single-practical_activity .hero_banner_alt > .container .hero_banner_alt_inner h1 span, .single-learning_area .hero_banner_alt > .container .hero_banner_alt_inner h1 span, .single-produce_knowledge .hero_banner_alt > .container .hero_banner_alt_inner h1 span {
  font-size: inherit;
  font-weight: inherit;
  color: var(--white);
}
.single-recipe .hero_banner_alt .image_overlay, .single-practical_activity .hero_banner_alt .image_overlay, .single-learning_area .hero_banner_alt .image_overlay, .single-produce_knowledge .hero_banner_alt .image_overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 93%;
  z-index: 1;
  background: #00061a;
  background: linear-gradient(0deg, rgba(0, 6, 26, 0.93) 56%, rgba(0, 0, 0, 0.61) 100%);
}
.single-recipe .hero_banner_alt img, .single-practical_activity .hero_banner_alt img, .single-learning_area .hero_banner_alt img, .single-produce_knowledge .hero_banner_alt img {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  z-index: 0;
}
@media (max-width: 767px) {
  .single-recipe .hero_banner_alt img.hero_banner_alt_image_desktop, .single-practical_activity .hero_banner_alt img.hero_banner_alt_image_desktop, .single-learning_area .hero_banner_alt img.hero_banner_alt_image_desktop, .single-produce_knowledge .hero_banner_alt img.hero_banner_alt_image_desktop {
    display: none;
  }
}
@media (min-width: 768px) {
  .single-recipe .hero_banner_alt img.hero_banner_alt_image_mobile, .single-practical_activity .hero_banner_alt img.hero_banner_alt_image_mobile, .single-learning_area .hero_banner_alt img.hero_banner_alt_image_mobile, .single-produce_knowledge .hero_banner_alt img.hero_banner_alt_image_mobile {
    display: none;
  }
}
.single-recipe .main_section, .single-practical_activity .main_section, .single-learning_area .main_section, .single-produce_knowledge .main_section {
  margin-top: 4rem;
}
.single-recipe .main_section .section_inner .section_main_content, .single-practical_activity .main_section .section_inner .section_main_content, .single-learning_area .main_section .section_inner .section_main_content, .single-produce_knowledge .main_section .section_inner .section_main_content {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}
@media screen and (max-width: 991px) {
  .single-recipe .main_section .section_inner .section_main_content, .single-practical_activity .main_section .section_inner .section_main_content, .single-learning_area .main_section .section_inner .section_main_content, .single-produce_knowledge .main_section .section_inner .section_main_content {
    flex-direction: column;
  }
}
.single-recipe .main_section .section_inner .section_main_content .left-side, .single-practical_activity .main_section .section_inner .section_main_content .left-side, .single-learning_area .main_section .section_inner .section_main_content .left-side, .single-produce_knowledge .main_section .section_inner .section_main_content .left-side {
  width: 45%;
}
@media (max-width: 991px) {
  .single-recipe .main_section .section_inner .section_main_content .left-side, .single-practical_activity .main_section .section_inner .section_main_content .left-side, .single-learning_area .main_section .section_inner .section_main_content .left-side, .single-produce_knowledge .main_section .section_inner .section_main_content .left-side {
    width: 100%;
  }
}
.single-recipe .main_section .section_inner .section_main_content .left-side .details-section, .single-practical_activity .main_section .section_inner .section_main_content .left-side .details-section, .single-learning_area .main_section .section_inner .section_main_content .left-side .details-section, .single-produce_knowledge .main_section .section_inner .section_main_content .left-side .details-section {
  background-color: #002459;
  padding: 2rem;
  border-radius: 5px;
  position: sticky;
  top: 14.5rem;
  margin-bottom: 4rem;
}
.single-recipe .main_section .section_inner .section_main_content .left-side .details-section .details, .single-practical_activity .main_section .section_inner .section_main_content .left-side .details-section .details, .single-learning_area .main_section .section_inner .section_main_content .left-side .details-section .details, .single-produce_knowledge .main_section .section_inner .section_main_content .left-side .details-section .details {
  margin: 2rem 0;
}
.single-recipe .main_section .section_inner .section_main_content .left-side .details-section .details .image-wrapper, .single-practical_activity .main_section .section_inner .section_main_content .left-side .details-section .details .image-wrapper, .single-learning_area .main_section .section_inner .section_main_content .left-side .details-section .details .image-wrapper, .single-produce_knowledge .main_section .section_inner .section_main_content .left-side .details-section .details .image-wrapper {
  height: 117px;
  width: 117px;
  -o-object-fit: contain;
     object-fit: contain;
}
.single-recipe .main_section .section_inner .section_main_content .left-side .details-section .details span, .single-practical_activity .main_section .section_inner .section_main_content .left-side .details-section .details span, .single-learning_area .main_section .section_inner .section_main_content .left-side .details-section .details span, .single-produce_knowledge .main_section .section_inner .section_main_content .left-side .details-section .details span {
  display: inline-block;
  color: var(--white);
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 1rem;
}
.single-recipe .main_section .section_inner .section_main_content .left-side .details-section .details p, .single-practical_activity .main_section .section_inner .section_main_content .left-side .details-section .details p, .single-learning_area .main_section .section_inner .section_main_content .left-side .details-section .details p, .single-produce_knowledge .main_section .section_inner .section_main_content .left-side .details-section .details p {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
}
.single-recipe .main_section .section_inner .section_main_content .left-side .details-section .details ul li, .single-recipe .main_section .section_inner .section_main_content .left-side .details-section .details ol li, .single-practical_activity .main_section .section_inner .section_main_content .left-side .details-section .details ul li, .single-practical_activity .main_section .section_inner .section_main_content .left-side .details-section .details ol li, .single-learning_area .main_section .section_inner .section_main_content .left-side .details-section .details ul li, .single-learning_area .main_section .section_inner .section_main_content .left-side .details-section .details ol li, .single-produce_knowledge .main_section .section_inner .section_main_content .left-side .details-section .details ul li, .single-produce_knowledge .main_section .section_inner .section_main_content .left-side .details-section .details ol li {
  color: var(--white);
  font-size: 16px;
}
.single-recipe .main_section .section_inner .section_main_content .left-side .details-section .download_buttons, .single-practical_activity .main_section .section_inner .section_main_content .left-side .details-section .download_buttons, .single-learning_area .main_section .section_inner .section_main_content .left-side .details-section .download_buttons, .single-produce_knowledge .main_section .section_inner .section_main_content .left-side .details-section .download_buttons {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.single-recipe .main_section .section_inner .section_main_content .left-side .details-section .download_buttons a, .single-practical_activity .main_section .section_inner .section_main_content .left-side .details-section .download_buttons a, .single-learning_area .main_section .section_inner .section_main_content .left-side .details-section .download_buttons a, .single-produce_knowledge .main_section .section_inner .section_main_content .left-side .details-section .download_buttons a {
  font-size: 18px;
}
.single-recipe .main_section .section_inner .section_main_content .right-side, .single-practical_activity .main_section .section_inner .section_main_content .right-side, .single-learning_area .main_section .section_inner .section_main_content .right-side, .single-produce_knowledge .main_section .section_inner .section_main_content .right-side {
  width: 100%;
  margin-bottom: 4rem;
}
.single-recipe .main_section .section_inner .section_main_content .right-side h1, .single-recipe .main_section .section_inner .section_main_content .right-side h2, .single-recipe .main_section .section_inner .section_main_content .right-side h3, .single-recipe .main_section .section_inner .section_main_content .right-side h4, .single-recipe .main_section .section_inner .section_main_content .right-side h5, .single-recipe .main_section .section_inner .section_main_content .right-side h6, .single-practical_activity .main_section .section_inner .section_main_content .right-side h1, .single-practical_activity .main_section .section_inner .section_main_content .right-side h2, .single-practical_activity .main_section .section_inner .section_main_content .right-side h3, .single-practical_activity .main_section .section_inner .section_main_content .right-side h4, .single-practical_activity .main_section .section_inner .section_main_content .right-side h5, .single-practical_activity .main_section .section_inner .section_main_content .right-side h6, .single-learning_area .main_section .section_inner .section_main_content .right-side h1, .single-learning_area .main_section .section_inner .section_main_content .right-side h2, .single-learning_area .main_section .section_inner .section_main_content .right-side h3, .single-learning_area .main_section .section_inner .section_main_content .right-side h4, .single-learning_area .main_section .section_inner .section_main_content .right-side h5, .single-learning_area .main_section .section_inner .section_main_content .right-side h6, .single-produce_knowledge .main_section .section_inner .section_main_content .right-side h1, .single-produce_knowledge .main_section .section_inner .section_main_content .right-side h2, .single-produce_knowledge .main_section .section_inner .section_main_content .right-side h3, .single-produce_knowledge .main_section .section_inner .section_main_content .right-side h4, .single-produce_knowledge .main_section .section_inner .section_main_content .right-side h5, .single-produce_knowledge .main_section .section_inner .section_main_content .right-side h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-top: 1.4em;
  margin-bottom: 0.5em;
  font-size: 36px;
  color: #002459;
}
.single-recipe .main_section .section_inner .section_main_content .right-side p, .single-practical_activity .main_section .section_inner .section_main_content .right-side p, .single-learning_area .main_section .section_inner .section_main_content .right-side p, .single-produce_knowledge .main_section .section_inner .section_main_content .right-side p {
  margin: 1em 0;
}
.single-recipe .main_section .section_inner .section_main_content .right-side a, .single-practical_activity .main_section .section_inner .section_main_content .right-side a, .single-learning_area .main_section .section_inner .section_main_content .right-side a, .single-produce_knowledge .main_section .section_inner .section_main_content .right-side a {
  color: #0073e6;
  text-decoration: underline;
}
.single-recipe .main_section .section_inner .section_main_content .right-side a:hover, .single-practical_activity .main_section .section_inner .section_main_content .right-side a:hover, .single-learning_area .main_section .section_inner .section_main_content .right-side a:hover, .single-produce_knowledge .main_section .section_inner .section_main_content .right-side a:hover {
  color: #005ab3;
}
.single-recipe .main_section .section_inner .section_main_content .right-side ul, .single-recipe .main_section .section_inner .section_main_content .right-side ol, .single-practical_activity .main_section .section_inner .section_main_content .right-side ul, .single-practical_activity .main_section .section_inner .section_main_content .right-side ol, .single-learning_area .main_section .section_inner .section_main_content .right-side ul, .single-learning_area .main_section .section_inner .section_main_content .right-side ol, .single-produce_knowledge .main_section .section_inner .section_main_content .right-side ul, .single-produce_knowledge .main_section .section_inner .section_main_content .right-side ol {
  padding-left: 2rem;
  margin: 1em 0 1em 1.5em;
}
.single-recipe .main_section .section_inner .section_main_content .right-side ul li, .single-recipe .main_section .section_inner .section_main_content .right-side ol li, .single-practical_activity .main_section .section_inner .section_main_content .right-side ul li, .single-practical_activity .main_section .section_inner .section_main_content .right-side ol li, .single-learning_area .main_section .section_inner .section_main_content .right-side ul li, .single-learning_area .main_section .section_inner .section_main_content .right-side ol li, .single-produce_knowledge .main_section .section_inner .section_main_content .right-side ul li, .single-produce_knowledge .main_section .section_inner .section_main_content .right-side ol li {
  margin-bottom: 0.5em;
}
.single-recipe .main_section .section_inner .section_main_content .right-side ul li ul, .single-recipe .main_section .section_inner .section_main_content .right-side ul li ol, .single-recipe .main_section .section_inner .section_main_content .right-side ol li ul, .single-recipe .main_section .section_inner .section_main_content .right-side ol li ol, .single-practical_activity .main_section .section_inner .section_main_content .right-side ul li ul, .single-practical_activity .main_section .section_inner .section_main_content .right-side ul li ol, .single-practical_activity .main_section .section_inner .section_main_content .right-side ol li ul, .single-practical_activity .main_section .section_inner .section_main_content .right-side ol li ol, .single-learning_area .main_section .section_inner .section_main_content .right-side ul li ul, .single-learning_area .main_section .section_inner .section_main_content .right-side ul li ol, .single-learning_area .main_section .section_inner .section_main_content .right-side ol li ul, .single-learning_area .main_section .section_inner .section_main_content .right-side ol li ol, .single-produce_knowledge .main_section .section_inner .section_main_content .right-side ul li ul, .single-produce_knowledge .main_section .section_inner .section_main_content .right-side ul li ol, .single-produce_knowledge .main_section .section_inner .section_main_content .right-side ol li ul, .single-produce_knowledge .main_section .section_inner .section_main_content .right-side ol li ol {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  margin-left: 1.5em;
}
.single-recipe .main_section .section_inner .section_main_content .right-side blockquote, .single-practical_activity .main_section .section_inner .section_main_content .right-side blockquote, .single-learning_area .main_section .section_inner .section_main_content .right-side blockquote, .single-produce_knowledge .main_section .section_inner .section_main_content .right-side blockquote {
  border-left: 4px solid #ccc;
  margin: 1.5em 0;
  padding-left: 1em;
  color: #666;
  font-style: italic;
  background: #f9f9f9;
}
.single-recipe .main_section .section_inner .section_main_content .right-side code, .single-practical_activity .main_section .section_inner .section_main_content .right-side code, .single-learning_area .main_section .section_inner .section_main_content .right-side code, .single-produce_knowledge .main_section .section_inner .section_main_content .right-side code {
  background: var(--black);
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.95em;
  color: var(--green);
}
.single-recipe .main_section .section_inner .section_main_content .right-side pre, .single-practical_activity .main_section .section_inner .section_main_content .right-side pre, .single-learning_area .main_section .section_inner .section_main_content .right-side pre, .single-produce_knowledge .main_section .section_inner .section_main_content .right-side pre {
  background: #2d2d2d;
  color: #f8f8f2;
  padding: 1em;
  overflow-x: auto;
  font-size: 0.9em;
  border-radius: 6px;
}
.single-recipe .main_section .section_inner .section_main_content .right-side img, .single-practical_activity .main_section .section_inner .section_main_content .right-side img, .single-learning_area .main_section .section_inner .section_main_content .right-side img, .single-produce_knowledge .main_section .section_inner .section_main_content .right-side img {
  max-width: 100%;
  height: auto;
  display: block;
}
.single-recipe .main_section .section_inner .section_main_content .right-side table, .single-practical_activity .main_section .section_inner .section_main_content .right-side table, .single-learning_area .main_section .section_inner .section_main_content .right-side table, .single-produce_knowledge .main_section .section_inner .section_main_content .right-side table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}
.single-recipe .main_section .section_inner .section_main_content .right-side table th, .single-recipe .main_section .section_inner .section_main_content .right-side table td, .single-practical_activity .main_section .section_inner .section_main_content .right-side table th, .single-practical_activity .main_section .section_inner .section_main_content .right-side table td, .single-learning_area .main_section .section_inner .section_main_content .right-side table th, .single-learning_area .main_section .section_inner .section_main_content .right-side table td, .single-produce_knowledge .main_section .section_inner .section_main_content .right-side table th, .single-produce_knowledge .main_section .section_inner .section_main_content .right-side table td {
  border: 1px solid #ccc;
  padding: 0.5em;
  text-align: left;
}
.single-recipe .main_section .section_inner .section_main_content .right-side table th, .single-practical_activity .main_section .section_inner .section_main_content .right-side table th, .single-learning_area .main_section .section_inner .section_main_content .right-side table th, .single-produce_knowledge .main_section .section_inner .section_main_content .right-side table th {
  background: #f1f1f1;
  font-weight: bold;
}
