@charset "UTF-8";
html {
  height: 100%;
}

body {
  color: #273029;
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
body.modal-active {
  overflow-y: hidden;
}

p {
  line-height: 25px;
  margin-bottom: 0.6em;
  color: #273029;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans", sans-serif;
  color: #35395A;
}

h1 {
  font-size: 2.5rem;
}
h1.front {
  font-size: 84px;
  line-height: 96px;
}

h2 {
  font-size: 33px;
  line-height: 38px;
  font-weight: 700;
  margin: 0 0 40px 0;
}
@media (min-width: 576px) {
  h2 {
    font-size: 44px;
    line-height: 46px;
  }
}

h3 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.2rem;
}

.image {
  position: relative;
}

.image-cir-1 {
  z-index: 1;
}
.image-cir-1::before {
  content: "";
  position: absolute;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background-color: rgba(157, 101, 148, 0.4);
  top: -60px;
  left: -60px;
  z-index: -1;
}

.image-cir-2 {
  z-index: 1;
}
.image-cir-2::before {
  content: "";
  position: absolute;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background-color: rgba(108, 107, 178, 0.4);
  top: -60px;
  right: -60px;
  z-index: -1;
}

.image-cir-3 {
  z-index: 1;
}
.image-cir-3::before {
  content: "";
  position: absolute;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background-color: rgba(55, 130, 171, 0.4);
  top: -60px;
  left: -60px;
  z-index: -1;
}

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

