/*  quick menu */
#quickmenu {
  position: fixed;
  top: 0;
  left: 0;
  height: 40px;
  z-index: 70;
  width: 100%;
  padding: 0;
  margin: 0;
  opacity: 1;
  display: inherit;
  visibility: visible;
  transition: opacity 500ms ease-in-out;
  -webkit-transition: opacity 500ms ease-in-out;
  -moz-transition: opacity 500ms ease-in-out;
  -o-transition: opacity 500ms ease-in-out;
  /*&.home ul {*/
  /*  margin-right: 8rem;*/
  /*  margin-top: 10rem;*/
  /*}*/
}
#quickmenu.hide {
  display: inherit;
  visibility: hidden;
  opacity: 0;
}
#quickmenu > ul {
  width: fit-content;
  float: right;
  margin-top: 1rem;
  opacity: 0.85;
  background-color: #fff;
  border-radius: 2.1rem 0 0 2rem;
  /* height: 4rem; */
  padding: 0 3em 0 0.1em;
  transition: all 500ms ease-in-out;
}
#quickmenu li {
  display: inline-block;
  margin: 0.2rem;
  background: #ffffff;
  border-radius: 10px;
  color: #4c6c52;
  font-family: "Ballinger";
  text-transform: uppercase;
  position: relative;
  font-size: 0.9rem;
}
#quickmenu li:hover,
#quickmenu li a:hover {
  font-weight: bold;
  color: #4c6c52;
  /* font-size: 1.1rem; */
}
#quickmenu li.active, #quickmenu li.active:hover, #quickmenu li.current-menu-item, #quickmenu li.current-menu-item:hover {
  color: #4c6c52;
}
#quickmenu li a {
  text-decoration: none;
  color: #052f3f;
  padding: 0rem 0.8rem;
  display: block;
}
#quickmenu li.active a, #quickmenu li.active:hover a:hover, #quickmenu li.current-menu-item a, #quickmenu li.current-menu-item:hover a:hover {
  color: #4c6c52;
}
#quickmenu li.special {
  border-radius: 2rem;
  border: 1px solid #052f3f;
}
#quickmenu li.special a, #quickmenu li.special a:visited, #quickmenu li.special a:active {
  padding: 0.25rem 0.8rem 0rem 0.8rem;
}
#quickmenu li.home-logo a, #quickmenu li.home-logo a:visited {
  padding: 0;
}
#quickmenu li.home-logo a img, #quickmenu li.home-logo a:visited img {
  transform: rotate(0);
  transition: transform 300ms ease-in-out;
  height: 2rem;
}
#quickmenu li.home-logo a:hover img {
  transform: rotate(45deg);
}
#quickmenu li ul {
  position: absolute;
  list-style: none;
  text-align: center;
  width: 17rem;
  left: 50%;
  margin-left: -6rem;
  font-size: 0.8rem;
  top: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  background-color: white;
  z-index: -1;
  /* This is important for the show/hide CSS animation */
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: max-height 0.4s linear;
  -moz-transition: max-height 0.4s linear;
  transition: max-height 0.4s linear;
}
#quickmenu li ul li {
  background: #ffffff;
  border-radius: 2rem;
  margin: 0.2rem;
  width: calc(100% - 0.5rem);
}
#quickmenu li ul li a {
  padding: 12px;
  color: #052f3f !important;
  text-decoration: none !important;
  display: block;
}
#quickmenu li ul li:hover {
  background-color: #444;
}
#quickmenu li ul li:hover a {
  color: #ffffff !important;
}
#quickmenu li ul li:first-child {
  margin-top: 25px;
  position: relative;
  margin-top: 2.1rem;
}
#quickmenu li:hover ul {
  max-height: 200px;
}
#quickmenu .media-controls {
  width: fit-content;
  float: right;
  margin-right: 2rem;
  margin-top: 1rem;
  height: 4rem;
  padding: 0 3em;
  transition: all 500ms ease-in-out;
  opacity: 0;
  display: flex;
  pointer-events: none;
}
#quickmenu .media-controls .btn {
  width: 2rem;
  height: 2rem;
  padding: 0;
  border-radius: 1rem;
  background: #82837c;
}
#quickmenu .media-controls.show {
  opacity: 1;
  pointer-events: all;
}
#quickmenu #quickmenu-btn {
  display: none;
}

@media screen and (max-width: 574px) {
  #quickmenu button {
    background-color: #ffffff;
    color: #052f3f;
    border: none;
    border-radius: 1rem 0 0 1rem;
    height: 5rem;
    width: 5rem;
    position: fixed;
    top: 2rem;
    right: 0;
  }
  #quickmenu button .fa-bars {
    transition: font-size 200ms ease-in-out;
    -webkit-transition: font-size 200ms ease-in-out;
    -moz-transition: font-size 200ms ease-in-out;
    -o-transition: font-size 200ms ease-in-out;
    font-size: 2.5rem;
  }
  #quickmenu button .fa-times {
    transition: font-size 200ms ease-in-out;
    -webkit-transition: font-size 200ms ease-in-out;
    -moz-transition: font-size 200ms ease-in-out;
    -o-transition: font-size 200ms ease-in-out;
    font-size: 0;
  }
  #quickmenu.open #menu-quickmenu {
    max-width: 100vw;
    padding: 2rem 3em 2rem 2rem;
  }
  #quickmenu.open button {
    background-color: transparent;
  }
  #quickmenu.open button .fa-bars {
    font-size: 0;
  }
  #quickmenu.open button .fa-times {
    font-size: 2.5rem;
  }
  #quickmenu #menu-quickmenu {
    overflow: hidden;
    white-space: nowrap;
    width: auto;
    max-width: 0px;
    padding: 0;
    transition: max-width 200ms ease-in-out;
    -webkit-transition: max-width 200ms ease-in-out;
    -moz-transition: max-width 200ms ease-in-out;
    -o-transition: max-width 200ms ease-in-out;
  }
  #quickmenu > ul li {
    display: list-item;
    font-size: 1.5rem;
    opacity: 1;
  }
  #quickmenu > ul li:first-child {
    margin: 1rem;
  }
  #quickmenu > ul li:not(:first-child) {
    margin: 1rem 0;
  }
  #quickmenu .sub-menu {
    display: none;
  }
  #quickmenu ul {
    list-style-type: none;
  }
  #quickmenu #quickmenu-btn {
    display: block;
  }
}
.tabs-wrapper {
  display: flex; /* Default: side by side for desktop */
  width: 100%;
  height: 100%;
  flex-direction: column;
}