a {
  text-decoration: none;
  transition: 0.25s ease;
  color: #84AAA5;
}
a:hover {
  color: #8ABE46;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
section {
  margin: 100px 0;
}
section h2 {
  text-align: center;
  margin-bottom: 40px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
section .subtitle {
  margin-bottom: 55px;
  margin-left: auto;
  margin-right: auto;
  max-width: 730px;
  text-align: center;
  font-size: 17px;
  font-weight: 400;
  opacity: 0.6;
  line-height: 1.7rem;
}
section ul.section-menu {
  padding-left: 40px;
  padding-right: 40px;
}
section ul.section-menu li {
  font-size: 20px;
  line-height: 32px;
  position: relative;
  padding-left: 25px;
  transition: all 0.25s ease;
  display: block;
  width: 100%;
  color: #676877;
  line-height: 2rem;
  margin-bottom: 10px;
}
section ul.section-menu li a {
  color: #84AAA5;
}
section ul.section-menu li a:hover {
  color: #0f9b27;
}
section ul.section-menu li::before {
  position: absolute;
  content: "";
  width: 9px;
  height: 13px;
  background-image: url(../../assets/images/caret-green.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: 17px;
  transform: translateY(-50%);
  left: 0;
  transition: all 0.2s ease;
}
section ul.section-menu li:hover::before {
  left: 7px;
}

.overlay {
  -o-border-image: linear-gradient(rgba(10, 12, 19, 0.3), rgba(20, 25, 41, 0.3)) 1;
     border-image: linear-gradient(rgba(10, 12, 19, 0.3), rgba(20, 25, 41, 0.3)) fill 1;
}

a.em-btn {
  background-color: #8ABE46;
  color: #fff;
  padding: 14px 35px;
  border-radius: 5px;
  display: block;
  width: -moz-max-content;
  width: max-content;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  min-width: 175px;
  text-align: center;
  border: 1px solid transparent;
}
a.em-btn:hover {
  border: 1px solid #fff;
}
a.em-btn:hover.cta-btn {
  background-color: #8ABE46;
  background-color: rgba(138, 190, 70, 0.8);
}
a.em-btn.read-more {
  width: 100%;
  max-width: 160px;
  background-color: #84AAA5;
  padding: 10px 25px 10px 15px;
  font-size: 13px;
  position: relative;
}
a.em-btn.read-more img {
  width: 9px;
  height: 13px;
  position: absolute;
  right: 18px;
  top: 13px;
}
a.em-btn.read-more:hover {
  border: 1px solid #fff;
  background-color: #506b67;
}

.em-card {
  padding: 30px;
  background-color: #fff;
  box-shadow: 0px 5px 18px 4px rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  position: relative;
  margin-bottom: 30px;
  height: 96%;
}
.em-card h3 {
  margin: 0 0 20px 0;
}
.em-card.colored-card {
  background-color: #273029;
  padding: 45px 40px 45px 40px;
}
.em-card.colored-card p,
.em-card.colored-card h3,
.em-card.colored-card ul,
.em-card.colored-card li {
  color: #fff;
}
.em-card.colored-card p {
  font-size: 16px;
  line-height: 23px;
}
.em-card.colored-card h3 {
  font-size: 23px;
  line-height: 30px;
}
.em-card.colored-card .read-more-caret {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 18px;
  height: 25px;
}
.em-card.color-1 {
  background: rgb(157, 101, 148);
  background: linear-gradient(180deg, rgb(157, 101, 148) 0%, rgb(65, 55, 79) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9d6594", endColorstr="#41374f", GradientType=1);
}
.em-card.color-2 {
  background: rgb(108, 107, 178);
  background: linear-gradient(180deg, rgb(108, 107, 178) 0%, rgb(54, 47, 84) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6c6bb2", endColorstr="#362f54", GradientType=1);
}
.em-card.color-3 {
  background: rgb(55, 130, 171);
  background: linear-gradient(180deg, rgb(55, 130, 171) 0%, rgb(55, 73, 79) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3782ab", endColorstr="#37494f", GradientType=1);
}
.em-card.news-card {
  padding: 0 0 80px 0;
}
.em-card.news-card .image {
  position: relative;
  overflow: hidden;
  max-height: 190px;
  border-radius: 8px 8px 0 0;
  margin-bottom: 20px;
}
.em-card.news-card p,
.em-card.news-card h3 {
  margin-top: 0;
  padding: 0 30px;
}
.em-card.news-card p {
  color: #798393;
  font-size: 15px;
}
.em-card.news-card h3 {
  margin-bottom: 10px;
}
.em-card.news-card h3 a {
  color: #35395A;
}
.em-card.news-card h3 a:hover {
  color: #8ABE46;
}
.em-card.news-card .post-date {
  color: #858585;
  font-size: 15px;
  margin-bottom: 15px;
  padding: 0 30px;
}
.em-card.news-card .button {
  position: absolute;
  margin: 0;
  bottom: 30px;
  left: 30px;
}

.wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}

.wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.btn.loadMoreBtn {
  padding: 6px 14px 6px 20px;
  border: 1px solid #8ABE46;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 30px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  background-color: #fff;
  color: #8ABE46;
}
.btn.loadMoreBtn:hover {
  opacity: 0.6;
}

.section-boxes .section-boxes-single {
  background-color: #00aaab;
  padding: 2rem 3rem;
  margin-bottom: 0;
}
.section-boxes .section-boxes-single h3 {
  margin: 0 0 2rem 0;
  color: #fff;
}
.section-boxes .section-boxes-single p {
  color: #fff;
}

#search-button {
  margin-right: 70px;
}
#search-button img {
  display: none;
}
@media (min-width: 450px) {
  #search-button img {
    display: block;
  }
}
@media (min-width: 960px) {
  #search-button {
    margin-right: 0;
  }
}

.page-single,
.post-single {
  padding: 50px 0 70px 0;
}
.page-single h1,
.post-single h1 {
  position: relative;
}
.page-single h1::after,
.post-single h1::after {
  position: absolute;
  bottom: -1rem;
  left: 0;
  content: "";
  height: 1px;
  width: 6rem;
  background-color: #8ABE46;
}
.page-single img,
.post-single img {
  margin: 20px 0;
}
.page-single ul,
.post-single ul {
  padding-left: 1.5rem;
  list-style-type: disc;
}
.page-single ul li,
.post-single ul li {
  line-height: 1.6rem;
}

.full-w-section {
  padding: 3rem 0;
}
.full-w-section.img-background {
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-sect .hero-content .small-title {
  text-align: left;
  color: #818a8f;
  margin-bottom: 2rem;
  margin-top: 0;
  font-size: 2.7rem;
  line-height: 1.2em;
  font-family: "Noto Sans", sans-serif;
  color: #fff;
}
.hero-sect .hero-content h1 {
  text-align: left;
  font-size: 4rem;
  font-family: "Noto Sans", sans-serif;
  margin-top: 20px;
  margin-bottom: 10px;
  left: -5px;
  position: relative;
  color: #fff;
}
.hero-sect .hero-content .subtitle {
  text-align: left;
  color: #475D80;
  font-size: 1.2rem;
  font-family: "Noto Sans", sans-serif;
  line-height: 1.3em;
  color: #fff;
  max-width: 800px;
}

.rank-math-breadcrumb {
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 1rem;
}
.rank-math-breadcrumb p {
  font-weight: 400;
  color: 909090;
  font-size: 15px;
}
.rank-math-breadcrumb p .last {
  color: #e2e2e2;
}
.rank-math-breadcrumb p .separator {
  color: #e2e2e2;
}
.rank-math-breadcrumb p a {
  color: #fff;
  font-weight: 700;
}

.page-hero-section .hero-sect {
  padding-bottom: 2rem;
}
.page-hero-section .hero-sect .page-hero {
  padding: 1rem 0 1rem 0;
}

.page-resources h5.wp-block-heading {
  font-size: 18px;
  margin: 0 0 15px 0;
  padding-left: 25px;
  position: relative;
}
.page-resources h5.wp-block-heading:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  background-image: url(../../assets/images/pdf-icon-resources.svg);
  background-repeat: no-repeat;
  height: 20px;
  width: 15px;
}
.page-resources .issue-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 30px;
}
.page-resources .issue-card h3.title {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
.page-resources .issue-card .image {
  box-shadow: -1px 8px 20px 0px rgba(112, 97, 78, 0.3);
  -webkit-box-shadow: -1px 8px 20px 0px rgba(112, 97, 78, 0.3);
  -moz-box-shadow: -1px 8px 20px 0px rgba(112, 97, 78, 0.3);
  margin-bottom: 15px;
  max-height: 496px;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.page-resources .issue-card .image img {
  margin: 0;
  vertical-align: middle;
  width: 100%;
  height: auto;
}
.page-resources .issue-card .btn-primary {
  padding: 10px 80px;
  margin-bottom: 20px;
}
.page-resources .issue-card .issue-info {
  margin-bottom: 20px;
}
.page-resources .issue-card .issue-info .title {
  font-weight: 600;
  text-align: center;
}
.page-resources .issue-card .issues-buttons {
  display: flex;
  justify-content: center;
}
.page-resources .issue-card .issues-buttons .dnl-button {
  margin: 0 10px;
  width: 70px;
}
.page-resources .resource-filter {
  margin-bottom: 30px;
  max-width: 300px;
}
.page-resources .hide-team-member {
  display: none;
}
.page-resources ul.reports {
  list-style: none;
  padding-left: 0;
}
.page-resources ul.reports li {
  position: relative;
  line-height: 1.9rem;
  overflow: hidden;
  transition: max-height 0.4s ease;
  max-height: 1000px;
  /* enough for visible items */
}
.page-resources ul.reports li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -25px;
  width: 15px;
  height: 15px;
  background-image: url(../../assets/images/download-dark.svg);
  background-size: fit;
  background-repeat: no-repeat;
}
.page-resources ul.reports li.collapsed {
  max-height: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
.page-resources a.toggle-link {
  display: block;
  position: relative;
  margin-top: 20px;
  cursor: pointer;
  width: 24px;
  height: 24px;
  background-color: #00aaab;
  padding: 5px;
}
.page-resources a.toggle-link .read-more-icon {
  cursor: pointer;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
}
.page-resources a.toggle-link .read-more-icon .line {
  width: 15px;
  height: 2px;
  background-color: #ffffff;
  transform: translate(-50%, 0);
}
.page-resources a.toggle-link .read-more-icon .line:nth-child(2) {
  transform: translate(-50%, -100%) rotate(90deg);
  transition: all 0.5s ease;
}
.page-resources a.toggle-link.opened .read-more-icon .line {
  opacity: 0;
}
.page-resources a.toggle-link.opened .read-more-icon .line:nth-child(2) {
  opacity: 1;
  transform: translate(-50%, -100%) rotate(0);
}

.page-blog {
  padding: 40px 0;
}

.contact-page h1 {
  margin-bottom: 60px;
}
.contact-page h3 {
  margin-top: 0;
}

.contact-content .small-title {
  margin-bottom: 1rem;
}
.contact-content h2 {
  font-size: 3.3rem;
  margin-bottom: 1rem;
}
.contact-content .subtitle {
  margin-bottom: 4rem;
  position: relative;
}
.contact-content .subtitle::after {
  position: absolute;
  content: "";
  width: 100%;
  background-color: #cecece;
  width: 100%;
  height: 1px;
  bottom: -2rem;
  left: 0;
}
.contact-content .contact-info-title {
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-content .contact-info-data {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.contact-content .contact-info-data img {
  margin: 0 10px 0 0;
  position: relative;
  top: 2px;
  height: 20px;
  width: 22px;
}
.contact-content .contact-social {
  display: flex;
  height: auto;
  flex-wrap: wrap;
  margin-top: 0;
  margin-left: auto;
  margin-bottom: 1rem;
  justify-content: flex-start;
  align-items: center;
}
.contact-content .contact-social .icon {
  opacity: 0.7;
  margin: 0 10px 10px 10px;
  height: 22px;
  width: auto;
  transition: all 0.2s ease;
}
.contact-content .contact-social .icon:first-child {
  margin-left: 0px;
}
.contact-content .contact-social .icon img {
  margin: 0;
  width: auto;
  height: 100%;
}
.contact-content .contact-social .icon:hover {
  opacity: 1;
}

.featured-image {
  margin-bottom: 30px;
}

button {
  padding: 6px 14px 6px 20px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: 20px;
  border-radius: 5px;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
}
button.pink {
  background-color: #eb0190;
  color: #fff;
}
button.pink:hover {
  opacity: 0.6;
}
button.blue {
  background-color: #014492;
  color: #fff;
}
button.blue:hover {
  opacity: 0.6;
}
button.green {
  background-color: #00aaab;
  color: #fff;
}
button.green:hover {
  opacity: 0.6;
}
button img {
  height: 16px;
  width: auto;
  margin-left: 10px;
}
button.search-button {
  position: absolute;
  right: 0;
  bottom: -10px;
  padding: 10px 30px 10px 30px;
}

header {
  width: 100%;
  height: 122px;
  border-bottom: 1px solid #ccc;
}

.header-logo {
  max-width: 200px;
}

.main-menu {
  max-width: 1140px;
  padding: 0 15px;
  height: 100%;
  margin: 0 auto;
}
.main-menu .header-content {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}
.main-menu .header-content .header-logo {
  min-width: 155px;
}
.main-menu .header-content ul.primary-menu {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
}
.main-menu .header-content ul.primary-menu li {
  font-size: 18px;
  line-height: 150%;
  padding: 5px 20px;
  font-weight: 500;
  height: 50%;
  display: flex;
  align-items: center;
}
.main-menu .header-content ul.primary-menu li:last-child {
  padding-right: 0;
}
.main-menu .header-content ul.primary-menu li a {
  color: #2D2121;
  height: 50%;
  display: flex;
  align-items: center;
}
.main-menu .header-content ul.primary-menu li a:hover {
  color: #8ABE46;
}
.main-menu .header-content ul.primary-menu li ul.sub-menu {
  position: absolute;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  z-index: 5;
  background: #fff;
  color: #273029;
  padding: 1rem;
  line-height: 4rem;
  border-radius: 10px;
  margin-left: -10px;
  top: 5.5rem;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  margin-top: -20px;
  font-weight: 400;
  min-width: 280px;
  white-space: nowrap;
  font-size: 14px;
  box-shadow: 15px 15px 38px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 15px 15px 38px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 15px 15px 38px 0 rgba(0, 0, 0, 0.1);
}
.main-menu .header-content ul.primary-menu li ul.sub-menu li {
  display: block;
  margin-left: 0 !important;
  position: relative;
  transition: all 0.3s ease;
  border-top: none;
  width: 120%;
  padding: 0;
}
.main-menu .header-content ul.primary-menu li ul.sub-menu li a {
  color: #273029;
  padding: 5px;
  border-radius: 10px;
  width: 85%;
  display: block;
  cursor: pointer;
}
.main-menu .header-content ul.primary-menu li ul.sub-menu li:hover > a {
  background-color: #e8e8e8;
}
.main-menu .header-content ul.primary-menu li ul.sub-menu li.menu-item-has-children::after {
  position: absolute;
  right: 45px;
  top: 50%;
  content: "쀉";
  transform: translateY(-50%);
}
.main-menu .header-content ul.primary-menu li ul.sub-menu li:hover::before {
  visibility: visible;
  opacity: 1;
}
.main-menu .header-content ul.primary-menu li ul.sub-menu ul.sub-menu {
  left: 95%;
  position: absolute;
  margin-left: 0;
  top: 0;
}
.main-menu .header-content ul.primary-menu li ul.sub-menu ul.sub-menu li a {
  padding-left: 2rem;
}
.main-menu .header-content ul.primary-menu li.highlight-menu a {
  background-color: #8ABE46;
  padding: 1.3rem 1.9rem;
  border-radius: 10px;
  color: #fff;
}
.main-menu .header-content ul.primary-menu li.highlight-menu a:hover {
  background-color: #84AAA5;
}
.main-menu .header-content ul.primary-menu li:hover > ul {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  margin-top: 0px;
}
@media (min-width: 960px) {
  .main-menu .header-content ul.primary-menu {
    display: flex;
  }
}
.main-menu .header-content ul.primary-menu.mobile-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  z-index: 1000;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 9rem;
  font-size: 2rem;
  line-height: 3.5rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  height: -moz-fit-content;
  height: fit-content;
}
.main-menu .header-content ul.primary-menu.mobile-menu li {
  line-height: 2.5rem;
  font-size: 20px;
  display: flex;
  flex-direction: column;
}
.main-menu .header-content ul.primary-menu.mobile-menu li ul.sub-menu {
  position: static;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  z-index: 5;
  background: none;
  color: #273029;
  padding: 1rem;
  line-height: 4rem;
  border-radius: 10px;
  margin-left: -10px;
  top: 5.5rem;
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  margin-top: 0;
  font-weight: 400;
  min-width: auto;
  white-space: nowrap;
  font-size: 14px;
  box-shadow: none;
}
.main-menu .header-content ul.primary-menu.mobile-menu li ul.sub-menu li {
  display: block;
  margin-left: 0 !important;
  position: relative;
  transition: all 0.3s ease;
  border-top: none;
  width: 120%;
  padding: 0;
  font-size: 16px;
  text-align: center;
}
.main-menu .header-content ul.primary-menu.mobile-menu li ul.sub-menu li a {
  color: #273029;
  padding: 5px;
  border-radius: 0;
  width: 85%;
  display: block;
  cursor: pointer;
}

.menu-icon {
  display: block;
  width: 32px;
  height: 30px;
  position: absolute;
  top: 48px;
  right: 20px;
  cursor: pointer;
}
@media (min-width: 960px) {
  .menu-icon {
    display: none;
  }
}

.menu-icon-close {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: 20px;
  top: 38px;
  width: 32px;
  height: 32px;
  opacity: 0.3;
  z-index: 1000;
  cursor: pointer;
}
.menu-icon-close:hover {
  opacity: 1;
}
.menu-icon-close::before, .menu-icon-close::after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 2px;
  background-color: #333;
}
.menu-icon-close::before {
  transform: rotate(45deg);
}
.menu-icon-close::after {
  transform: rotate(-45deg);
}

#overlay-mobile {
  position: fixed;
  z-index: 10;
  top: 0;
  bottom: 0;
  left: 0;
  right: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  transition: all 0.6s ease;
  pointer-events: none;
}
#overlay-mobile.show-overlay {
  right: -100%;
  opacity: 1;
  visibility: 1;
  pointer-events: all;
}

.hero {
  background-color: #273029;
  min-height: 675px;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}
.hero::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(77, 78, 84, 0.5);
  filter: brightness(0.5);
}
.hero .hero-content {
  height: 100%;
  max-width: 1140px;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
  flex-basis: 100%;
  z-index: 1;
}
.hero .hero-content .content {
  width: 100%;
  max-width: 800px;
}
.hero .hero-content .content h1 {
  color: #fff;
  font-size: 30px;
  line-height: 37px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  .hero .hero-content .content h1 {
    font-size: 45px;
    line-height: 50px;
  }
}
.hero .hero-content .content .hero-lead {
  font-size: 21px;
  line-height: 30px;
  color: #fff;
  opacity: 0.8;
  max-width: 540px;
  margin-top: 0;
  margin-bottom: 30px;
}

#front-services-box {
  margin-top: -90px;
  position: relative;
  overflow: hidden;
}
#front-services-box::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: 170%;
  height: 385px;
  background: #fff;
  border-radius: 50%;
}

#front-philanthropy {
  margin-top: 10px;
}

#front-csr-section {
  background-color: #F6F6F6;
  position: relative;
}
#front-csr-section::before {
  content: "";
  position: absolute;
  background-image: url(../../assets/images/main-menu-curve.svg);
  width: 100%;
  height: 250px;
  top: -125px;
  background-size: cover;
  background-repeat: no-repeat;
  transform: rotate(180deg);
}
#front-csr-section::after {
  content: "";
  position: absolute;
  background-image: url(../../assets/images/main-menu-curve.svg);
  width: 100%;
  height: 250px;
  bottom: -125px;
  background-size: cover;
  background-repeat: no-repeat;
}