.nav-tabs {
  border: none;
  display: flex;
  flex-direction: row;
}
.nav-tabs .nav-link {
  color: #ffffff;
  background-color: rgba(255, 254, 254, 0);
  border: none;
  border-radius: 2rem 2rem 0 0;
  padding: 1rem 2rem;
  transition: background-color 100ms ease-in-out;
}
.nav-tabs .nav-link > span {
  background-color: #052f3f;
  padding: 0.65rem 3rem;
  border-radius: 2rem;
  color: #ffffff;
  pointer-events: none;
}
.nav-tabs .nav-link.active {
  color: #052f3f;
  background-color: #fffefe;
}
.nav-tabs .nav-link.active > span {
  background-color: #f4bf57;
  position: relative;
}
.nav-tabs .nav-link.active > span::before {
  content: "";
  display: block;
  position: absolute;
  width: 2rem;
  height: 3rem;
  z-index: 10;
  background-image: url(../../inc/assets/pointer.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 50%;
  top: -1.5rem;
  transform: translate(-50%, -50%);
}

.tab-content {
  background-color: #fffefe;
  padding: 4rem;
  border-radius: 2rem;
}
.tab-content:has(> :first-child.active) {
  border-radius: 0rem 2rem 2rem 2rem;
}

.tabs-wrapper .tabs-header {
  width: 100%;
  display: flex;
}
.tabs-wrapper .tabs-header > div {
  flex-direction: column;
  font-size: 1.5rem;
  border-radius: 2rem 2rem 0 0;
  padding: 1rem 2rem 0.5em 2rem;
  transition: background-color 100ms ease-in-out;
  background-color: rgba(244, 191, 87, 0);
}
.tabs-wrapper .tabs-header > div > span {
  background-color: #052f3f;
  padding: 0.5rem 3rem;
  border-radius: 2rem;
  color: #ffffff;
  pointer-events: none;
}
.tabs-wrapper .tabs-header > div.active {
  background-color: #fffefe;
  color: #052f3f;
}
.tabs-wrapper .tabs-header > div.active > span {
  background-color: #f4bf57;
  position: relative;
}
.tabs-wrapper .tabs-header > div.active > span::before {
  content: "";
  display: block;
  position: absolute;
  width: 2rem;
  height: 3rem;
  z-index: 10;
  background-image: url(../../inc/assets/pointer.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 50%;
  top: -1.5rem;
  transform: translate(-50%, -50%);
}
/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
  .tabs-wrapper {
    flex-direction: row-reverse; /* Side by side on mobile */
  }
  /* Tabs become horizontal and move to the right side */
  .nav-tabs {
    border: none;
    flex-direction: column;
    flex: 0;
  }
  .nav-tabs .nav-link {
    padding: 1rem 1.5rem;
    font-size: 1.2rem; /* Adjust font size for mobile */
    writing-mode: vertical-rl; /* or vertical-lr */
    text-orientation: mixed; /* upright | sideways | mixed */
    border-radius: 0 2rem 2rem 0;
  }
  .nav-tabs .nav-link > span {
    padding: 3rem 0.65rem;
  }
  .nav-tabs .nav-link.active > span::before {
    background-image: none;
  }
  .tab-content {
    width: 30%; /* Content takes the remaining space on mobile */
  }
  .tab-content:has(> :first-child.active) {
    border-radius: 2rem 0rem 2rem 2rem;
  }
  /* Adjust tab size and spacing on mobile */
  .nav-item {
    width: auto; /* Auto width on mobile */
    height: 20vh;
  }
}
ul.step-list {
  list-style-type: none;
}
ul.step-list .step-listitem {
  margin-bottom: 3rem;
}
ul.step-list .step-listitem .step-listitem-title {
  font-family: "Reenie Beanie", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.6rem;
  margin-bottom: 1rem;
}
ul.step-list .step-listitem .step-listitem-content {
  margin-left: 1rem;
}

.imp, section.imp {
  /* Backgrounds will cover all the section */
}
.imp.slides-template, section.imp.slides-template {
  position: relative;
  background-color: transparent;
  min-height: 100vh;
  display: flex;
  padding: 0;
}
.imp.slides-template .video-wrapper, section.imp.slides-template .video-wrapper {
  width: 100%;
  max-height: 100vh;
  overflow: hidden;
  position: relative;
}
.imp.slides-template .video-wrapper video.overlay-video, section.imp.slides-template .video-wrapper video.overlay-video {
  display: block;
  min-width: 100%;
  height: auto;
  max-height: 100vh;
  object-fit: cover;
}
.imp.slides-template .container-fluid, section.imp.slides-template .container-fluid {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.imp.slides-template .carousel-control-prev, .imp.slides-template .carousel-control-next, section.imp.slides-template .carousel-control-prev, section.imp.slides-template .carousel-control-next {
  z-index: 20;
}
.imp.slides-template .card, section.imp.slides-template .card {
  border-radius: 1.5rem;
  min-height: 100px;
  text-align: center;
  position: relative;
  padding-top: 4rem;
  padding-bottom: rem;
}
.imp.slides-template .card .card-header-img, section.imp.slides-template .card .card-header-img {
  width: 8rem;
  height: 8rem;
  overflow: hidden;
  border: white 0.5rem solid;
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}
.imp.slides-template .card .card-footer-img, section.imp.slides-template .card .card-footer-img {
  width: 4rem;
  height: 4rem;
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  opacity: 0.7;
}
@media screen and (max-width: 991px) {
  .imp .video-wrapper video.overlay-video, section.imp .video-wrapper video.overlay-video {
    max-height: 150vh !important;
  }
}
@media screen and (max-width: 991px) {
  .imp.slides-template .video-wrapper video.overlay-video, section.imp.slides-template .video-wrapper video.overlay-video {
    width: auto;
    height: 100%;
  }
}

.imp, section.imp {
  /* Backgrounds will cover all the section */
}
.imp.video-white-block-template, section.imp.video-white-block-template {
  position: relative;
  background-color: transparent;
  min-height: 100vh;
  display: flex;
  padding: 0;
}
.imp.video-white-block-template .video-wrapper, section.imp.video-white-block-template .video-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.imp.video-white-block-template .video-wrapper video.overlay-video, section.imp.video-white-block-template .video-wrapper video.overlay-video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.imp.video-white-block-template .container-fluid, section.imp.video-white-block-template .container-fluid {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.imp.video-white-block-template .carousel-control-prev, .imp.video-white-block-template .carousel-control-next, section.imp.video-white-block-template .carousel-control-prev, section.imp.video-white-block-template .carousel-control-next {
  z-index: 20;
}
.imp.video-white-block-template .card, section.imp.video-white-block-template .card {
  border-radius: 1.5rem;
  min-height: 100px;
  position: relative;
  padding-top: 4rem;
  padding-bottom: rem;
}
.imp.video-white-block-template .card .card-header-img, section.imp.video-white-block-template .card .card-header-img {
  width: 8rem;
  height: 8rem;
  overflow: hidden;
  border: white 0.5rem solid;
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}
.imp.video-white-block-template .card .card-footer-img, section.imp.video-white-block-template .card .card-footer-img {
  width: 4rem;
  height: 4rem;
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  opacity: 0.7;
}

@media screen and (max-width: 991px) {
  .imp.video-white-block-template, section.imp.video-white-block-template {
    flex-direction: column;
    background-color: transparent !important;
  }
  .imp.video-white-block-template .container-fluid, section.imp.video-white-block-template .container-fluid {
    position: relative;
  }
  .imp.video-white-block-template .container-fluid .order-1, section.imp.video-white-block-template .container-fluid .order-1 {
    margin-top: -30rem;
  }
  .imp.video-white-block-template .container-fluid .card, section.imp.video-white-block-template .container-fluid .card {
    margin-top: -20rem !important;
  }
  .imp.video-white-block-template .container-fluid .card.opacity-25, section.imp.video-white-block-template .container-fluid .card.opacity-25 {
    opacity: 1 !important;
  }
  .imp.video-white-block-template .container-fluid .block-video-controls, section.imp.video-white-block-template .container-fluid .block-video-controls {
    margin-bottom: 20rem !important;
  }
}
.imp h1, .imp h2, .imp h3, .imp h4, .imp h5, .imp h1 a, .imp h2 a, .imp h3 a, .imp h4 a, .imp h5 a, section.imp h1, section.imp h2, section.imp h3, section.imp h4, section.imp h5, section.imp h1 a, section.imp h2 a, section.imp h3 a, section.imp h4 a, section.imp h5 a {
  color: #052f3f;
  font-weight: 100;
  font-family: "Archivo", sans-serif;
}
.imp h1, section.imp h1 {
  font-size: calc(3rem + 0.1vw);
  word-spacing: 0.2rem;
  position: relative;
  margin: 0 auto;
  line-height: 1;
}
.imp h1 b, .imp h1 strong, section.imp h1 b, section.imp h1 strong {
  font-weight: 800;
}
.imp h2 strong, .imp h2 b, section.imp h2 strong, section.imp h2 b {
  font-weight: 800;
}
.imp h3, section.imp h3 {
  font-size: calc(1.2rem + 0.1vw);
  font-weight: normal;
}
.imp p, section.imp p {
  text-align: center;
  color: #052f3f;
  font-weight: 100;
  font-family: "Archivo", sans-serif;
}
.imp .text-justify, section.imp .text-justify {
  text-align: justify !important;
}
.imp .border-start, section.imp .border-start {
  border-left-color: #052f3f !important;
}
.imp .border-end, section.imp .border-end {
  border-right-color: #052f3f !important;
}
.imp .bg-navy, .imp.bg-navy, section.imp .bg-navy, section.imp.bg-navy {
  background-color: #052f3f;
}
.imp .word-effect, section.imp .word-effect {
  position: relative;
  display: inline-block;
}
.imp .word-effect::after, section.imp .word-effect::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px; /* adjust as needed */
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
.imp .word-effect.word-doubleline::after, section.imp .word-effect.word-doubleline::after {
  height: 2rem;
  background-image: url("../../inc/assets/word_doubleline.png");
}
.imp .word-effect.word-underline::after, section.imp .word-effect.word-underline::after {
  height: 2rem;
  background-image: url("../../inc/assets/word_underline.png");
}
.imp .word-effect.word-circle::after, section.imp .word-effect.word-circle::after {
  height: 120%;
  background-image: url(../../inc/assets/word_circle.png);
  background-size: contain;
  width: 120%;
  left: -10%;
}
.imp .playpause-btn, section.imp .playpause-btn {
  background-color: #052f3f;
  opacity: 0.75;
  color: #ffffff;
  width: 5rem;
  height: 5rem;
  border-radius: 2.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.imp .playpause-btn:hover, section.imp .playpause-btn:hover {
  opacity: 0.95;
}
@media screen and (max-width: 991px) {
  .imp h1, section.imp h1 {
    font-size: calc(3rem + 0.1vw);
  }
  .imp h3, section.imp h3 {
    font-size: calc(1.8rem + 0.1vw);
  }
  .imp h5, section.imp h5 {
    font-size: calc(1.5rem + 0.1vw);
  }
}

.imp, section.imp {
  /* Backgrounds will cover all the section */
}
.imp .opn-notification, section.imp .opn-notification {
  color: #ffffff;
  background-color: #052f3f;
  width: fit-content;
  position: absolute;
  display: flex;
  right: -100vw;
  top: 10rem;
  justify-items: center;
  justify-content: center;
  height: 4rem;
  line-height: 4rem;
  transition: all 500ms ease-out 1s;
}
.imp .opn-notification span, section.imp .opn-notification span {
  display: flex;
}
.imp .opn-notification .btn, section.imp .opn-notification .btn {
  border-radius: 0.4rem;
}
.imp .opn-notification.show, section.imp .opn-notification.show {
  right: 0;
}
.imp .video-section, section.imp .video-section {
  /* Important! Videos use absolute */
  position: relative;
  background-size: cover;
  /* Making sure videos won't overflow */
  overflow: hidden;
}
.imp .video-section .overlay-video, section.imp .video-section .overlay-video {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  background-color: black; /* in case the video doesn't fit the whole page*/
  background-position: center center;
  background-size: cover;
  object-fit: cover; /*cover video background */
  z-index: -100;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.imp#sectionProblemVideo, .imp#section-letter-video, section.imp#sectionProblemVideo, section.imp#section-letter-video {
  /* Important! Videos use absolute */
  position: relative;
  background-color: transparent;
  min-height: 100vh;
  display: flex;
  padding: 0;
  /* Making sure videos won't overflow */
}
.imp#sectionProblemVideo .fp-overflow, .imp#section-letter-video .fp-overflow, section.imp#sectionProblemVideo .fp-overflow, section.imp#section-letter-video .fp-overflow {
  overflow: hidden;
}
.imp#sectionProblemVideo .video-wrapper, .imp#section-letter-video .video-wrapper, section.imp#sectionProblemVideo .video-wrapper, section.imp#section-letter-video .video-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #052f3f;
}
.imp#sectionProblemVideo .video-wrapper video.overlay-video, .imp#section-letter-video .video-wrapper video.overlay-video, section.imp#sectionProblemVideo .video-wrapper video.overlay-video, section.imp#section-letter-video .video-wrapper video.overlay-video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.imp#sectionProblemVideo .container-fluid, .imp#section-letter-video .container-fluid, section.imp#sectionProblemVideo .container-fluid, section.imp#section-letter-video .container-fluid {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.imp#sectionLetterJames .fp-bg, .imp#section-letter-video .fp-bg, section.imp#sectionLetterJames .fp-bg, section.imp#section-letter-video .fp-bg {
  background: url(../../inc/assets/grunge.png) #efefef;
  background-position: center top;
  overflow: hidden;
  overflow-y: auto;
  background-size: cover;
  background-color: #efefef;
}
.imp#sectionLetterJames img.signature, .imp#section-letter-video img.signature, section.imp#sectionLetterJames img.signature, section.imp#section-letter-video img.signature {
  max-width: 20rem;
}
.imp#sectionLetterJames .quotationmark, .imp#section-letter-video .quotationmark, section.imp#sectionLetterJames .quotationmark, section.imp#section-letter-video .quotationmark {
  opacity: 0.5;
}
@media screen and (max-width: 991px) {
  .imp#sectionLetterJames .video-wrapper video.overlay-video, .imp#section-letter-video .video-wrapper video.overlay-video, section.imp#sectionLetterJames .video-wrapper video.overlay-video, section.imp#section-letter-video .video-wrapper video.overlay-video {
    height: 100%;
  }
}
.imp#sectionSummary .fp-bg, section.imp#sectionSummary .fp-bg {
  background: linear-gradient(0deg, rgba(239, 239, 239, 0.6666666667), rgba(239, 239, 239, 0.6666666667)), url(../../inc/assets/worldmap.png) #efefef;
  background-position: center top;
  overflow: hidden;
  background-size: cover;
}
.imp#section-about-video, section.imp#section-about-video {
  min-height: 1px;
  height: auto;
}
.imp#section-about-video video, section.imp#section-about-video video {
  width: 100%;
}
@media screen and (max-width: 991px) {
  .imp.video-section h1, section.imp.video-section h1 {
    font-size: calc(3rem + 0.1vw);
  }
}