.front-csr-section {
  overflow-x: hidden;
}
@media (min-width: 800px) {
  .front-csr-section {
    overflow-x: visible;
  }
}

#front-services {
  margin-bottom: 60px;
  position: relative;
}
#front-services::after {
  position: absolute;
  content: "";
  width: 98px;
  height: 63px;
  background-image: url(../../assets/images/dots-group-1.png);
  background-size: cover;
  background-repeat: no-repeat;
  bottom: -110px;
  left: 135px;
}

#front-news h2 {
  text-align: left;
  margin-left: 0;
}
#front-news .subtitle {
  text-align: left;
  margin-left: 0;
}

#front-our-clients h2 {
  font-size: 24px;
  color: #AFB0C3;
  font-weight: 500;
}
#front-our-clients .partner-logos {
  display: flex;
  justify-content: space-between;
}
#front-our-clients .partner-logos .partner-image {
  height: 60px;
  width: auto;
  margin: 5px 30px;
}
#front-our-clients .partner-logos .partner-image a {
  display: flex;
  height: 100%;
  justify-content: center;
}
#front-our-clients .partner-logos .partner-image a img {
  height: 100%;
  width: auto;
}

.sdg-icons {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.sdg-icons img {
  max-width: 150px;
  margin: 8px;
}

.right-sidebar h3 {
  margin-bottom: 10px;
}
.right-sidebar li {
  list-style: none;
  margin-bottom: 30px;
}
.right-sidebar .widget {
  background-color: #ffffff;
  box-shadow: 0px 5px 18px 4px rgba(0, 0, 0, 0.07);
}
.right-sidebar .widget.widget_block {
  padding: 10px 30px;
}
.right-sidebar .widget ul.wp-block-latest-posts {
  padding-left: 0;
}

.right-col h3 {
  margin-bottom: 15px;
}
.right-col .right-col-module {
  margin-bottom: 30px;
}
.right-col .document-download {
  padding: 2.5rem;
  background-color: #131826;
}
.right-col .document-download h3 {
  font-size: 20px;
  color: #fff;
  margin-top: 0;
}
.right-col .document-download ul {
  padding-left: 0;
  list-style: none;
}
.right-col .document-download ul li {
  line-height: 24px;
  padding-left: 28px;
  position: relative;
}
.right-col .document-download ul li::before {
  position: absolute;
  content: "";
  left: 2px;
  top: 5px;
  height: 15px;
  width: 15px;
  background-image: url(../../assets/images/icon-checkmark.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.right-col .document-download ul li a {
  color: #fff;
}
.right-col .document-download ul li a:hover {
  color: #8ABE46;
}

footer {
  background-color: #f0f0f1;
  border-top: 1px solid #d7d7d7;
  padding-top: 40px;
  margin-top: auto;
}
footer .footer-logo {
  max-width: 140px;
}
footer .about-us-short {
  margin-bottom: 40px;
}
footer .footer-widget-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 20px;
}
footer .footer-social {
  display: flex;
  justify-content: flex-start;
}
footer .footer-social .icon {
  height: 25px;
  margin-right: 18px;
}
footer .footer-social .icon img {
  height: 100%;
}
footer .footer-menu ul li {
  line-height: 180%;
}
footer .footer-menu ul li ul.sub-menu {
  display: none;
}
footer .copyright {
  margin-top: 40px;
  padding: 8px 15px;
  background-color: #19182D;
  color: #fff;
}
footer .copyright .copyright-copy {
  font-size: 14px;
}
footer .copyright .copyright-menu ul {
  display: flex;
  font-size: 14px;
  justify-content: flex-end;
}
footer .copyright .copyright-menu ul li {
  margin-left: 30px;
}
footer .copyright .copyright-menu a {
  color: #fff;
}

.owl-stage-outer {
  width: 100%;
}
.owl-stage-outer .owl-stage {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.owl-nav {
  position: absolute;
  top: 20%;
  transform: translateY(-50%);
  display: block;
  width: 100%;
  background-color: #00aaab;
}
.owl-nav .owl-prev {
  position: absolute;
  left: 0;
}
.owl-nav .owl-prev .nav-btn.prev-slide {
  background-color: #fff;
  background-position: center center;
  background-image: url(../../assets/images/caret-thin.svg);
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
  transform: rotate(180deg);
}
.owl-nav .owl-prev .nav-btn.prev-slide:hover {
  background-image: url(../../assets/images/caret-thin-grey.svg);
}
.owl-nav .owl-next {
  position: absolute;
  right: 0;
}
.owl-nav .owl-next .nav-btn.next-slide {
  background-color: #fff;
  background-position: center center;
  background-image: url(../../assets/images/caret-thin.svg);
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
}
.owl-nav .owl-next .nav-btn.next-slide:hover {
  background-image: url(../../assets/images/caret-thin-grey.svg);
}
.owl-nav .disabled {
  opacity: 0.2 !important;
}
.owl-nav .disabled .nav-btn.next-slide:hover,
.owl-nav .disabled .nav-btn.prev-slide:hover {
  background-image: url(../../assets/images/caret-thin.svg);
}

.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(74, 79, 85, 0.9);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: all 300ms ease-in-out;
}
.search-modal .modal-wrapper {
  padding: 0 15px;
  position: relative;
}
.search-modal .modal-wrapper .modal-content {
  transform: scale(0);
  background: #fff;
  margin: 10% auto;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  padding: 40px 10px;
  border-radius: 8px;
  transition: all 200ms ease-in-out;
  position: relative;
}
.search-modal .modal-wrapper .modal-content .close-button {
  position: absolute;
  right: 25px;
  top: 20px;
  width: 26px;
  height: 26px;
  opacity: 0.3;
  cursor: pointer;
}
.search-modal .modal-wrapper .modal-content .close-button:hover {
  opacity: 1;
}
.search-modal .modal-wrapper .modal-content .close-button:before, .search-modal .modal-wrapper .modal-content .close-button:after {
  position: absolute;
  left: 13px;
  content: " ";
  height: 33px;
  width: 2px;
  background-color: #333;
}
.search-modal .modal-wrapper .modal-content .close-button:before {
  transform: rotate(45deg);
}
.search-modal .modal-wrapper .modal-content .close-button:after {
  transform: rotate(-45deg);
}
.search-modal .modal-wrapper .modal-content p {
  margin: 10px 0 20px 0;
  font-family: "Noto Sans", sans-serif;
  font-size: 17px;
  text-align: center;
}
.search-modal .modal-wrapper .modal-content .modal-image {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.search-modal .modal-wrapper .modal-content .modal-title {
  text-align: center;
  position: relative;
  margin: 0 auto 25px auto;
  width: 80%;
}
.search-modal .modal-wrapper .modal-content .modal-title h2 {
  font-family: "Noto Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #000;
  z-index: 1;
  position: relative;
  letter-spacing: 0;
}
.search-modal .modal-wrapper .modal-content .modal-title.cookie {
  margin-bottom: 10px;
}
.search-modal .modal-wrapper .modal-content .modal-title.cookie h2 {
  margin: 0;
}
.search-modal .modal-wrapper .modal-content .modal-title.cookie::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5px;
  right: -5px;
  height: 18px;
  background-color: #fb6b68;
}
.search-modal .modal-wrapper .modal-content .buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.search-modal .modal-wrapper .modal-content .buttons a {
  width: -moz-max-content;
  width: max-content;
  min-width: 170px;
  margin: 5px 8px;
}
.search-modal .modal-wrapper .modal-content .buttons a button.btn-prim {
  background-color: #35395A;
  outline: none;
  border: 1px solid #35395A;
  border-radius: 3px;
  color: #000;
  font-family: "Noto Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 15px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin: 0;
  width: 100%;
}
.search-modal .modal-wrapper .modal-content .buttons a button.btn-prim:hover {
  background-color: #fff;
}
.search-modal .modal-wrapper .modal-content .buttons a button.btn-sec {
  background-color: #fff;
  outline: none;
  border: 1px solid #111;
  border-radius: 3px;
  color: #000;
  font-family: "Noto Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  padding: 13px 15px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin: 0;
  width: 100%;
}
.search-modal .modal-wrapper .modal-content .buttons a button.btn-sec:hover {
  border: 1px solid #35395A;
}

#search-form {
  margin: 45px 0 33px 0;
  position: relative;
}
#search-form input[type=search] {
  width: 100% !important;
  padding: 11px 0px;
  border: 0;
  border-bottom: 1px solid #35395A;
  border-radius: 0;
  color: rgb(52, 67, 86);
  font-size: 18px;
  font-weight: 600;
  opacity: 1;
  background-color: transparent;
}
#search-form input[type=search]:focus {
  outline: 0 !important;
  box-shadow: none !important;
}
#search-form .btn-primary {
  padding: 14px 20px !important;
  position: absolute;
  right: 0;
  top: 0;
  max-width: 120px;
}
#search-form .search-icon {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 22px;
  height: 22px;
}

#search-button {
  cursor: pointer;
}

button.cky-btn {
  justify-content: center;
}

/* Overall Form CF7 Styles */
.wpcf7 {
  background-color: #f7f5ff;
  width: 100% !important;
  padding: 2rem 3.5rem 2rem 3.5rem;
}

.wpcf7-form input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
select,
textarea {
  width: 100% !important;
  font-family: "Noto Sans", sans-serif;
}

/* Turn an input box into an input line */
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel] {
  border: none;
  box-shadow: none;
  border-radius: 0;
  border-bottom: 1px solid #ccc;
  background: transparent;
  font-size: 15px;
  padding-bottom: 10px;
  color: #111;
}

/* Label Text Contact Form 7 CSS Styles */
.wpcf7 label {
  padding: 0;
  font-size: 20px;
  width: 100%;
}

/* Change input field styles when click into (on focus) */
.wpcf7 input[type=text]:focus,
.wpcf7 input[type=email]:focus,
.wpcf7 input[type=tel]:focus,
.wpcf7 textarea:focus {
  background-color: transparent;
  color: #35395A;
  border-bottom: 1px solid #35395A;
  outline: 0;
}

.wpcf7 input[type=text]:active,
.wpcf7 input[type=email]:active,
.wpcf7 input[type=tel]:active {
  background-color: transparent;
}