.imp#sectionStart #box, section.imp#sectionStart #box {
  fill: white;
  stroke: white;
}
.imp#sectionStart .messageWrapper, section.imp#sectionStart .messageWrapper {
  position: absolute;
  bottom: 6em;
}
.imp#sectionStart .logo-name, section.imp#sectionStart .logo-name {
  opacity: 0.85;
  left: 0px;
  top: 7rem;
  height: 5rem;
  width: 20rem;
  background-color: #ffffff;
  position: absolute;
  background-image: url("../../inc/assets/OPN-logo-sm.png");
  background-size: cover;
}
.imp#sectionStart h1, section.imp#sectionStart h1 {
  text-shadow: 0px 0px 10px #052f3f, 0px 0px 10px #052f3f, 0px 0px 10px #052f3f, 0px 0px 10px #052f3f;
  line-height: 1.1;
}
.imp#sectionStart h3, section.imp#sectionStart h3 {
  text-shadow: 0px 0px 10px #052f3f, 0px 0px 10px #052f3f, 0px 0px 10px #052f3f, 0px 0px 10px #052f3f, 0px 0px 10px #052f3f, 0px 0px 10px #052f3f, 0px 0px 10px #052f3f, 0px 0px 10px #052f3f, 0px 0px 10px #052f3f, 0px 0px 10px #052f3f, 0px 0px 10px #052f3f, 0px 0px 10px #052f3f, 0px 0px 10px #052f3f;
}