/* Textarea Field CF7 CSS Styles */
.wpcf7 textarea {
  border: none;
  box-shadow: none;
  border-radius: 0;
  border-bottom: 1px solid #999;
  background: transparent;
  color: #111;
  font-size: 15px;
}

/* Dropdown */
.wpcf7 .wpcf7-select {
  font-size: 15px;
  padding-bottom: 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  width: 100%;
  /* you can use pixels, em, rem, % to determine the width */
  border: none;
  box-shadow: none;
  border-radius: 0;
  border-bottom: 1px solid #999;
  background: transparent;
  color: #4c4f57;
  background: url(/wp-content/themes/hikons/assets/images/contact-drop-arrow-dark.png) no-repeat 100% 40%;
}

.wpcf7-select option {
  background: #fff;
}

/* Submit Button CF7 CSS Styles */
.wpcf7 input[type=submit] {
  width: 170px;
  padding: 9px 10px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  margin-top: 1em;
  transform: scale(1);
  background: #8ABE46;
  color: white;
}

.wpcf7 input[type=reset] {
  background: transparent;
  border: 0;
  padding: 0;
  color: #111;
  font-size: 15px;
  border-bottom: 1px solid #929293;
  margin-top: 20px;
}
.wpcf7 input[type=reset]:hover {
  color: #c2c2c2;
}

/* reset button*/
.reset-button {
  margin-bottom: 25px;
}

/* validation */
span.wpcf7-not-valid-tip {
  font-size: 13px;
}

/* Thank you message CSS styles */
.wpcf7-response-output {
  border: 1px solid gray;
  background-color: #ececec;
  font-size: 20px;
  color: black;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  padding: 20px !important;
}

/* Upload button new */
input[type=file] {
  -webkit-appearance: initial;
  background-color: initial;
  padding: initial;
  border: initial;
  margin-top: -32px;
  width: 0px;
}

.custom-file-upload {
  color: #999;
  cursor: pointer;
  width: 100%;
  text-align: center;
  border: 1px dashed #999;
  font-size: 15px !important;
  padding: 10px !important;
  margin: 10px 0 20px 0;
}

.career-form .wpcf7 input[type=submit] {
  background: #323233;
  color: #fff;
  font-size: 17px;
}
.career-form .wpcf7 input[type=submit]:hover {
  background: #6d6d6e;
}
.career-form .wpcf7 input[type=text],
.career-form .wpcf7 input[type=email],
.career-form .wpcf7 input[type=tel] {
  border-bottom: 1px solid #999;
  color: #000;
}
.career-form .wpcf7 input[type=text]:focus,
.career-form .wpcf7 input[type=email]:focus,
.career-form .wpcf7 input[type=tel]:focus,
.career-form .wpcf7 textarea:focus {
  color: #00b5ed;
  border-bottom: 1px solid #00b5ed;
}
.career-form .wpcf7 .wpcf7-select {
  font-size: 15px;
  border-bottom: 1px solid #999;
  background: transparent;
  color: #4f4f50;
  background: url(/wp-content/themes/hikons/assets/img/contact-drop-arrow-dark.png) no-repeat 100% 40%;
}
.career-form .wpcf7-select option {
  background: #fff;
  color: #4f4f50;
  padding-left: 0;
  padding-bottom: 5px;
}
.career-form .linkedin-button {
  padding: 15px 15px;
  background: #00b7ee;
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  border: 0 none;
  cursor: pointer;
  border-radius: 0;
  width: 100%;
}
.career-form .wpcf7 textarea {
  border-bottom: 1px solid #999;
  color: #323233;
}

/* First page contact */
button.talk-about {
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  padding: 10px 0 10px 25px;
  font-size: 19px !important;
  color: #444;
  cursor: pointer;
  transition: background-color 0.2s linear;
  background: white;
  font-size: 24px;
  border-bottom: 1px solid #eaeaea;
}
button.talk-about:hover {
  background: rgb(209, 209, 209);
}

button.talk-about.apply {
  margin-top: 240px;
  margin-bottom: 35px;
  width: 100%;
  border: none;
  outline: none;
  text-align: center;
  padding: 10px 25px;
  font-size: 19px !important;
  color: #444;
  cursor: pointer;
  transition: background-color 0.2s linear;
  background: white;
  font-size: 24px;
  border-bottom: 1px solid #eaeaea;
}
button.talk-about.apply:hover {
  background: rgb(209, 209, 209);
}

/* Dropdown Button */
.dropbtn {
  position: relative;
  margin-top: 20px;
  background: transparent;
  color: #fff;
  padding: 16px 0;
  font-size: 16px;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #999;
}
.dropbtn::after {
  display: block;
  top: 15px;
  right: 0;
  position: absolute;
  content: url(/wp-content/themes/hikons/assets/img/contact-drop-arrow.png);
  background-size: 20px 10px;
  height: 10px;
  width: 20px;
  z-index: 1000;
}
.dropbtn::before {
  content: "";
  width: 0;
  height: 0;
}

/* Dropdown button on hover & focus */
.dropbtn:hover,
.dropbtn:focus {
  background: transparent;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  z-index: 1;
  width: 100%;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #d4d4d4;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
  display: block;
}