.imp#sectionContactForm, section.imp#sectionContactForm {
  background-color: #fafafa;
}
.imp#sectionContactForm a, section.imp#sectionContactForm a {
  color: #052f3f;
  font-weight: 500;
  text-decoration: none;
}
.imp#sectionContactForm .footer-row, section.imp#sectionContactForm .footer-row {
  max-width: 1500px;
}

#bottom-contact-tear .container-fluid {
  background-color: #052f3f;
}
#bottom-contact-tear img {
  top: -1px;
}

/** Contact form section **/
#sectionContactForm .fp-overflow {
  width: 100%;
  background-color: #052f3f;
  height: 100%;
}

#sectionContactForm .fp-overflow .contact-form-container {
  width: 100%;
  margin: auto;
  max-width: 1000px;
}

#sectionContactForm .center-elements-vert {
  height: 100%;
}

#sectionContactForm .contact-title {
  font-size: 4rem;
  color: white;
  margin-left: 0.5rem;
  font-weight: bold;
  font-family: "Ballinger", sans-serif;
}

.wpcf7-form p {
  display: flex;
}

.wpcf7-form p:last-of-type {
  display: block;
}

/* .wpcf7-form-control-wrap {
  width: 100%;
  margin:  .25rem .5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
} */
.wpcf7-form-control {
  height: 3rem;
  min-width: 0;
  width: 100%;
  border: 1px solid #423F32;
}

.wpcf7-form input[type=text i], .wpcf7-form input[type=email i] {
  padding: 0 1rem;
  font-family: "Archivo", sans-serif;
  color: #0B303F;
  font-size: 1rem;
  font-weight: bold;
}

.wpcf7-form textarea.wpcf7-form-control {
  height: 13rem;
  padding: 1rem;
  font-family: "Archivo", sans-serif;
  color: #0B303F;
  font-size: 1rem;
  font-weight: bold;
}

.wpcf7-not-valid-tip {
  font-size: 1rem !important;
  padding-top: 0.5rem;
  font-family: "Archivo", sans-serif !important;
}

.wpcf7 form .wpcf7-response-output {
  background-color: #dc3232;
  color: white;
  font-size: 1rem;
  border: none !important;
  padding: 1rem !important;
}

.wpcf7 .wpcf7-submit {
  margin-left: auto;
  margin-right: 0.5rem;
  display: block;
  padding: 0 3rem;
  font-size: 1.3rem;
  font-weight: bold;
  background-color: #0B303F;
  border: 2px solid white;
  color: white;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 300ms ease-in-out;
}

.wpcf7 .wpcf7-submit:hover {
  background-color: white;
  border: 2px solid #0B303F;
  color: #0B303F;
}

.wpcf7-spinner {
  display: block;
}

#sectionContactForm .contact-form-footer {
  width: 100%;
  color: white;
  bottom: 0px;
  position: absolute;
  overflow: hidden;
  padding-left: 120px;
  display: flex;
  justify-content: space-around;
  padding-bottom: 4rem;
}

#sectionContactForm .contact-form-footer img {
  width: 5rem;
}

#sectionContactForm .contact-form-footer a:not(.opn-btn), #sectionContactForm .contact-form-footer a:not(.opn-btn):active, #sectionContactForm .contact-form-footer a:not(.opn-btn):visited {
  color: white;
  text-decoration: none;
}

#sectionContactForm .contact-form-footer .contact-form-footer-col1 {
  line-height: 1.4rem;
}

#sectionContactForm .contact-form-footer .contact-form-footer-col1 span:first-child {
  font-weight: bold;
  margin-bottom: 1rem;
  display: block;
  font-size: 1.3rem;
}

#sectionContactForm .contact-form-footer .contact-form-footer-col2 a {
  margin: 0 1rem;
}

#sectionContactForm .contact-form-footer .contact-form-footer-col3 {
  text-align: right;
}

#sectionContactForm .contact-form-footer .contact-form-footer-col3 .opn-btn {
  margin-bottom: 1rem;
  display: inline-block;
}

#sectionContactForm .contact-form-footer .contact-form-footer-col3 a {
  font-size: 1rem;
}

@media screen and (max-height: 900px) {
  #sectionContactForm .contact-title {
    margin-left: 2rem;
  }
  #sectionContactForm .contact-form-footer img {
    width: 3rem;
  }
  .wpcf7-form-control-wrap {
    display: grid;
  }
  #sectionContactForm .contact-form-footer {
    padding: 0 2rem;
    justify-content: space-between;
    width: calc(100% - 4rem);
    bottom: 2rem;
  }
  #sectionContactForm .contact-form-footer a:not(.opn-btn), #sectionContactForm .contact-form-footer a:not(.opn-btn):active, #sectionContactForm .contact-form-footer a:not(.opn-btn):visited {
    display: flex;
    justify-content: end;
  }
  #sectionContactForm .contact-form-footer-col1 .hideondesktop a {
    display: inline-block;
    font-weight: bold;
  }
  #sectionContactForm .contact-form-footer .contact-form-footer-col2 .opn-btn {
    padding: 0.5rem 2rem;
  }
}
/* archive pages */
.archive-page p {
  text-align: left;
  margin: 0;
  /* line-height: initial; */
  font-size: 1.1rem;
}
.archive-page .article-card {
  background-color: transparent;
  border: 0;
}
.archive-page .article-card {
  height: 30rem;
}
.archive-page .article-card.article-card-in-image {
  background-size: cover;
  background-position: center;
}
.archive-page .article-card.article-card-in-image .card-content {
  background-color: white;
  padding: 1.5rem;
}
.archive-page .article-card.article-card-in-image .card-body {
  margin-top: auto;
}
.archive-page .article-card.article-card-video {
  background-size: cover;
  background-position: center;
  cursor: pointer;
}
.archive-page .article-card.article-card-video .card-body {
  margin-top: 10rem;
  margin-bottom: 10rem;
}
.archive-page .article-card.article-card-video .card-body .card-content {
  padding: 1.5rem;
  color: #ffffff;
  font-size: 2rem;
  transition: all 200ms ease-in-out;
}
.archive-page .article-card.article-card-video .card-body .card-content:hover {
  font-size: 2.5rem;
}
.archive-page .article-card.article-card-video .card-body .card-content:hover .card-text {
  border-width: 5px;
}
.archive-page .article-card.article-card-video .card-body .card-content .card-text {
  height: 5rem;
  width: 5rem;
  border-radius: 2.5rem;
  border: 7px solid #ffffff;
  transition: all 200ms ease-in-out;
}
.archive-page .article-card.article-card-under-image {
  background-size: cover;
  min-height: 90vh;
}
.archive-page .article-card.article-card-above-image .opn-btn {
  margin-bottom: 1rem;
}
.archive-page h2, .archive-page h3, .archive-page h4, .archive-page h5 {
  font-family: "Ballinger";
}
.archive-page .archive-page-title {
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.archive-page .archive-page-title h1 {
  display: inline;
}
.archive-page .archive-page-title h1:last-child {
  font-weight: 100;
  font-family: "Archivo";
}
.archive-page .archive-header {
  background-color: #ebe3df;
  padding-top: 2rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 991px) {
  .archive-page.container {
    margin-left: 1rem;
    margin-right: 1rem;
    max-width: 100vw;
  }
}

.archive-page-category-links .btn {
  margin-bottom: 1rem;
}

@media screen and (max-width: 575px) {
  .archive-page.container {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}
body {
  position: relative;
  margin: 0;
  font-family: "Archivo", sans-serif;
  width: 100%;
  max-width: 100vw;
  background: #efefef;
}
body.single, body.archive, body.category {
  background: #fefefe;
}

@media screen and (min-width: 992px) {
  body {
    overflow-x: hidden;
  }
}
.reenie-beanie-regular {
  font-family: "Reenie Beanie", serif;
  font-weight: 400;
  font-style: normal;
}

.bg-blue {
  background-color: #052f3f;
}

.fade-text {
  transition: opacity 0.75s ease;
}

.fade-out {
  opacity: 0;
}

.btn-primary {
  --bs-btn-color: $white;
  --bs-btn-bg: #052f3f ;
  --bs-btn-border-color: #052f3f ;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #052f3f ;
  --bs-btn-hover-border-color: #052f3f ;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: $white;
  --bs-btn-active-bg: #052f3f ;
  --bs-btn-active-border-color: #052f3f ;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: $white;
  --bs-btn-disabled-bg: #052f3f ;
  --bs-btn-disabled-border-color: $navy ;
}

.imp img.quotationmark, section.imp img.quotationmark {
  position: absolute;
  z-index: -1;
  transform: rotate(180deg) scale(1.5) scaleX(-1);
  top: -5rem;
  max-width: 25vw;
}
.imp .fp-bg, section.imp .fp-bg {
  z-index: auto;
}
.imp .ellipsis, section.imp .ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  width: 100%; /* Ensure it does not exceed container width */
}
@keyframes scroll-up-and-down {
  from {
    top: 0rem;
    /* margin-bottom: 3rem; */
  }
  to {
    top: 1rem;
    /* margin-bottom: 2rem; */
  }
}
.imp .scroll-msg, section.imp .scroll-msg {
  width: 8rem;
  position: relative;
  /* margin-top: 10rem; */
  animation: scroll-up-and-down 600ms ease-out alternate infinite;
  transform: scale(0.7);
}
.imp .scroll-msg textPath, section.imp .scroll-msg textPath {
  letter-spacing: 0rem;
}
@media screen and (max-width: 991px) {
  .imp .scroll-msg, section.imp .scroll-msg {
    width: 10rem;
  }
  .imp .scroll-msg textPath, section.imp .scroll-msg textPath {
    letter-spacing: 0.1rem;
  }
}
@media screen and (max-width: 1440px) {
  .imp img.quotationmark, section.imp img.quotationmark {
    position: absolute;
    z-index: -1;
    transform: rotate(180deg) scale(1.5) scaleX(-1);
    top: -1rem;
    max-width: 25vw;
  }
}
@media screen and (min-width: 441px) and (max-width: 992px) {
  .imp .scroll-msg textPath, section.imp .scroll-msg textPath {
    letter-spacing: 0.15rem;
  }
}
@media screen and (min-width: 351px) and (max-width: 440px) {
  .imp .scroll-msg textPath, section.imp .scroll-msg textPath {
    letter-spacing: 0.35rem;
  }
}
@media screen and (max-width: 350px) {
  .imp .scroll-msg textPath, section.imp .scroll-msg textPath {
    letter-spacing: 0.3rem;
  }
}
.imp img.signature, section.imp img.signature {
  max-width: 40vw;
}
.imp .container-fluid, section.imp .container-fluid {
  height: 100%;
}
.imp .text-white b, section.imp .text-white b {
  color: #ffffff !important;
}
.imp .btn, section.imp .btn {
  text-transform: uppercase;
  background-color: #052f3f;
  font-weight: bold;
  height: 3rem;
  line-height: 1rem;
  color: white;
  text-decoration: none;
  padding: 1rem 4rem;
  transition: all 300ms ease-in-out;
  border-radius: 0;
  white-space: nowrap; /* Prevents text from wrapping */
  display: inline-block; /* Ensures it behaves like a button */
}
.imp .btn.btn-sm, section.imp .btn.btn-sm {
  height: 2.15rem;
  padding: 0.5rem 2rem;
}
.imp .btn-light, section.imp .btn-light {
  color: #052f3f;
  background-color: #ffffff;
  border-color: #ffffff;
  --bs-btn-hover-color: $navy;
  --bs-btn-hover-bg: #d3d4d5;
  --bs-btn-hover-border-color: #c6c7c8;
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: $navy;
  --bs-btn-active-bg: #c6c7c8;
  --bs-btn-active-border-color: #babbbc;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: $navyHalf;
  --bs-btn-disabled-bg: #f8f9fa;
  --bs-btn-disabled-border-color: #f8f9fa;
}
.imp .btn:disabled, section.imp .btn:disabled {
  opacity: 1;
}
.imp .card, section.imp .card {
  border-radius: 0;
}
.imp .ms-neg-3, section.imp .ms-neg-3 {
  margin-left: -1rem;
}
.imp .ms-neg-5, section.imp .ms-neg-5 {
  margin-left: -3rem;
}
.imp .no-horizontal-gutter, section.imp .no-horizontal-gutter {
  --bs-gutter-x: 0;
}
.imp .reenie-beanie-regular, section.imp .reenie-beanie-regular {
  font-family: "Reenie Beanie", serif;
  font-weight: 400;
  font-style: normal;
}
.imp .blurrable, section.imp .blurrable {
  filter: blur(0px);
  transition: filter 0.5s ease-in-out;
}
.imp .blur, section.imp .blur {
  filter: blur(7px);
}
.imp .fp-slidesNav, section.imp .fp-slidesNav {
  display: none;
}
.imp .has-bottom-tear, .imp.has-bottom-tear, section.imp .has-bottom-tear, section.imp.has-bottom-tear {
  padding-bottom: calc(5vw + 5rem);
}
.imp .has-top-tear, section.imp .has-top-tear {
  padding-top: calc(5vw + 5rem);
}
.imp.video-white-block-template .card, section.imp.video-white-block-template .card {
  transition: opacity 200ms ease-in-out;
}
.imp#sectionSummary, section.imp#sectionSummary {
  overflow-y: auto;
  min-height: 100vh;
  background: linear-gradient(0deg, rgba(239, 239, 239, 0.6666666667), rgba(239, 239, 239, 0.6666666667)), url(../../inc/assets/worldmap.png) #efefef;
  background-position: center top;
  overflow: hidden;
  background-size: cover;
}
.imp#our-technology-in-action, .imp#section-why-opn, .imp#section-what-clients-say, section.imp#our-technology-in-action, section.imp#section-why-opn, section.imp#section-what-clients-say {
  background-position: center top;
  background-size: cover;
}
.imp#our-technology-in-action video, .imp#section-why-opn video, .imp#section-what-clients-say video, section.imp#our-technology-in-action video, section.imp#section-why-opn video, section.imp#section-what-clients-say video {
  opacity: 0.5;
}
.imp#section-what-our-clients-say, section.imp#section-what-our-clients-say {
  z-index: -2;
}
.imp#section-what-our-clients-say .image-cropper, section.imp#section-what-our-clients-say .image-cropper {
  width: 30vw;
  height: 30vw;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  background-image: url(../../inc/assets/circle-frame.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.imp#section-what-our-clients-say .client-pic, section.imp#section-what-our-clients-say .client-pic {
  display: inline;
  margin: 0 auto;
  height: 100%;
  width: auto;
  position: absolute;
  z-index: -1;
  left: -25%;
}
.imp#section-what-our-clients-say .quotationmark, section.imp#section-what-our-clients-say .quotationmark {
  opacity: 0.3;
}
.imp#section-what-our-clients-say h1, section.imp#section-what-our-clients-say h1 {
  font-size: 2.4rem;
}
.imp#section-what-our-clients-say h4, section.imp#section-what-our-clients-say h4 {
  line-height: 1.4;
}
.imp#section-what-our-clients-say .client-title h5, section.imp#section-what-our-clients-say .client-title h5 {
  margin: 0;
}
@media screen and (max-width: 991px) {
  .imp#section-what-our-clients-say .image-cropper, section.imp#section-what-our-clients-say .image-cropper {
    margin-left: auto;
    margin-right: auto;
  }
}
.imp#section-latest-news, section.imp#section-latest-news {
  background-color: #052f3f;
  color: #ffffff;
}
.imp#section-latest-news h1, .imp#section-latest-news h2, .imp#section-latest-news h3, .imp#section-latest-news h4, .imp#section-latest-news p, .imp#section-latest-news a, .imp#section-latest-news a:visited, .imp#section-latest-news a:active, .imp#section-latest-news b, section.imp#section-latest-news h1, section.imp#section-latest-news h2, section.imp#section-latest-news h3, section.imp#section-latest-news h4, section.imp#section-latest-news p, section.imp#section-latest-news a, section.imp#section-latest-news a:visited, section.imp#section-latest-news a:active, section.imp#section-latest-news b {
  color: #ffffff;
}
.imp#section-latest-news .carousel-item, section.imp#section-latest-news .carousel-item {
  height: auto;
}
.imp#section-latest-news .news-group, section.imp#section-latest-news .news-group {
  min-height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  .imp#section-latest-news a, section.imp#section-latest-news a {
    width: 40vw;
  }
}
.imp#section-latest-news-ka, section.imp#section-latest-news-ka {
  background-color: transparent;
}
.imp#section-latest-news-ka .news-item, section.imp#section-latest-news-ka .news-item {
  height: auto;
}
.imp#section-latest-news-ka .news-group, section.imp#section-latest-news-ka .news-group {
  min-height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  .imp#section-latest-news-ka a, section.imp#section-latest-news-ka a {
    width: 40vw;
  }
}
.imp#section-we-help, section.imp#section-we-help {
  min-height: 100vh;
  background: linear-gradient(0deg, rgba(239, 239, 239, 0.6666666667), rgba(239, 239, 239, 0.6666666667)), url(../../inc/assets/worldmap.png) #efefef;
  background-position: center top;
  overflow: hidden;
  background-size: cover;
}
.imp#section-our-thinking .insights .card, section.imp#section-our-thinking .insights .card {
  border: none;
  background: #f8f9fa;
  text-align: left;
}
.imp#section-our-thinking .card h5,
.imp#section-our-thinking .card p, section.imp#section-our-thinking .card h5,
section.imp#section-our-thinking .card p {
  flex-grow: 1; /* Allows text to expand and take up remaining space */
  line-height: normal;
}
.imp#section-our-thinking .card h5, section.imp#section-our-thinking .card h5 {
  font-weight: 500;
}
.imp#section-our-thinking .card h5 b, section.imp#section-our-thinking .card h5 b {
  font-weight: 800;
}
.imp#section-our-thinking .this-is-how, section.imp#section-our-thinking .this-is-how {
  display: block;
  font-weight: bold;
  margin-top: 1rem;
}
.imp#section-our-thinking .card img, section.imp#section-our-thinking .card img {
  margin-top: auto; /* Pushes the image to the bottom */
  max-height: 50vw;
  object-fit: cover;
}
.imp#section-our-thinking h1.insights-title, section.imp#section-our-thinking h1.insights-title {
  font-size: 4rem !important;
  transform: rotate(-7deg);
  z-index: 90;
  position: absolute !important;
  left: -3rem;
  top: -3.6rem;
  width: max-content;
}
.imp#section-our-thinking .insights-title-wrapper, section.imp#section-our-thinking .insights-title-wrapper {
  position: relative;
}
.imp#section-our-thinking .fp-overflow, section.imp#section-our-thinking .fp-overflow {
  overflow-y: visible;
}
.imp#section-our-thinking .card p, section.imp#section-our-thinking .card p {
  text-align: justify;
}
.imp#section-our-partners, section.imp#section-our-partners {
  height: 800px;
}
.imp#section-our-partners .fp-overflow, section.imp#section-our-partners .fp-overflow {
  max-height: 800px;
  height: 800px;
}
.imp#section-our-partners .insights .card, section.imp#section-our-partners .insights .card {
  border: none;
  background: #f8f9fa;
  text-align: left;
}
.imp#section-our-partners .card h5,
.imp#section-our-partners .card p, section.imp#section-our-partners .card h5,
section.imp#section-our-partners .card p {
  flex-grow: 1; /* Allows text to expand and take up remaining space */
  line-height: normal;
}
.imp#section-our-partners .card h5, section.imp#section-our-partners .card h5 {
  font-weight: 500;
}
.imp#section-our-partners .card h5 b, section.imp#section-our-partners .card h5 b {
  font-weight: 800;
}
.imp#section-our-partners .card img, section.imp#section-our-partners .card img {
  margin-top: auto;
  max-height: 4rem;
  width: 100%;
  object-fit: contain;
  margin-top: 2rem;
}
.imp#section-our-partners .partner-title-wrapper, section.imp#section-our-partners .partner-title-wrapper {
  position: relative;
}
.imp#section-our-partners .partner-title-blocks, section.imp#section-our-partners .partner-title-blocks {
  position: absolute;
  background-color: #052f3f;
  z-index: 2;
  left: 50%;
  top: -1.5rem;
  width: calc(100% + 1.5rem);
  color: #ffffff;
  height: 3.5rem;
  line-height: 3.5rem;
  font-weight: 700;
  text-align: center;
}
.imp#section-our-partners .fp-overflow, section.imp#section-our-partners .fp-overflow {
  overflow-y: visible;
}
.imp#section-our-partners .card p, section.imp#section-our-partners .card p {
  text-align: left;
}
.imp#section-our-solution .fp-bg, section.imp#section-our-solution .fp-bg {
  background: url(../../inc/assets/mouse.png) #efefef;
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: rgba(239, 239, 239, 0.6666666667);
  background-blend-mode: lighten;
}
.imp#section-our-solution img.screen-content, section.imp#section-our-solution img.screen-content {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
  z-index: 1;
}
.imp#section-our-solution img.screen-frame, section.imp#section-our-solution img.screen-frame {
  z-index: 2;
}
.imp#section-our-solution .screen-wrapper, section.imp#section-our-solution .screen-wrapper {
  position: relative;
  height: 50vh;
}
.imp#section-our-solution .fa-check, section.imp#section-our-solution .fa-check {
  color: #4c6c52;
}
.imp#section-key-points, section.imp#section-key-points {
  background-color: #fafafa;
}
.imp#section-key-points .row.step-row, section.imp#section-key-points .row.step-row {
  margin-top: 10rem;
}
@media screen and (max-width: 992px) {
  .imp#section-key-points, section.imp#section-key-points {
    font-size: calc(1.275rem + 0.3vw);
  }
  .imp#section-key-points h6, section.imp#section-key-points h6 {
    font-size: calc(1.275rem + 0.3vw);
  }
}
.imp#section-letter-from-our-ceo, section.imp#section-letter-from-our-ceo {
  min-height: 100vh;
}
.imp#section-letter-from-our-ceo .opn-bg, section.imp#section-letter-from-our-ceo .opn-bg {
  background: url(../../inc/assets/grunge.png) #efefef;
  background-position: center top;
  background-size: cover;
  background-color: #efefef;
}
.imp#section-letter-from-our-ceo .read-less, section.imp#section-letter-from-our-ceo .read-less {
  height: 50px;
  overflow: hidden;
  transition: height 0.5s ease-in-out;
  display: block;
}
.imp#section-letter-from-our-ceo .read-less.off, section.imp#section-letter-from-our-ceo .read-less.off {
  height: auto;
}
.imp#section-letter-from-our-ceo .reenie-beanie-regular, section.imp#section-letter-from-our-ceo .reenie-beanie-regular {
  font-size: 4rem;
}
.imp#section-letter-from-our-ceo .right_slide_column h2, section.imp#section-letter-from-our-ceo .right_slide_column h2 {
  opacity: 0;
  transition: opacity 0.5s ease-in-out 0.5s;
}
.imp#section-letter-from-our-ceo .right_slide_column.visible, section.imp#section-letter-from-our-ceo .right_slide_column.visible {
  width: 50vw;
}
.imp#section-letter-from-our-ceo .right_slide_column.visible h2, section.imp#section-letter-from-our-ceo .right_slide_column.visible h2 {
  opacity: 1;
}
@media screen and (max-width: 992px) {
  .imp#section-letter-from-our-ceo h2 span, section.imp#section-letter-from-our-ceo h2 span {
    font-size: calc(1.6rem + 1.4vw);
  }
}
.imp#section-our-mission, section.imp#section-our-mission {
  min-height: 1px;
  height: auto;
  margin-top: 7rem;
  margin-bottom: 7rem;
}
.imp#section-operating-principles, section.imp#section-operating-principles {
  min-height: 1px;
  height: auto;
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #fafafa;
}
.imp#section-operating-principles .container, section.imp#section-operating-principles .container {
  padding-top: 5rem;
}
.imp#section-operating-principles .card, section.imp#section-operating-principles .card {
  border: none;
  background: #ffffff;
  text-align: left;
}
.imp#section-operating-principles .card p, section.imp#section-operating-principles .card p {
  text-align: justify;
}
.imp#section-operating-principles .card h2, section.imp#section-operating-principles .card h2 {
  line-height: 2.1rem;
  min-height: 4.2rem;
}
.imp#section-operating-principles .this-is-how, section.imp#section-operating-principles .this-is-how {
  display: block;
  font-weight: bold;
  margin-top: 1rem;
}
.imp#section-operating-principles h1.insights-title, section.imp#section-operating-principles h1.insights-title {
  font-size: 4.5rem !important;
  transform: rotate(-7deg);
  z-index: 90;
  position: absolute !important;
  left: 2rem;
  top: -4.2rem;
  width: max-content;
}
.imp#section-operating-principles .insights-title-wrapper, section.imp#section-operating-principles .insights-title-wrapper {
  position: relative;
}
.imp#section-operating-principles .fp-overflow, section.imp#section-operating-principles .fp-overflow {
  overflow-y: visible;
}
.imp#section-operating-principles .reenie-beanie-regular, section.imp#section-operating-principles .reenie-beanie-regular {
  font-size: 2.3em;
}
@media screen and (max-width: 991px) {
  .imp#section-operating-principles .reenie-beanie-regular, section.imp#section-operating-principles .reenie-beanie-regular {
    font-size: 3rem;
  }
}
.imp#section-steps-to-sustainability .list-section, section.imp#section-steps-to-sustainability .list-section {
  background-color: #fafafa;
}
.imp#section-letter-video .read-letter-btn, section.imp#section-letter-video .read-letter-btn {
  position: absolute;
  bottom: 0px;
  right: 0px;
}
.imp#section-connected-ecosystem, section.imp#section-connected-ecosystem {
  min-height: 100vh;
  background-color: #052f3f;
  background: url(../../inc/assets/bg-aboutus.png) #052f3f;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  background-color: #052f3f;
}
.imp#section-connected-ecosystem .container-fluid, section.imp#section-connected-ecosystem .container-fluid {
  padding: 0;
  padding-top: calc(5vw + 5rem);
}
.imp#section-connected-ecosystem .container-fluid .card, section.imp#section-connected-ecosystem .container-fluid .card {
  background-color: #ffffff;
  border-radius: 3rem;
}
.imp#section-connected-ecosystem .container-fluid .card .border-start, section.imp#section-connected-ecosystem .container-fluid .card .border-start {
  border-left-color: #052f3f !important;
}
.imp#section-connected-ecosystem .container-fluid .card h1, section.imp#section-connected-ecosystem .container-fluid .card h1 {
  font-weight: 700;
}
.imp#section-cases .image-wrapper, section.imp#section-cases .image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 6/2;
  max-height: 20rem;
}
.imp#section-cases .img-cover, section.imp#section-cases .img-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.imp#section-our-toolbox .fp-overflow, section.imp#section-our-toolbox .fp-overflow {
  background: url(../../inc/assets/road.png) #efefef;
  background-position: center top;
  overflow: hidden;
  overflow-y: auto;
  background-size: cover;
}
.imp#section-our-toolbox .container, section.imp#section-our-toolbox .container {
  padding: 5rem 0;
  margin-bottom: 6rem;
}
.imp#section-our-toolbox .tab-text, section.imp#section-our-toolbox .tab-text {
  text-align: justify;
}
.imp#section-our-toolbox .tab-text b, section.imp#section-our-toolbox .tab-text b {
  font-weight: 700;
}
.imp#section-our-toolbox .img-col, section.imp#section-our-toolbox .img-col {
  padding-left: 6rem;
}
.imp#section-our-toolbox img, section.imp#section-our-toolbox img {
  max-height: 60vh;
}
.imp#section-our-toolbox .row, section.imp#section-our-toolbox .row {
  flex-grow: 0; /* Prevents the row from stretching */
}
.imp#section-our-toolbox .toolbox-text-col, section.imp#section-our-toolbox .toolbox-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.imp#section-our-toolbox .toolbox-img-col, section.imp#section-our-toolbox .toolbox-img-col {
  display: flex;
  align-items: stretch;
}
.imp#section-our-toolbox .toolbox-img-col img, section.imp#section-our-toolbox .toolbox-img-col img {
  height: 100%; /* Forces image height to match the text */
  width: 100%; /* Keeps it responsive */
  object-fit: cover;
}
@media (max-width: 768px) {
  .imp#section-our-toolbox .container, section.imp#section-our-toolbox .container {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .imp#section-operating-principles .card h2, section.imp#section-operating-principles .card h2 {
    min-height: 6.3rem;
  }
}
.imp#section-what-our-clients-say .slide .fp-bg, section.imp#section-what-our-clients-say .slide .fp-bg {
  width: 100vw;
}
.imp#sectionKnowledgeAcademy .card p, section.imp#sectionKnowledgeAcademy .card p {
  text-align: justify !important;
}
@media screen and (max-width: 991px) {
  .imp .carousel .container, .imp .carousel .container-fluid, section.imp .carousel .container, section.imp .carousel .container-fluid {
    padding-left: 7rem;
    padding-right: 7rem;
  }
}