.roadmap-single .mw-1600 {
  max-width: 1600px;
}
.roadmap-single h1 {
  margin-bottom: 0;
  font-size: 35px;
}
.roadmap-single .rm-content p {
  margin-top: 5px;
}
.roadmap-single .top-logos-rm {
  margin: 40px 0;
  display: flex;
  justify-content: space-between;
}
.roadmap-single .top-logos-rm img {
  max-width: 250px;
}
.roadmap-single .roadmap-table .roadmap-cell {
  padding: 10px;
  border: 1px solid #ccc;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.roadmap-single .roadmap-table .roadmap-table-header {
  display: flex;
  justify-content: space-between;
}
.roadmap-single .roadmap-table .roadmap-table-header .left-column-nmbr {
  padding: 3px;
  border: 1px solid #ccc;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  background-color: #00aaab;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.roadmap-single .roadmap-table .roadmap-table-header .roadmap-cell {
  border: 1px solid #fff;
  height: 100%;
}
.roadmap-single .roadmap-table .roadmap-table-header .column-title {
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  background-color: #00aaab;
  color: #fff;
}
.roadmap-single .roadmap-table .roadmap-table-header .left-column-nmbr {
  padding: 3px;
  flex: 1 0 25px;
  border: 1px solid #ccc;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  background-color: #00aaab;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.roadmap-single .roadmap-table .roadmap-table-header .left-column-prn-only,
.roadmap-single .roadmap-table .roadmap-table-header .right-column-prn-only {
  flex: 1 0 250px;
}
.roadmap-single .roadmap-table .roadmap-table-header .left-column-prn-only .column-title,
.roadmap-single .roadmap-table .roadmap-table-header .right-column-prn-only .column-title {
  height: 100%;
}
.roadmap-single .roadmap-table .roadmap-table-header .left-column {
  flex: 1 1 100%;
  max-width: 160px;
}
.roadmap-single .roadmap-table .roadmap-table-header .left-column .column-title {
  height: 100%;
  min-width: 160px;
}
.roadmap-single .roadmap-table .roadmap-table-header .right-column {
  display: flex;
  flex-direction: column;
  flex: 1 1 100%;
}
.roadmap-single .roadmap-table .roadmap-table-header .right-column .roadmap-cell {
  min-width: 145px;
}
.roadmap-single .roadmap-table .roadmap-table-header .right-column .column-title-lvl2 {
  display: flex;
}
.roadmap-single .roadmap-table .roadmap-table-header .right-column .column-title-lvl2 > * {
  flex: 1 1 20%;
}
.roadmap-single .roadmap-table .roadmap-table-header .right-column .column-title-lvl2 .title-lvl2-col-1 {
  flex: 1 1 40%;
  background-color: #00aaab;
  color: #fff;
  text-align: center;
  justify-content: center;
}
.roadmap-single .roadmap-table .roadmap-table-header .right-column .column-title-lvl2 .title-lvl2-col-2 {
  background-color: #00aaab;
  color: #fff;
}
.roadmap-single .roadmap-table .roadmap-table-header .right-column .column-title-lvl2 .title-lvl2-col-3 {
  background-color: #00aaab;
  color: #fff;
}
.roadmap-single .roadmap-table .roadmap-table-header .right-column .column-title-lvl2 .title-lvl2-col-4 {
  background-color: #00aaab;
  color: #fff;
  display: flex;
}
.roadmap-single .roadmap-table .roadmap-table-header .right-column .column-title-lvl2 .title-lvl2-col-4 > * {
  flex: 0 0 50%;
}
.roadmap-single .roadmap-table .roadmap-table-header .right-column .title-lvl2-col-1 {
  display: flex;
}
.roadmap-single .roadmap-table .roadmap-table-header .right-column .column-title-lvl3 {
  display: flex;
  flex: 1 1 100%;
}
.roadmap-single .roadmap-table .roadmap-table-header .right-column .column-title-lvl3 .title-lvl3-col-1 {
  flex: 1 1 100%;
  display: flex;
}
.roadmap-single .roadmap-table .roadmap-table-header .right-column .column-title-lvl3 .title-lvl3-col-1 > * {
  flex: 0 0 20%;
}
.roadmap-single .roadmap-table .roadmap-table-header .right-column .column-title-lvl3 .title-lvl3-col-sub-1 {
  background-color: #00aaab;
  color: #fff;
}
.roadmap-single .roadmap-table .roadmap-table-header .right-column .column-title-lvl3 .title-lvl3-col-sub-2 {
  background-color: #00aaab;
  color: #fff;
}
.roadmap-single .roadmap-table .roadmap-table-header .right-column .column-title-lvl3 .title-lvl3-col-sub-3 {
  background-color: #00aaab;
  color: #fff;
}
.roadmap-single .roadmap-table .roadmap-table-header .right-column .column-title-lvl3 .title-lvl3-col-sub-4 {
  background-color: #00aaab;
  color: #fff;
}
.roadmap-single .roadmap-table .roadmap-table-header .right-column .column-title-lvl3 .title-lvl3-col-sub-5 {
  background-color: #00aaab;
  color: #fff;
}
.roadmap-single .roadmap-table .roadmap-table-header .right-column .column-title-lvl3 .title-lvl3-col-sub-6 {
  background-color: #00aaab;
  color: #fff;
}
.roadmap-single .roadmap-table .roadmap-table-header .right-column .column-title-lvl3 .title-lvl3-col-sub-7 {
  background-color: #00aaab;
  color: #fff;
}
.roadmap-single .roadmap-table .roadmap-table-header.sub-header .column-title {
  background-color: #28b2b9;
  padding: 3px;
  font-size: 15px;
}
.roadmap-single .roadmap-table .roadmap-table-rows {
  display: flex;
  flex-direction: column;
}
.roadmap-single .roadmap-table .roadmap-table-rows .roadmap-table-row {
  display: flex;
  justify-content: space-between;
}
.roadmap-single .roadmap-table .roadmap-table-rows .roadmap-table-row .left-column-nmbr {
  padding: 3px;
  flex: 1 0 25px;
  border: 1px solid #ccc;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  background-color: #00aaab;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.roadmap-single .roadmap-table .roadmap-table-rows .roadmap-table-row .left-column {
  flex: 0 0 15%;
  max-width: 160px;
}
.roadmap-single .roadmap-table .roadmap-table-rows .roadmap-table-row .left-column .column-title {
  height: 100%;
  min-width: 160px;
}
.roadmap-single .roadmap-table .roadmap-table-rows .roadmap-table-row .left-column-prnt-only {
  flex: 1 0 250px;
}
.roadmap-single .roadmap-table .roadmap-table-rows .roadmap-table-row .left-column-prnt-only .roadmap-cell.column-title {
  height: 100%;
}
.roadmap-single .roadmap-table .roadmap-table-rows .roadmap-table-row .left-column-prnt-only .roadmap-cell.column-title p {
  font-size: 16px;
  line-height: 23px;
  margin: 0 0 12px 0;
}
.roadmap-single .roadmap-table .roadmap-table-rows .roadmap-table-row .right-column {
  display: flex;
  flex: 1 1 100%;
  width: 100%;
  min-width: 400px;
}
.roadmap-single .roadmap-table .roadmap-table-rows .roadmap-table-row .right-column > * {
  flex: 0 0 20%;
  display: flex;
  flex-direction: column;
}
.roadmap-single .roadmap-table .roadmap-table-rows .roadmap-table-row .right-column > * p {
  font-size: 16px;
  line-height: 23px;
  margin: 0 0 12px 0;
}
.roadmap-single .roadmap-table .roadmap-table-rows .roadmap-table-row .right-column .roadmap-cell {
  min-width: 145px;
}

.footer-disclaimer {
  border-top: 1px solid #ccc;
  padding-top: 20px;
  margin: 25px 0;
}
.footer-disclaimer h3 {
  font-size: 18px;
  margin: 0 0 10px 0;
  color: #727272;
}
.footer-disclaimer p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 5px;
  color: #868686;
}