@media screen and (max-width: 992px) {
  .imp#sectionStart .messageWrapper, section.imp#sectionStart .messageWrapper {
    top: 50vh;
  }
  .imp#sectionStart .logo-name, section.imp#sectionStart .logo-name {
    left: 0px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 8rem;
  }
}
.slide-circle-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(5, 47, 63, 0.6666666667);
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
  .slide-circle-button {
    width: 3rem;
    height: 100px;
    border-radius: 1.5rem;
  }
}
.light-slides .slide-circle-button {
  background-color: rgba(239, 239, 239, 0.6666666667);
}

.slide-circle-button-left {
  margin-left: 15px;
}

.slide-circle-button-right {
  margin-right: 15px;
}

.slide-chevron {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 4px solid #ffffff;
  border-top: 4px solid #ffffff;
  position: absolute;
}
.slide-chevron.chev-left {
  transform: rotate(225deg);
}
.slide-chevron.chev-right {
  transform: rotate(45deg);
}

@media screen and (min-width: 992px) {
  .slide-circle-button-left {
    margin-left: 2vw;
  }
  .slide-circle-button-right {
    margin-right: 2vw;
  }
}
.opn-slider-container {
  overflow: hidden;
  position: relative;
  background: #f8f9fa;
  padding: 10px 0;
  width: 100%;
  height: 90px;
}

.opn-slider {
  display: flex;
  will-change: transform;
  height: 100%;
}

.opn-slide {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px; /* Use padding for spacing instead of margin */
  box-sizing: border-box;
}

.opn-slide img {
  height: 45px;
  width: auto;
  object-fit: contain;
  display: block;
}

.bg-grunge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../inc/assets/grunge.png) no-repeat center center/cover #efefef;
  opacity: 0.4; /* Adjust the opacity */
  z-index: -1;
}

.letter-page {
  color: #052f3f;
}

body {
  color: #052f3f;
}

.section, .scroll-compensator {
  background-color: #efefef;
  position: relative;
}

#wholemobilesite {
  background-image: url("../../inc/assets/road-to-net-zero.jpg");
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  overflow: hidden;
}

.sticky-hero {
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 1;
}

.first-section {
  position: fixed !important; /* Keeps it in place */
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100vh !important; /* Full viewport height */
  z-index: 10; /* Ensures it's on top */
}

.tst-second-section {
  position: relative;
  background: white; /* Your content background */
  z-index: 20; /* Above the first section */
}

.content-wrapper {
  position: relative;
  z-index: 20;
  margin-top: 110vh; /* Pushes content below the first section */
  background-color: #efefef;
}

@media screen and (max-width: 991px) {
  .container {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
.page-template-opn-scroll-about-us #section-foot {
  background-color: #052f3f;
}

.section-tear {
  width: 100vw;
  pointer-events: none;
}
.section-tear.section-tear-top {
  margin-top: -2px;
  top: 0px;
}
.section-tear.section-tear-bottom {
  bottom: 0px;
}

footer.opn_footer {
  background-color: #052f3f;
  bottom: 0;
  width: 100%;
  z-index: 99;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer.opn_footer a, footer.opn_footer.opn_footer a:visited, footer.opn_footer.opn_footer a:active {
  color: white;
}
footer.opn_footer .footer_items {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}
footer.opn_footer .footer_items a {
  color: #fff;
  margin: 0.5rem;
  font-size: 2.25rem;
}
footer.opn_footer .footer_items a svg {
  color: #fff;
  fill: #fff;
}
footer.opn_footer .footer_items a img {
  filter: saturate(0) brightness(7);
  height: 2.25rem;
  width: 2.25rem;
}
@media screen and (max-width: 991px) {
  footer.opn_footer .footer_items a img {
    display: none;
  }
}
footer.opn_footer .sub_footer {
  display: flex;
}
footer.opn_footer .sub_footer ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}
footer.opn_footer .sub_footer ul li {
  list-style-type: none;
}
footer.opn_footer .sub_footer ul li a {
  color: #ffffff;
  text-decoration: none;
}
footer.opn_footer .sub_footer ul li span.divido {
  color: #ffffff;
  margin-left: 5px;
  margin-right: 5px;
}
footer.opn_footer .footer_title {
  margin-bottom: 0.5rem;
  /* margin-top: 1rem; */
  font-size: 1.5rem;
  font-weight: 900;
  font-family: "Archivo", sans-serif;
  color: white;
}

@media screen and (max-width: 574px) {
  .footer-hack {
    margin-bottom: 181px;
  }
  .opn_footer {
    height: 182px;
  }
}
@media screen and (max-width: 991px) {
  #latestNewsCarousel .row {
    width: 100%;
  }
  #latestNewsCarousel .ratio {
    --bs-aspect-ratio: 50%;
  }
}

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