.rm-table-wrap {
  overflow-x: auto;
  margin-top: 20px;
}

.bg-color-low,
.bg-color-achieved {
  background-color: #2abf6b;
}

.bg-color-medium,
.bg-color-in_progress {
  background-color: #ddda28;
}

.bg-color-high,
.bg-color-to_be_implemented {
  background-color: #ff4a63;
}

.partner-logos {
  margin: 60px 0 25px 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.partner-logos .partner-logo {
  height: 80px;
  width: auto;
  margin: 5px 30px;
}
.partner-logos .partner-logo a {
  display: flex;
  height: 100%;
  justify-content: center;
}
.partner-logos .partner-logo a img {
  height: 100%;
  width: auto;
}

.rm-button-group {
  display: flex;
  gap: 8px;
}

a.button.dnl-button {
  padding: 6px 14px 6px 20px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: 20px;
  border-radius: 5px;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
}
a.button.dnl-button.pink {
  background-color: #eb0190;
  color: #fff;
}
a.button.dnl-button.pink:hover {
  opacity: 0.6;
}
a.button.dnl-button.blue {
  background-color: #014492;
  color: #fff;
}
a.button.dnl-button.blue:hover {
  opacity: 0.6;
}
a.button.dnl-button.green {
  background-color: #00aaab;
  color: #fff;
}
a.button.dnl-button.green:hover {
  opacity: 0.6;
}
a.button.dnl-button img {
  height: 16px;
  width: auto;
  margin-left: 10px;
}

@media print {
  header {
    display: none;
  }
  footer {
    display: none;
  }
  a.button {
    display: none !important;
  }
  .rm-table-wrap {
    overflow-x: initial;
  }
  .left-column-prn-only,
  .right-column-prn-only {
    display: block !important;
  }
  .left-column-prnt-only {
    display: block !important;
  }
  .roadmap-cell {
    border: 1px solid #000 !important;
  }
}
.tribe-events-calendar-list__event-featured-image-wrapper.tribe-common-g-col {
  position: relative;
}
.tribe-events-calendar-list__event-featured-image-wrapper.tribe-common-g-col a {
  max-height: 280px;
  overflow: hidden;
}
.tribe-events-calendar-list__event-featured-image-wrapper.tribe-common-g-col a img {
  content: "";
  position: relative;
  max-height: 280px;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
}

.tribe-common-g-row.tribe-events-calendar-list__event-row {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}

header.tribe-events-calendar-list__event-header {
  height: auto;
}

.tribe-events .tribe-events-calendar-list__event-datetime-wrapper,
.tribe-events .tribe-events-calendar-list__event-title {
  margin: 0 !important;
  padding: 10px 0 5px 0;
}
.tribe-events .tribe-events-calendar-list__event-datetime-wrapper a,
.tribe-events .tribe-events-calendar-list__event-title a {
  color: #35395A;
}

.tribe-events .tribe-events-calendar-list__event-date-tag-datetime {
  background-color: #8ABE46;
  height: -moz-max-content;
  height: max-content;
  padding: 20px;
  border-radius: 50%;
}
.tribe-events .tribe-events-calendar-list__event-date-tag-datetime span {
  color: #fff;
}

.tribe-events-calendar-list__event-datetime-wrapper.tribe-common-b2 {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.tribe-events-calendar-list__event-venue-title.tribe-common-b2--bold {
  color: #8b8b8b;
  font-weight: 500;
}

.tribe-events-c-top-bar__datepicker .tribe-common-c-btn__clear.tribe-common-h3.tribe-common-h--alt.tribe-events-c-top-bar__datepicker-button {
  font-size: 15px;
  font-weight: 500;
  background-color: #84AAA5;
  padding: 5px 10px;
  border-radius: 5px;
  color: #fff;
}

a.tribe-common-c-btn-border-small.tribe-events-c-top-bar__today-button.tribe-common-a11y-hidden {
  font-size: 15px;
  font-weight: 500;
  background-color: #84AAA5;
  padding: 5px 10px;
  border-radius: 5px;
  color: #fff;
}

.tribe-events-c-top-bar__datepicker-button-icon-svg .tribe-common-c-svgicon__svg-fill {
  fill: #fff;
}

.tribe-events-single > .tribe_events .tribe-events-event-image {
  flex: 0 0 20%;
  margin-right: 40px;
}
.tribe-events-single > .tribe_events .tribe-events-content {
  flex: 0 0 70%;
}

.tribe-common-c-btn-border.tribe-events-c-subscribe-dropdown__button {
  border: 1px solid #ccc !important;
  color: #fff;
  background-color: #8ABE46;
}
.tribe-common-c-btn-border.tribe-events-c-subscribe-dropdown__button:hover, .tribe-common-c-btn-border.tribe-events-c-subscribe-dropdown__button:focus {
  background-color: #ccc !important;
  color: #35395A !important;
}
.tribe-common-c-btn-border.tribe-events-c-subscribe-dropdown__button .tribe-common-c-svgicon {
  display: none !important;
}

.tribe-events-calendar-month__header-row {
  padding-top: 20px;
}

h1.tribe-events-single-event-title {
  font-size: 32px;
}

.tribe-events-schedule h2 {
  font-size: 14px;
  color: #b6b6b6;
  font-weight: 600;
}

.tribe-events-schedule {
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 10px 0 30px 0;
}

.tribe-events-back {
  font-size: 15px;
  font-weight: 500;
  background-color: #84AAA5;
  padding: 5px 10px;
  border-radius: 5px;
  color: #fff;
  width: -moz-max-content;
  width: max-content;
}
.tribe-events-back a {
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 500 !important;
}

.tribe-events-meta-group dl {
  padding: 10px;
}

h2.tribe-events-calendar-latest-past__heading {
  font-size: 21px !important;
  margin-top: 15px;
  text-transform: uppercase !important;
}

h2.tribe-events-single-section-title {
  background-color: #dddddd;
  border-radius: 6px;
}

.tribe-organizer-url a {
  color: #84AAA5;
  font-weight: bold;
}

.tribe-events .tribe-events-calendar-latest-past__event-date-tag-datetime {
  background-color: #8ABE46;
  height: -moz-fit-content;
  height: fit-content;
  padding: 10px 0;
  border-radius: 10px;
}

header.tribe-events-calendar-month__header {
  height: -moz-fit-content;
  height: fit-content;
  padding-top: 20px;
}