/*--width calculation subtraction--*/
/*--width calculation addition--*/
/*--calculation as per sending properties--*/
/* mixin for multiline */
/*--usase
.abs {
  @include abs-pos(10px, 10px, 5px, 15px);
}
--*/
@keyframes blink {
  50% {
    opacity: 0.0; } }
@-webkit-keyframes blink {
  50% {
    opacity: 0.0; } }
@keyframes spiner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }
@-webkit-keyframes pulse-grow {
  to {
    -webkit-transform: scale(1.3);
    transform: scale(1.3); } }
@keyframes pulse-grow {
  to {
    -webkit-transform: scale(1.3);
    transform: scale(1.3); } }
@-webkit-keyframes buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg); }
  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg); } }
@keyframes buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg); }
  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg); } }
@keyframes ring {
  0% {
    -webkit-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    transform: rotate(-15deg); }
  2% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg); }
  4% {
    -webkit-transform: rotate(-18deg);
    -ms-transform: rotate(-18deg);
    transform: rotate(-18deg); }
  6% {
    -webkit-transform: rotate(18deg);
    -ms-transform: rotate(18deg);
    transform: rotate(18deg); }
  8% {
    -webkit-transform: rotate(-22deg);
    -ms-transform: rotate(-22deg);
    transform: rotate(-22deg); }
  10% {
    -webkit-transform: rotate(22deg);
    -ms-transform: rotate(22deg);
    transform: rotate(22deg); }
  12% {
    -webkit-transform: rotate(-18deg);
    -ms-transform: rotate(-18deg);
    transform: rotate(-18deg); }
  14% {
    -webkit-transform: rotate(18deg);
    -ms-transform: rotate(18deg);
    transform: rotate(18deg); }
  16% {
    -webkit-transform: rotate(-12deg);
    -ms-transform: rotate(-12deg);
    transform: rotate(-12deg); }
  18% {
    -webkit-transform: rotate(12deg);
    -ms-transform: rotate(12deg);
    transform: rotate(12deg); }
  20%, 100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); } }
@-webkit-keyframes wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px); }
  33.3% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px); }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px); }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px); }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px); }
  33.3% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px); }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px); }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px); }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
/*--mixin wobble repeat--*/
@-webkit-keyframes wobbleRepeat {
  5%, 25% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px); }
  15%, 35% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px); }
  40% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn); } }
@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn); } }
/*--ended mixin wobble repeat--*/
@keyframes slide {
  0% {
    left: 0;
    top: calc(50% - 62px);
    -webkit-transform: scale(0.25);
    -moz-transform: scale(0.25);
    -ms-transform: scale(0.25);
    -o-transform: scale(0.25);
    transform: scale(0.25); }
  50% {
    left: calc(50% - 83px);
    top: calc(50% - 62px);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5); }
  100% {
    left: calc(100% - 198px);
    top: 32px;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0); }
  40% {
    transform: translateY(-30px); }
  60% {
    transform: translateY(-15px); } }
@keyframes ring {
  0% {
    width: 0px;
    height: 0px;
    opacity: 1; }
  100% {
    width: 50px;
    height: 50px;
    opacity: 0; } }
@keyframes fadeBlink {
  0%, 100% {
    opacity: 0.5; }
  50% {
    opacity: 1; } }
@keyframes shiftArrows {
  0% {
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0; } }
/*usase
.shadows {
  @include box-shadow(0px 4px 5px #666, 2px 6px 10px #999);
}
*/
/*
usage
.h1{
@include text-shadow(2, 2, 5, rgba(0,0,0,.4))
}
*/
/*@mixin font-face($font-name, $file-name, $weight: normal, $style: normal) */
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Regular.eot?v=2.137");
  src: url("../fonts/roboto/Roboto-Regular.eot?#iefix&v=2.137") format("embedded-opentype"), url("../fonts/roboto/Roboto-Regular.woff2?v=2.137") format("woff2"), url("../fonts/roboto/Roboto-Regular.woff?v=2.137") format("woff"), url("../fonts/roboto/Roboto-Regular.ttf?v=2.137") format("truetype"), url("../fonts/roboto/Roboto-Regular.svg?v=2.137#Roboto-Regular") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: "Roboto-Bold";
  src: url("../fonts/roboto/Roboto-Bold.eot?v=2.137");
  src: url("../fonts/roboto/Roboto-Bold.eot?#iefix&v=2.137") format("embedded-opentype"), url("../fonts/roboto/Roboto-Bold.woff2?v=2.137") format("woff2"), url("../fonts/roboto/Roboto-Bold.woff?v=2.137") format("woff"), url("../fonts/roboto/Roboto-Bold.ttf?v=2.137") format("truetype"), url("../fonts/roboto/Roboto-Bold.svg?v=2.137#Roboto-Bold") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: "Font Awesome 5 Brands";
  src: url("../fontawesome/webfonts/fa-brands-400.eot?v=5.12 0.1");
  src: url("../fontawesome/webfonts/fa-brands-400.eot?#iefix&v=5.12 0.1") format("embedded-opentype"), url("../fontawesome/webfonts/fa-brands-400.woff2?v=5.12 0.1") format("woff2"), url("../fontawesome/webfonts/fa-brands-400.woff?v=5.12 0.1") format("woff"), url("../fontawesome/webfonts/fa-brands-400.ttf?v=5.12 0.1") format("truetype"), url("../fontawesome/webfonts/fa-brands-400.svg?v=5.12 0.1#FontAwesome5Brands-Regular") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: "Font Awesome 5 Regular";
  src: url("../fontawesome/webfonts/fa-regular-400.eot?v=5.12 0.1");
  src: url("../fontawesome/webfonts/fa-regular-400.eot?#iefix&v=5.12 0.1") format("embedded-opentype"), url("../fontawesome/webfonts/fa-regular-400.woff2?v=5.12 0.1") format("woff2"), url("../fontawesome/webfonts/fa-regular-400.woff?v=5.12 0.1") format("woff"), url("../fontawesome/webfonts/fa-regular-400.ttf?v=5.12 0.1") format("truetype"), url("../fontawesome/webfonts/fa-regular-400.svg?v=5.12 0.1#FontAwesome5Free-Regular") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: "Font Awesome 5 Solid";
  src: url("../fontawesome/webfonts/fa-solid-900.eot?v=5.12 0.1");
  src: url("../fontawesome/webfonts/fa-solid-900.eot?#iefix&v=5.12 0.1") format("embedded-opentype"), url("../fontawesome/webfonts/fa-solid-900.woff2?v=5.12 0.1") format("woff2"), url("../fontawesome/webfonts/fa-solid-900.woff?v=5.12 0.1") format("woff"), url("../fontawesome/webfonts/fa-solid-900.ttf?v=5.12 0.1") format("truetype"), url("../fontawesome/webfonts/fa-solid-900.svg?v=5.12 0.1#FontAwesome5Free-Solid") format("svg");
  font-weight: normal;
  font-style: normal; }
.cmn-fw, .hr-list.wide, .page-header, .header-content--top, .header-content--navbar, .page-pagination, .page-pagination .pagination, .job-details, .resume-list-block, .resume-list-block .upload-preview, .aside-panel, .aside-panel .panel-row, .fieldset-block, .fieldset-block .fieldset-body, .aside-listing-item, .aside-listing-item .item-content .post-info, .aside-block, .aside-block .block-header, .aside-block .block-body, .aside-block-post, .aside-block-post .block-meta-content, .aside-block-post .block-meta-content .meta-info, .label-list {
  width: 100%;
  position: relative; }

.section-region {
  width: 100%;
  position: relative;
  padding: 3.125rem 0rem ; }
  .section-region p a {
    display: inline-block; }

.section-about {
  width: 100%;
  position: relative;
  padding-bottom: 3.125rem; }
  .section-about .about-intro {
    width: 100%;
    position: relative;
    min-height: 33.125rem;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding-top: 3.125rem; }
    .section-about .about-intro::before {
      content: '';
      background-color: #233446;
      position: absolute;
      left: 0px;
      bottom: 0px;
      width: 100%;
      height: 100%;
      clip-path: polygon(100% 0%, 100% 35%, 30% 100%, 0% 76%, 0% 0%); }
    .section-about .about-intro::after {
      content: '';
      background-color: #F2FAFF;
      position: absolute;
      left: 0px;
      bottom: 10px;
      width: 100%;
      height: 100%;
      clip-path: polygon(100% 0%, 100% 37%, 30% 97%, 0% 77%, 0% 0%); }
    .section-about .about-intro .intro-content {
      min-height: 33.125rem;
      position: relative;
      flex-grow: 1;
      padding-bottom: 11.5rem;
      padding-right: 5rem;
      z-index: 1; }
      .section-about .about-intro .intro-content .content-title {
        font-size: 3rem;
        text-transform: uppercase;
        margin-bottom: 2.5rem; }
      .section-about .about-intro .intro-content p {
        line-height: 1.5em; }

.section-row {
  width: 100%;
  position: relative;
  padding-bottom: 2.5rem; }
  .section-row:last-child {
    padding-bottom: 0px; }

.section-header {
  width: 100%;
  position: relative;
  padding-bottom: 3rem;
  background: url("../images/header_badge.webp") no-repeat 50% 100%; }
  .section-header--anim {
    position: absolute;
    bottom: 11px;
    left: 50%;
    background-color: transparent;
    height: 30px;
    width: 30px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
    opacity: 1; }
    .section-header--anim:before {
      content: '';
      width: 30px;
      height: 30px;
      border-radius: 100%;
      border: 3px solid #C4FD60;
      position: absolute;
      z-index: -1;
      bottom: 11px;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      animation: ring 2s infinite; }
    .section-header--anim:after {
      content: '';
      width: 30px;
      height: 30px;
      border-radius: 100%;
      border: 3px solid #C4FD60;
      position: absolute;
      z-index: -1;
      bottom: 11px;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      animation: ring 1.5s infinite; }
  .section-header .header-title {
    text-align: center;
    padding-bottom: 0.3125rem;
    text-transform: uppercase; }
  .section-header p {
    text-align: center;
    line-height: 1.5em;
    margin-bottom: 0.625rem; }
  .section-header.revert {
    background: url("../images/header_badge_revert.png") no-repeat 50% 100%; }
    .section-header.revert .section-header--anim {
      z-index: 1; }
      .section-header.revert .section-header--anim:before {
        border: 3px solid #FFFFFF; }
      .section-header.revert .section-header--anim:after {
        border: 3px solid #FFFFFF; }

.thumb-iconin-list {
  padding: 0px;
  position: relative;
  margin-left: -0.75rem;
  margin-right: -0.75rem; }
  .thumb-iconin-list .list-item {
    position: relative;
    padding: 1rem 0.75rem ;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.25rem;
    font-weight: bold;
    color: #FFFFFF; }
    .thumb-iconin-list .list-item .list-icon {
      height: 4rem;
      width: 4rem;
      border: 2px solid #FFFFFF;
      padding: 8px;
      background-color: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.25rem;
      border-radius: 100%;
      -webkit-border-radius: 100%;
      -moz-border-radius: 100%;
      -ms-border-radius: 100%;
      -o-border-radius: 100%;
      margin-right: 1rem; }
    .thumb-iconin-list .list-item .list-text {
      display: flex;
      flex-grow: 1; }
  .thumb-iconin-list.list-2col {
    display: flex;
    flex-flow: row wrap; }
    .thumb-iconin-list.list-2col .list-item {
      width: 50%; }

.vr-contentList {
  width: 100%;
  position: relative; }
  .vr-contentList .list-item {
    font-size: 1rem;
    color: #4d4d4d;
    font-weight: normal;
    line-height: 1.5em;
    position: relative;
    width: 100%;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem; }
  .vr-contentList .list-title {
    font-weight: bold;
    color: #76B900; }
  .vr-contentList .strong {
    font-weight: bold;
    color: #323232; }

.hr-list {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: auto; }
  .hr-list li {
    position: relative;
    padding: 0em 0.625em; }
    .hr-list li:first-child {
      padding-left: 0em; }
    .hr-list li.time-stamp {
      padding-left: 20px; }
  .hr-list.center {
    margin: auto auto; }
  .hr-list.float-inherit li {
    float: inherit; }

.no-resize {
  resize: none; }

.arrow-link-list {
  width: 100%;
  position: relative;
  display: flex;
  flex-flow: column nowrap; }
  .arrow-link-list .list-item {
    width: 100%;
    position: relative;
    margin: 0px; }
  .arrow-link-list .list-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: row nowrap;
    padding: 0.5rem 1.5rem ;
    color: #FFFFFF;
    position: relative; }
    .arrow-link-list .list-link::before {
      content: '\f105';
      font-family: "Font Awesome 5 Solid";
      position: absolute;
      left: 0px; }
    .arrow-link-list .list-link:hover, .arrow-link-list .list-link:focus {
      color: #00C4FF; }

.address-list {
  width: 100%;
  position: relative;
  display: flex;
  flex-flow: column nowrap; }
  .address-list .list-item {
    width: 100%;
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    margin: 0.5rem 0rem ;
    position: relative;
    padding-left: 2.25rem; }
    .address-list .list-item .list-icon {
      width: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      margin-right: 0.75rem;
      font-size: 1.125rem;
      top: 0.125rem;
      position: absolute;
      left: 0px; }
      .address-list .list-item .list-icon .fa-map-marker-alt,
      .address-list .list-item .list-icon .fa-phone {
        margin-top: 0.1875rem; }
  .address-list--lg .list-item {
    font-size: 1rem;
    padding-left: 6.25rem;
    line-height: 1.625em;
    font-weight: 700;
    color: #233446;
    margin: 0.75rem 0rem ;
    display: flex;
    align-items: flex-start;
    flex-flow: column; }
    .address-list--lg .list-item .list-icon {
      width: 2.5rem;
      margin-right: 1.875rem;
      margin-left: 1.875rem;
      font-size: 2.5rem;
      top: 0.5rem; }
    .address-list--lg .list-item .list-item-headline {
      font-size: 1.25rem;
      line-height: 1.625em;
      width: 100%; }
    .address-list--lg .list-item .list-item-text {
      font-size: 1rem;
      line-height: 1.625em;
      width: 100%; }
    .address-list--lg .list-item .list-item-title {
      font-size: 1.25rem;
      line-height: 1.625em;
      text-transform: uppercase;
      margin-bottom: 0.25rem;
      width: 100%; }

.owl-carousel {
  padding-bottom: 2rem; }
  .owl-carousel .owl-nav {
    margin: 0px;
    position: absolute;
    bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: transparent; }
    .owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
      color: #A0ABB7;
      border: none;
      background-color: transparent;
      padding: 0.25rem 0.75rem !important;
      margin: 0px; }
      .owl-carousel .owl-nav button.owl-prev:hover, .owl-carousel .owl-nav button.owl-prev:focus, .owl-carousel .owl-nav button.owl-next:hover, .owl-carousel .owl-nav button.owl-next:focus {
        background-color: transparent;
        color: #00B4ED; }
  .owl-carousel .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 0px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: auto;
    background-color: transparent;
    margin-top: 1rem; }
  .owl-carousel .owl-nav {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: transparent;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between; }

.owl-4-block {
  position: relative; }
  .owl-4-block .owl-stage-outer {
    padding-bottom: 1.375rem; }
  .owl-4-block .item {
    padding-top: 1rem;
    padding-bottom: 1rem; }

a {
  display: block;
  font-size: 0.875rem;
  text-decoration: none;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  color: #5a9eed; }
  a:hover, a:focus {
    color: #00B4ED;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in; }

ol, ul, dl {
  margin: 0px;
  padding: 0px;
  list-style-type: none; }

h1 {
  font-size: 2.5rem;
  font-family: "Roboto-Bold";
  line-height: 1.4em;
  color: #233446;
  margin-bottom: 0px; }

h2 {
  font-size: 2rem;
  font-family: "Roboto-Bold";
  line-height: 1.4em;
  color: #233446;
  margin-bottom: 0px; }

h3 {
  font-size: 1.75rem;
  font-family: "Roboto-Bold";
  line-height: 1.4em;
  color: #233446;
  margin-bottom: 0px; }

h4 {
  font-size: 1.5rem;
  font-family: "Roboto-Bold";
  line-height: 1.4em;
  color: #233446;
  margin-bottom: 0px; }

h5 {
  font-size: 1.25rem;
  font-family: "Roboto-Bold";
  line-height: 1.4em;
  color: #233446;
  margin-bottom: 0px; }

h6 {
  font-size: 1rem;
  font-family: "Roboto-Bold";
  line-height: 1.4em;
  color: #233446;
  margin-bottom: 0px; }

p {
  color: #323232;
  font-size: 1rem;
  text-align: justify; }
  p.small {
    font-size: 0.875rem; }

.list-group--labeled li,
.list-group--labeled .list-group-item {
  line-height: 1.5em;
  background-color: transparent;
  border: none;
  display: flex;
  flex-flow: row wrap; }
  .list-group--labeled li label,
  .list-group--labeled .list-group-item label {
    padding-right: calc(var(--bs-gutter-x) / 2);
    font-weight: bold; }
  .list-group--labeled li .btn,
  .list-group--labeled .list-group-item .btn {
    font-size: 0.875rem; }

.iconic-list {
  width: 100%;
  position: relative; }
  .iconic-list .list-item {
    position: relative;
    margin: 0.75rem 0rem ;
    padding-left: 1.875rem;
    line-height: 1.5em;
    color: #323232; }
  .iconic-list .list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0px;
    top: 0.125rem;
    width: 1.5rem;
    font-size: 1.125rem; }
  .iconic-list--2Col {
    display: flex;
    flex-flow: row wrap; }
    .iconic-list--2Col .list-item {
      width: 50%; }

.text-primary {
  color: #5a9eed !important; }
.text-regular {
  font-family: "Roboto" !important;
  font-weight: normal !important; }

.general-header {
  width: 100%;
  position: relative; }
  .general-header .header-title {
    font-size: 2rem;
    padding-bottom: 1rem;
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    align-items: center; }
    .general-header .header-title .arrows {
      display: block;
      height: 1.25rem;
      width: 1.25rem;
      border: solid rgba(35, 52, 70, 0.5);
      border-width: 3px 3px 0 0;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
      position: relative;
      margin-left: 1.5rem; }
      .general-header .header-title .arrows::before, .general-header .header-title .arrows::after {
        content: '';
        position: absolute;
        display: block;
        height: 1.25rem;
        width: 1.25rem;
        border-width: 3px 3px 0 0; }
      .general-header .header-title .arrows::before {
        border: solid rgba(35, 52, 70, 0.3);
        border-width: 3px 3px 0 0;
        /* top - distance minus border */
        top: 4px;
        left: -7px; }
      .general-header .header-title .arrows::after {
        border: solid #233446;
        border-width: 3px 3px 0 0;
        /* top - distance plus border */
        top: -10px;
        left: 7px; }
  .general-header .sub-header-title {
    font-size: 1.625rem;
    padding-bottom: 1rem;
    text-transform: uppercase;
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    align-items: center; }
    .general-header .sub-header-title .arrows {
      display: block;
      height: 0.875rem;
      width: 0.875rem;
      border: solid rgba(35, 52, 70, 0.5);
      border-width: 2px 2px 0 0;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
      position: relative;
      margin-left: 1rem; }
      .general-header .sub-header-title .arrows::before, .general-header .sub-header-title .arrows::after {
        content: '';
        position: absolute;
        display: block;
        height: 0.875rem;
        width: 0.875rem;
        border-width: 2px 2px 0 0; }
      .general-header .sub-header-title .arrows::before {
        border: solid rgba(35, 52, 70, 0.3);
        border-width: 2px 2px 0 0;
        /* top - distance minus border */
        top: 3px;
        left: -5px; }
      .general-header .sub-header-title .arrows::after {
        border: solid #233446;
        border-width: 2px 2px 0 0;
        left: 5px;
        top: -7px; }

.content-article h1 {
  font-size: 1.75rem; }
.content-article h2 {
  font-size: 1.5rem; }
.content-article h3 {
  font-size: 1.375rem; }
.content-article h4 {
  font-size: 1.25rem; }
.content-article h5 {
  font-size: 1.125rem; }
.content-article h6 {
  font-size: 1rem; }
.content-article ul {
  margin-bottom: 1.25rem; }
  .content-article ul li {
    line-height: 2em;
    padding-left: 1.875rem;
    position: relative; }
    .content-article ul li::before {
      font-family: "Font Awesome 5 Solid";
      content: '\f101';
      font-weight: normal;
      position: absolute;
      left: 10px;
      top: 0.0625rem; }
    .content-article ul li a {
      display: inline-block; }

.sliding-content {
  width: 100%;
  position: relative;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  padding-bottom: 3.375rem; }
  .sliding-content[data-readmore] {
    overflow: hidden; }
  .sliding-content + [data-readmore-toggle], .sliding-content[data-readmore] {
    width: 100%; }

.fade-moreLess {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  background-image: -webkit-gradient(linear, left 0%, left 40%, from(rgba(255, 255, 255, 0.5)), to(#FFFFFF));
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, #FFFFFF 40%);
  background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, #FFFFFF 40%);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, #FFFFFF 40%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80FFFFFF', endColorstr='#FFFFFFFF', GradientType=0);
  bottom: 0px;
  left: 0px;
  padding: 2rem;
  padding-bottom: 1rem; }
  .fade-moreLess.fade-more {
    position: absolute;
    -webkit-transition: background-color 0.6s ease-in-out;
    -moz-transition: background-color 0.6s ease-in-out;
    -ms-transition: background-color 0.6s ease-in-out;
    -o-transition: background-color 0.6s ease-in-out;
    transition: background-color 0.6s ease-in-out; }
  .fade-moreLess.fade-less {
    position: relative;
    padding: 0rem;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out; }

.first-word {
  color: #FFAB00; }

.check-list {
  width: 100%;
  position: relative; }
  .check-list .list-item {
    width: 100%;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5em;
    font-size: 1rem;
    margin: 0.75rem 0rem ; }
    .check-list .list-item::before {
      content: "\f00c";
      font-family: "Font Awesome 5 Solid";
      position: absolute;
      left: 0px; }

.success-note {
  margin: 0;
  font-size: 0.75rem;
  font-weight: normal;
  color: #70AC06; }

.navbar--primary {
  padding: 0px; }
  .navbar--primary .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative; }
    .navbar--primary .navbar-nav .nav-item .nav-link {
      font-size: 0.875rem;
      font-weight: bold;
      line-height: 0.875em;
      text-transform: uppercase;
      padding: 0.625rem 1.375rem ;
      color: rgba(18, 29, 50, 0.6);
      border: none;
      box-shadow: none; }
      .navbar--primary .navbar-nav .nav-item .nav-link:hover, .navbar--primary .navbar-nav .nav-item .nav-link:focus {
        color: #121D32;
        border: none;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none; }
      .navbar--primary .navbar-nav .nav-item .nav-link.active {
        color: #FFAB00;
        border: none;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none; }
    .navbar--primary .navbar-nav .nav-item.dropdown {
      border: none !important; }
      .navbar--primary .navbar-nav .nav-item.dropdown:active {
        border: none !important;
        box-shadow: none !important; }
      .navbar--primary .navbar-nav .nav-item.dropdown .nav-link,
      .navbar--primary .navbar-nav .nav-item.dropdown a {
        outline: none !important; }
        .navbar--primary .navbar-nav .nav-item.dropdown .nav-link:hover, .navbar--primary .navbar-nav .nav-item.dropdown .nav-link:focus, .navbar--primary .navbar-nav .nav-item.dropdown .nav-link:active,
        .navbar--primary .navbar-nav .nav-item.dropdown a:hover,
        .navbar--primary .navbar-nav .nav-item.dropdown a:focus,
        .navbar--primary .navbar-nav .nav-item.dropdown a:active {
          outline: none !important; }
    .navbar--primary .navbar-nav .nav-item .dropdown-menu {
      background-color: #F2FAFF;
      border: none;
      -moz-box-shadow: 0px 0px 14px 2px rgba(0, 12, 34, 0.04), 0px 0px 14px 2px rgba(0, 12, 34, 0.04);
      -webkit-box-shadow: 0px 0px 14px 2px rgba(0, 12, 34, 0.04), 0px 0px 14px 2px rgba(0, 12, 34, 0.04);
      box-shadow: 0px 0px 14px 2px rgba(0, 12, 34, 0.04), 0px 0px 14px 2px rgba(0, 12, 34, 0.04); }
      .navbar--primary .navbar-nav .nav-item .dropdown-menu--subMenus {
        height: 100%;
        top: 0rem;
        left: calc(100% - 14px);
        background-color: #FFFFFF; }
        .navbar--primary .navbar-nav .nav-item .dropdown-menu--subMenus .navbar-subNav .nav-item .nav-link {
          font-weight: normal; }
          .navbar--primary .navbar-nav .nav-item .dropdown-menu--subMenus .navbar-subNav .nav-item .nav-link:hover, .navbar--primary .navbar-nav .nav-item .dropdown-menu--subMenus .navbar-subNav .nav-item .nav-link:focus, .navbar--primary .navbar-nav .nav-item .dropdown-menu--subMenus .navbar-subNav .nav-item .nav-link:active {
            background-color: #e9f1f4; }
    .navbar--primary .navbar-nav .nav-item.dropdown-item {
      padding: 0px;
      position: unset;
      background-color: transparent; }
    .navbar--primary .navbar-nav .nav-item .navbar-subNav {
      display: flex;
      flex-flow: column nowrap;
      max-height: 65vh;
      overflow-y: auto;
      width: 100%; }
      .navbar--primary .navbar-nav .nav-item .navbar-subNav .nav-item .nav-link {
        font-size: 0.875rem;
        font-weight: normal;
        line-height: 0.875em;
        text-transform: uppercase;
        padding: 1rem 1.5rem ;
        color: #121D32;
        border: none;
        box-shadow: none;
        display: flex;
        align-items: center;
        position: relative; }
        .navbar--primary .navbar-nav .nav-item .navbar-subNav .nav-item .nav-link:hover, .navbar--primary .navbar-nav .nav-item .navbar-subNav .nav-item .nav-link:focus, .navbar--primary .navbar-nav .nav-item .navbar-subNav .nav-item .nav-link:active {
          color: #FFAB00;
          border: none;
          -moz-box-shadow: none;
          -webkit-box-shadow: none;
          box-shadow: none;
          background-color: #FFFFFF; }
      .navbar--primary .navbar-nav .nav-item .navbar-subNav .nav-item.dropend .nav-link::after {
        position: absolute;
        right: 1rem; }
    .navbar--primary .navbar-nav .dropdown-item.dropdown-toggle:focus, .navbar--primary .navbar-nav .dropdown-item.dropdown-toggle:active, .navbar--primary .navbar-nav .dropdown-item.dropdown-toggle:focus {
      border: none;
      box-shadow: none;
      background-color: transparent; }
  .navbar--primary .navbar-collapse .btn-closed {
    width: 100%;
    background-color: transparent;
    padding: 1rem 1.5rem ;
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
    font-size: 1.125rem;
    text-align: left;
    text-transform: uppercase;
    font-weight: bold; }

.navbar-hr {
  position: relative; }
  .navbar-hr .hr-navlist {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start; }
    .navbar-hr .hr-navlist .nav-item {
      position: relative;
      margin: 0px 4px; }
      .navbar-hr .hr-navlist .nav-item .nav-link {
        padding: 0.75rem 1rem ;
        border-radius: 12px;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        -ms-border-radius: 12px;
        -o-border-radius: 12px;
        font-size: 1rem;
        font-weight: 700;
        color: #323232;
        background-color: transparent; }
        .navbar-hr .hr-navlist .nav-item .nav-link:hover, .navbar-hr .hr-navlist .nav-item .nav-link:focus {
          background-color: #f5fdff;
          color: #00B4ED; }
        .navbar-hr .hr-navlist .nav-item .nav-link.active {
          background-color: #f5fdff;
          color: #00B4ED; }

.dropdown-hover-all .dropdown-menu,
.dropdown-hover > .dropdown-menu.dropend {
  margin-left: -1px !important; }

.btn {
  padding: 0.75rem 1rem ;
  cursor: pointer;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  position: relative;
  line-height: 1em;
  font-size: 0.875rem;
  border: none;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px; }
  .btn:hover, .btn:focus {
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in; }
  .btn-lg {
    padding: 1rem 2rem ; }
  .btn-group-search {
    padding: 0.625rem 0.75rem ;
    background-color: transparent;
    color: #A0ABB7; }
  .btn-silver-circle {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    background-color: #D9DDE2;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; }
    .btn-silver-circle:before {
      content: '';
      height: 3.25rem;
      width: 3.25rem;
      border: 2px solid #D9DDE2;
      border-radius: 100%;
      -webkit-border-radius: 100%;
      -moz-border-radius: 100%;
      -ms-border-radius: 100%;
      -o-border-radius: 100%;
      position: absolute;
      left: -0.375rem;
      top: -0.375rem; }
    .btn-silver-circle:hover, .btn-silver-circle:focus {
      background-color: #76B900;
      color: #FFFFFF; }
      .btn-silver-circle:hover:before, .btn-silver-circle:focus:before {
        border-color: #76B900; }
  .btn-primary {
    background-color: #5a9eed;
    color: #FFFFFF;
    font-weight: 700;
    text-transform: uppercase; }
    .btn-primary:hover, .btn-primary:focus {
      background-color: #00B4ED;
      color: #FFFFFF; }
    .btn-primary--circle {
      background-color: #5a9eed;
      border-radius: 100% !important;
      -webkit-border-radius: 100% !important;
      -moz-border-radius: 100% !important;
      -ms-border-radius: 100% !important;
      -o-border-radius: 100% !important;
      height: 2rem;
      width: 2rem;
      padding: 0.25rem;
      color: #FFFFFF;
      font-size: 1.125rem;
      display: flex;
      align-items: center;
      justify-content: center; }
      .btn-primary--circle:hover, .btn-primary--circle:focus {
        background-color: #00C4FF; }
    .btn-primary--outline {
      display: flex;
      padding: 1rem 1.5rem ;
      border-radius: 60px;
      -webkit-border-radius: 60px;
      -moz-border-radius: 60px;
      -ms-border-radius: 60px;
      -o-border-radius: 60px;
      color: #00B4ED;
      text-transform: uppercase;
      font-size: 1rem;
      font-weight: bold;
      -webkit-transition-duration: 0.3s;
      transition-duration: 0.3s;
      -webkit-transition-timing-function: ease-in;
      transition-timing-function: ease-in;
      letter-spacing: .15rem;
      position: relative;
      overflow: hidden;
      z-index: 1; }
      .btn-primary--outline i {
        margin-left: 0.75rem;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out; }
      .btn-primary--outline:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: transparent;
        border-radius: 60px;
        -webkit-border-radius: 60px;
        -moz-border-radius: 60px;
        -ms-border-radius: 60px;
        -o-border-radius: 60px;
        border: 2px solid #00B4ED;
        z-index: -2; }
      .btn-primary--outline:before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background-color: #00B4ED;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: all;
        transition-timing-function: all;
        border-radius: 60px;
        -webkit-border-radius: 60px;
        -moz-border-radius: 60px;
        -ms-border-radius: 60px;
        -o-border-radius: 60px;
        z-index: -1; }
      .btn-primary--outline:hover {
        color: #FFFFFF;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out; }
        .btn-primary--outline:hover i {
          margin-left: 2rem;
          -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
          -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out; }
        .btn-primary--outline:hover:before {
          width: 100%; }
  .btn-secondary {
    background-color: #76B900;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 700; }
    .btn-secondary:hover, .btn-secondary:focus {
      background-color: #90dd08;
      box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.7), 0 0 12px rgba(255, 255, 255, 0.7);
      color: #FFFFFF; }
    .btn-secondary-light {
      background-color: #C4FD60;
      color: #121D32;
      font-weight: 700;
      text-transform: uppercase;
      transform: translateY(0em);
      transition: transform 330ms ease-in-out; }
      .btn-secondary-light:hover, .btn-secondary-light:focus {
        background-color: #b1fc2e;
        color: #121D32;
        -moz-box-shadow: 0px 6px 0px 0px #355300;
        -webkit-box-shadow: 0px 6px 0px 0px #355300;
        box-shadow: 0px 6px 0px 0px #355300;
        transform: translateY(-0.5em);
        transition: transform 330ms ease-in-out; }
  .btn-tealishBlue-circle {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    background-color: #121D32;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s ease-in-out; }
    .btn-tealishBlue-circle:before {
      content: '';
      height: 3.25rem;
      width: 3.25rem;
      border: 2px solid #121D32;
      border-radius: 100%;
      -webkit-border-radius: 100%;
      -moz-border-radius: 100%;
      -ms-border-radius: 100%;
      -o-border-radius: 100%;
      position: absolute;
      left: -0.375rem;
      top: -0.375rem;
      transition: all 0.5s ease-in-out; }
    .btn-tealishBlue-circle:after {
      content: '';
      height: 3.25rem;
      width: 3.25rem;
      border: 2px solid rgba(118, 185, 0, 0);
      border-radius: 100%;
      -webkit-border-radius: 100%;
      -moz-border-radius: 100%;
      -ms-border-radius: 100%;
      -o-border-radius: 100%;
      position: absolute;
      left: -0.375rem;
      top: -0.375rem;
      transition: all 0.5s ease-in-out; }
    .btn-tealishBlue-circle:hover, .btn-tealishBlue-circle:focus {
      background-color: #76B900;
      color: #FFFFFF;
      box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.5);
      transition: all 0.5s ease-in-out; }
      .btn-tealishBlue-circle:hover:before, .btn-tealishBlue-circle:focus:before {
        border-color: rgba(18, 29, 50, 0);
        -webkit-transform: scale(1.6);
        -moz-transform: scale(1.6);
        -ms-transform: scale(1.6);
        -o-transform: scale(1.6);
        transform: scale(1.6);
        transition: all 0.5s ease-in-out; }
      .btn-tealishBlue-circle:hover:after, .btn-tealishBlue-circle:focus:after {
        border-color: #76B900;
        transition: all 0.5s ease-in-out; }
  .btn-moreLess {
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    position: absolute;
    background-image: -webkit-gradient(linear, left 0%, left 40%, from(rgba(255, 255, 255, 0.5)), to(#FFFFFF));
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, #FFFFFF 40%);
    background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, #FFFFFF 40%);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, #FFFFFF 40%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80FFFFFF', endColorstr='#FFFFFFFF', GradientType=0);
    bottom: 0px;
    left: 0px;
    padding: 0rem; }
    .btn-moreLess .moreLess-icon {
      border: 2px solid #baeeff;
      background: #FFFFFF;
      border-radius: 60px;
      -webkit-border-radius: 60px;
      -moz-border-radius: 60px;
      -ms-border-radius: 60px;
      -o-border-radius: 60px;
      height: 3.4375rem;
      width: 2.25rem;
      -moz-box-shadow: 0px 0px 12px 2px rgba(90, 158, 237, 0.2), 0px 0px 12px -2px rgba(90, 158, 237, 0.2);
      -webkit-box-shadow: 0px 0px 12px 2px rgba(90, 158, 237, 0.2), 0px 0px 12px -2px rgba(90, 158, 237, 0.2);
      box-shadow: 0px 0px 12px 2px rgba(90, 158, 237, 0.2), 0px 0px 12px -2px rgba(90, 158, 237, 0.2);
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0.875rem 0.375rem ; }
      .btn-moreLess .moreLess-icon .icons {
        height: 1.6875rem;
        width: 1.25rem;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-flow: column; }
        .btn-moreLess .moreLess-icon .icons span {
          animation: shiftArrows 2s infinite; }
        .btn-moreLess .moreLess-icon .icons .stage-1 {
          background-color: #baeeff;
          border-radius: 20px;
          -webkit-border-radius: 20px;
          -moz-border-radius: 20px;
          -ms-border-radius: 20px;
          -o-border-radius: 20px;
          height: 0.3125rem;
          width: 1.25rem;
          position: relative;
          animation-delay: -0.4s; }
        .btn-moreLess .moreLess-icon .icons .stage-2 {
          background-color: #54d6ff;
          border-radius: 20px;
          -webkit-border-radius: 20px;
          -moz-border-radius: 20px;
          -ms-border-radius: 20px;
          -o-border-radius: 20px;
          height: 0.3125rem;
          width: 1.25rem;
          margin-top: 0.25rem;
          position: relative;
          animation-delay: -0.2s; }
        .btn-moreLess .moreLess-icon .icons .stage-3 {
          margin-top: 0.25rem;
          background-color: transparent;
          height: 0rem;
          width: 0rem;
          bottom: -1.375rem;
          border-style: solid;
          border-width: 9px 10px 0 10px;
          border-color: #00B4ED transparent transparent transparent;
          animation: shiftArrows 2s infinite; }
    .btn-moreLess--less .moreLess-icon {
      border: 2px solid #76B900;
      -moz-box-shadow: 0px 0px 12px 2px rgba(118, 185, 0, 0.2), 0px 0px 12px -2px rgba(118, 185, 0, 0.2);
      -webkit-box-shadow: 0px 0px 12px 2px rgba(118, 185, 0, 0.2), 0px 0px 12px -2px rgba(118, 185, 0, 0.2);
      box-shadow: 0px 0px 12px 2px rgba(118, 185, 0, 0.2), 0px 0px 12px -2px rgba(118, 185, 0, 0.2);
      -webkit-transform: rotate(180deg);
      -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
      transform: rotate(180deg); }
      .btn-moreLess--less .moreLess-icon .icons .stage-1 {
        background-color: #d3ff86; }
      .btn-moreLess--less .moreLess-icon .icons .stage-2 {
        background-color: #aeff20; }
      .btn-moreLess--less .moreLess-icon .icons .stage-3 {
        border-color: #76B900 transparent transparent transparent; }
  .btn-radius {
    border-radius: 40px; }
  .btn-call {
    background-color: #5a9eed;
    color: #FFFFFF;
    width: 150px;
    padding: 0.625rem 0.875rem ;
    line-height: 1em;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase; }
    .btn-call i {
      margin-right: 0.75rem;
      font-size: 1rem; }
  .btn-whatsapp {
    background-color: #76B900;
    color: #FFFFFF;
    width: 150px;
    padding: 0.625rem 0.875rem ;
    line-height: 1em;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase; }
    .btn-whatsapp i {
      margin-right: 0.75rem;
      font-size: 1rem; }

.append {
  margin-left: 0.75rem; }

.preppend {
  margin-right: 0.75rem; }

.base-form {
  position: relative; }
  .base-form .form-label {
    color: #525e6c;
    font-weight: bold;
    font-size: 0.875rem; }
    .base-form .form-label.small {
      font-weight: normal; }
  .base-form .has-validation .form-label::after {
    content: '*';
    margin-left: 0.5rem; }
  .base-form .has-validation .form-label.is-invalid {
    color: #F90000; }

.input-group--search {
  width: 100%;
  position: relative;
  position: relative; }
  .input-group--search .form-control {
    border: 2px solid #baeeff;
    background-color: #FFFFFF;
    color: #323232;
    border-radius: 60px !important;
    -webkit-border-radius: 60px !important;
    -moz-border-radius: 60px !important;
    -ms-border-radius: 60px !important;
    -o-border-radius: 60px !important;
    height: 2.75rem;
    padding-right: 3rem;
    width: 100%; }
    .input-group--search .form-control:focus {
      box-shadow: none; }
  .input-group--search .btn-search {
    height: 2.25rem;
    width: 2.25rem;
    padding: 0.5rem;
    line-height: 1em;
    border-radius: 100% !important;
    -webkit-border-radius: 100% !important;
    -moz-border-radius: 100% !important;
    -ms-border-radius: 100% !important;
    -o-border-radius: 100% !important;
    font-size: 1.125rem;
    color: #baeeff;
    position: absolute;
    z-index: 550;
    background-color: transparent;
    top: 0.25rem;
    right: 0.25rem; }
    .input-group--search .btn-search:hover, .input-group--search .btn-search:focus {
      background-color: #8BC1FF;
      color: #FFFFFF; }

.form-floating > label {
  background-color: transparent;
  left: 1rem;
  height: calc(100% - 2px);
  line-height: 1em;
  padding: 0.375rem 0.75rem ;
  display: flex;
  align-items: center;
  top: 1px;
  width: auto; }
.form-floating > textarea.form-control {
  padding: 1rem 1.375rem ;
  height: calc(5rem + 2px); }
  .form-floating > textarea.form-control ~ label {
    max-height: 60px; }
.form-floating > .form-control {
  padding: 0.5rem 1.375rem ;
  height: calc(3rem + 2px); }
  .form-floating > .form-control:focus {
    box-shadow: none; }
  .form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-control-plaintext ~ label {
    height: auto;
    top: 0px;
    transform: scale(0.85) translateY(-50%);
    background-color: #FFFFFF;
    color: rgba(50, 50, 50, 0.6);
    opacity: 1; }
  .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown), .form-floating > .form-control-plaintext:focus, .form-floating > .form-control-plaintext:not(:placeholder-shown) {
    padding: 1rem 1.375rem ; }
.form-floating > .form-select {
  padding: 0.75rem 2.25rem 0.75rem 1.375rem; }
  .form-floating > .form-select:focus {
    box-shadow: none; }
  .form-floating > .form-select ~ label {
    height: auto;
    top: 0px;
    transform: scale(0.85) translateY(-50%);
    background-color: #FFFFFF;
    color: rgba(50, 50, 50, 0.6);
    opacity: 1; }

/*-----------------------*/
.switch-button {
  background: #FFFFFF;
  border: 1px solid #D9DDE2;
  box-shadow: 4px 10px 22px -16px rgba(0, 0, 0, 0.7) inset;
  -webkit-box-shadow: 4px 10px 22px -16px rgba(0, 0, 0, 0.7) inset;
  -moz-box-shadow: 4px 10px 22px -16px rgba(0, 0, 0, 0.7) inset;
  border-radius: 30px;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  padding: 0rem;
  height: 60px;
  width: 100%; }
  .switch-button-checkbox {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2; }
    .switch-button-checkbox:checked + .switch-button-label:before {
      transform: translateX(100%);
      transition: transform 300ms linear; }
    .switch-button-checkbox:checked + .switch-button-label .switch-button-label-span:last-child {
      color: #323232; }
    .switch-button-checkbox:checked + .switch-button-label .switch-button-label-span:first-child {
      color: #A0ABB7; }
    .switch-button-checkbox + .switch-button-label {
      background-color: transparent;
      position: relative;
      padding: 0.625rem;
      border-radius: 30px;
      -webkit-border-radius: 30px;
      -moz-border-radius: 30px;
      -ms-border-radius: 30px;
      -o-border-radius: 30px;
      display: flex;
      align-items: center;
      user-select: none;
      pointer-events: none;
      height: 100%; }
      .switch-button-checkbox + .switch-button-label:before {
        content: "";
        background-image: -webkit-gradient(linear, left 0px, left 100%, from(#FFFFFF), to(#e9fec5));
        background-image: -webkit-linear-gradient(top, #FFFFFF 0px, #e9fec5 100%);
        background-image: -moz-linear-gradient(top, #FFFFFF 0px, #e9fec5 100%);
        background-image: linear-gradient(to bottom, #FFFFFF 0px, #e9fec5 100%);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE9FEC5', GradientType=0);
        color: #FFFFFF;
        height: calc(100% - 20px);
        width: calc((100% - 20px)/2);
        position: absolute;
        left: 10px;
        top: 10px;
        border-radius: 30px;
        transform: translateX(0);
        transition: transform 300ms;
        -moz-box-shadow: 0px 4px 4px 1px rgba(0, 12, 34, 0.4);
        -webkit-box-shadow: 0px 4px 4px 1px rgba(0, 12, 34, 0.4);
        box-shadow: 0px 4px 4px 1px rgba(0, 12, 34, 0.4); }
      .switch-button-checkbox + .switch-button-label .switch-button-label-span {
        position: relative;
        flex: 1;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #323232; }
        .switch-button-checkbox + .switch-button-label .switch-button-label-span:last-child {
          color: #A0ABB7; }

.custom-switch.on-off {
  padding-left: 4.375rem;
  min-height: 1.75rem;
  display: flex;
  flex-wrap: wrap !important;
  align-content: center;
  position: relative; }
  .custom-switch.on-off .custom-control-label {
    color: #525e6c;
    font-weight: bold;
    font-size: 0.875rem; }
    .custom-switch.on-off .custom-control-label::before {
      position: absolute;
      border-radius: 60px;
      -webkit-border-radius: 60px;
      -moz-border-radius: 60px;
      -ms-border-radius: 60px;
      -o-border-radius: 60px;
      left: 0rem;
      top: 0.1875rem;
      display: block;
      width: 3.75rem;
      height: 1.75rem;
      pointer-events: all;
      background-color: #FFFFFF;
      border: 1px solid #D9D9D9;
      color: #D9D9D9;
      content: 'Off';
      font-weight: bold;
      padding: 0.4rem 0.4375rem ;
      line-height: 1em;
      text-align: right; }
    .custom-switch.on-off .custom-control-label::after {
      border-radius: 100%;
      -webkit-border-radius: 100%;
      -moz-border-radius: 100%;
      -ms-border-radius: 100%;
      -o-border-radius: 100%;
      left: 0.1875rem;
      top: 0.375rem;
      height: calc(1.75rem - 6px);
      width: calc(1.75rem - 6px);
      background-color: #D9D9D9;
      position: absolute;
      display: block;
      content: '';
      -webkit-transition-duration: 0.3s;
      transition-duration: 0.3s;
      -webkit-transition-timing-function: ease-out;
      transition-timing-function: ease-out; }
  .custom-switch.on-off .custom-control-input {
    height: 1.75rem;
    left: 0px;
    position: absolute;
    z-index: -1;
    width: 1rem;
    height: 1.25rem;
    opacity: 0; }
    .custom-switch.on-off .custom-control-input:checked ~ .custom-control-label::before {
      border-color: #609305;
      background-color: #70AC06;
      color: #FFFFFF;
      text-align: left;
      content: 'ON'; }
    .custom-switch.on-off .custom-control-input:checked ~ .custom-control-label::after {
      background-color: #FFFFFF;
      transform: translateX(calc(2.15rem - 3px));
      -webkit-transition-duration: 0.3s;
      transition-duration: 0.3s;
      -webkit-transition-timing-function: ease-in;
      transition-timing-function: ease-in; }

.page-header {
  background-color: #FFFFFF;
  -moz-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.1);
  height: 5.3125rem;
  display: flex;
  flex-flow: row nowrap;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 1150; }
  .page-header .brand-logo {
    background-color: #FFFFFF;
    height: 5.3125rem;
    width: 17.5rem;
    margin-left: 0.75rem;
    -webkit-transform: skew(35deg);
    -moz-transform: skew(35deg);
    -ms-transform: skew(35deg);
    -o-transform: skew(35deg);
    transform: skew(35deg);
    position: relative;
    z-index: 850; }
    .page-header .brand-logo::before {
      content: '';
      position: absolute;
      left: 0px;
      top: 0px;
      background-color: #FFFFFF;
      height: 3.125rem;
      width: 1.125rem;
      -webkit-transform: skew(-35deg);
      -moz-transform: skew(-35deg);
      -ms-transform: skew(-35deg);
      -o-transform: skew(-35deg);
      transform: skew(-35deg);
      z-index: -5; }
    .page-header .brand-logo::after {
      content: '';
      position: absolute;
      left: 0px;
      top: 3.125rem;
      background-color: #5a9eed;
      height: 2.1875rem;
      width: 2.75rem;
      left: -2.75rem;
      z-index: -5; }
    .page-header .brand-logo--link {
      height: 5.3125rem;
      width: 13.125rem;
      margin-left: 2rem;
      -webkit-transform: skew(-35deg);
      -moz-transform: skew(-35deg);
      -ms-transform: skew(-35deg);
      -o-transform: skew(-35deg);
      transform: skew(-35deg);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8px 12px; }
      .page-header .brand-logo--link img {
        max-height: 4.3125rem; }

.header-content {
  display: flex;
  flex-grow: 1;
  flex-flow: column nowrap;
  height: 85px;
  margin-left: -2.5rem; }
  .header-content--top {
    background-color: #5a9eed;
    height: 2.1875rem;
    padding-left: 3.375rem;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .header-content--top .list-group {
      background-color: transparent;
      display: flex;
      flex-flow: row nowrap; }
      .header-content--top .list-group .list-group-item {
        background-color: transparent;
        border: none;
        color: #FFFFFF;
        font-size: 0.75rem;
        font-weight: 700;
        padding: 0.375rem 0.75rem ;
        line-height: 1em;
        display: flex;
        align-items: center; }
        .header-content--top .list-group .list-group-item i, .header-content--top .list-group .list-group-item img {
          margin-right: 0.5rem;
          max-height: 1.25rem; }
        .header-content--top .list-group .list-group-item i {
          font-size: 1rem; }
    .header-content--top .social-link {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      flex-flow: row nowrap;
      position: relative;
      padding: 0.375rem 1rem ;
      width: auto; }
      .header-content--top .social-link .list-item {
        font-size: 0.75rem;
        font-weight: bold;
        text-transform: uppercase;
        color: #FFFFFF; }
        .header-content--top .social-link .list-item:not(:first-child) {
          margin-left: 0.75rem; }
        .header-content--top .social-link .list-item a {
          font-size: 1.25rem;
          color: #FFFFFF;
          display: block;
          position: relative; }
          .header-content--top .social-link .list-item a:hover, .header-content--top .social-link .list-item a:focus {
            color: #FFEB00; }
  .header-content--navbar {
    background-color: #FFFFFF;
    height: 3.125rem;
    padding-left: 2.5rem;
    display: flex;
    align-items: center; }
    .header-content--navbar .navbar {
      position: relative;
      width: 100%; }
    .header-content--navbar .navbar-toggler {
      font-size: 0.875rem;
      font-weight: 700;
      padding: 0.5rem 0.75rem ;
      background-color: #5a9eed;
      color: #FFFFFF;
      border: none;
      margin-right: 0.75rem; }

.smart-search {
  position: relative; }
  .smart-search .input-group {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 550; }
    .smart-search .input-group .input-group-text {
      position: absolute;
      left: 0.5rem;
      padding: 0.625rem 0.5rem ;
      background-color: transparent;
      color: #A0ABB7;
      border: none;
      z-index: 550; }
    .smart-search .input-group .btn {
      position: absolute;
      right: 0px;
      z-index: 550; }
    .smart-search .input-group .form-control {
      background-color: #FFFFFF;
      border-radius: 60px !important;
      width: 17rem;
      padding: 0.25rem 2.5rem ;
      border: none; }
      .smart-search .input-group .form-control:focus, .smart-search .input-group .form-control:active {
        box-shadow: none; }

.page-footer {
  width: 100%;
  position: relative;
  background-color: #00153c;
  color: #FFFFFF; }
  .page-footer--top {
    width: 100%;
    position: relative;
    padding: 3.125rem 0rem ;
    color: #FFFFFF; }
  .page-footer--copyright {
    width: 100%;
    position: relative;
    padding: 1.5rem 0rem ;
    background-color: #00102c;
    color: #FFFFFF;
    line-height: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row nowrap;
    font-size: 0.875rem; }
    .page-footer--copyright a {
      display: inline-block;
      padding: 0rem 0.5rem ; }

.footer-widget {
  width: 100%;
  position: relative;
  color: #FFFFFF; }
  .footer-widget .widget-header {
    width: 100%;
    position: relative;
    height: 3rem;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start; }
    .footer-widget .widget-header .brand-logo {
      width: 100%;
      position: relative;
      -webkit-transform: skew(0deg);
      -moz-transform: skew(0deg);
      -ms-transform: skew(0deg);
      -o-transform: skew(0deg);
      transform: skew(0deg);
      margin: 0px;
      padding: 0px;
      background-color: transparent;
      position: relative;
      height: 3rem; }
      .footer-widget .widget-header .brand-logo img {
        height: 3rem;
        width: auto; }
    .footer-widget .widget-header h1 {
      color: #FFFFFF;
      padding-bottom: 0rem;
      text-transform: uppercase;
      font-size: 1.125rem; }
    .footer-widget .widget-header h2 {
      color: #FFFFFF;
      padding-bottom: 0rem;
      text-transform: uppercase;
      font-size: 1.125rem; }
    .footer-widget .widget-header h3 {
      color: #FFFFFF;
      padding-bottom: 0rem;
      text-transform: uppercase;
      font-size: 1.125rem; }
    .footer-widget .widget-header h4 {
      color: #FFFFFF;
      padding-bottom: 0rem;
      text-transform: uppercase;
      font-size: 1.125rem; }
    .footer-widget .widget-header h5 {
      color: #FFFFFF;
      padding-bottom: 0rem;
      text-transform: uppercase;
      font-size: 1.125rem; }
    .footer-widget .widget-header h6 {
      color: #FFFFFF;
      padding-bottom: 0rem;
      text-transform: uppercase;
      font-size: 1.125rem; }
  .footer-widget .widget-body {
    width: 100%;
    position: relative;
    padding-top: 1.5rem;
    color: #FFFFFF; }
    .footer-widget .widget-body h1 {
      color: #FFFFFF;
      padding-bottom: 0rem;
      text-transform: uppercase;
      font-size: 1.125rem; }
    .footer-widget .widget-body h2 {
      color: #FFFFFF;
      padding-bottom: 0rem;
      text-transform: uppercase;
      font-size: 1.125rem; }
    .footer-widget .widget-body h3 {
      color: #FFFFFF;
      padding-bottom: 0rem;
      text-transform: uppercase;
      font-size: 1.125rem; }
    .footer-widget .widget-body h4 {
      color: #FFFFFF;
      padding-bottom: 0rem;
      text-transform: uppercase;
      font-size: 1.125rem; }
    .footer-widget .widget-body h5 {
      color: #FFFFFF;
      padding-bottom: 0rem;
      text-transform: uppercase;
      font-size: 1.125rem; }
    .footer-widget .widget-body h6 {
      color: #FFFFFF;
      padding-bottom: 0rem;
      text-transform: uppercase;
      font-size: 1.125rem; }
    .footer-widget .widget-body p {
      color: #FFFFFF;
      text-align: justify; }
    .footer-widget .widget-body .base-form .input-group {
      position: relative; }
      .footer-widget .widget-body .base-form .input-group .form-control {
        border: 2px solid #FFFFFF;
        background-color: #000C22;
        color: #FFFFFF;
        border-radius: 60px !important;
        -webkit-border-radius: 60px !important;
        -moz-border-radius: 60px !important;
        -ms-border-radius: 60px !important;
        -o-border-radius: 60px !important;
        height: 2.75rem;
        padding-right: 3rem;
        width: 100%; }
      .footer-widget .widget-body .base-form .input-group .btn {
        position: absolute;
        z-index: 550;
        top: 0.3125rem;
        right: 0.375rem; }

.social-link--cirlce {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
  margin-top: 1.5rem; }
  .social-link--cirlce .list-item {
    position: relative;
    margin: 0rem 0.5rem ; }
    .social-link--cirlce .list-item .list-link {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-flow: row nowrap;
      height: 2.75rem;
      width: 2.75rem;
      border-radius: 100%;
      -webkit-border-radius: 100%;
      -moz-border-radius: 100%;
      -ms-border-radius: 100%;
      -o-border-radius: 100%;
      position: relative;
      color: #FFFFFF;
      padding: 0.375rem;
      font-size: 1.25rem;
      -webkit-transition-duration: 0.3s;
      transition-duration: 0.3s;
      -webkit-transition-timing-function: ease-out;
      transition-timing-function: ease-out; }
      .social-link--cirlce .list-item .list-link::after {
        content: '';
        position: absolute;
        border: 2px solid #FFFFFF;
        border-radius: 100%;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        -ms-border-radius: 100%;
        -o-border-radius: 100%;
        top: 0px;
        left: 0px;
        height: 100%;
        width: 100%;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out; }
      .social-link--cirlce .list-item .list-link:hover, .social-link--cirlce .list-item .list-link:focus {
        background-color: #00C4FF;
        color: #FFFFFF;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in; }
        .social-link--cirlce .list-item .list-link:hover::after, .social-link--cirlce .list-item .list-link:focus::after {
          -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
          -webkit-transition-timing-function: ease-in;
          transition-timing-function: ease-in;
          -webkit-transform: scale(1.5);
          -moz-transform: scale(1.5);
          -ms-transform: scale(1.5);
          -o-transform: scale(1.5);
          transform: scale(1.5);
          opacity: 0; }

.online-pay-option {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-flow: row nowrap;
  margin-top: 0.5rem; }
  .online-pay-option .list-item {
    position: relative;
    margin: 0.25rem; }
    .online-pay-option .list-item a {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      background-color: #FFFFFF;
      border-radius: 4px;
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      -ms-border-radius: 4px;
      -o-border-radius: 4px; }
      .online-pay-option .list-item a img {
        border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        -ms-border-radius: 4px;
        -o-border-radius: 4px;
        height: 38px;
        width: auto; }

.angle-banner {
  width: 100%;
  position: relative;
  height: 25rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0px 0px; }
  .angle-banner::before {
    background-color: #121D32;
    content: '';
    height: 100%;
    top: 0px;
    left: 0px;
    position: absolute;
    opacity: 0.3;
    width: 100%; }
  .angle-banner .banner-inner {
    width: 100%;
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    height: 100%;
    z-index: 50; }
    .angle-banner .banner-inner .banner-left {
      position: relative;
      height: 100%;
      background-color: transparent;
      flex-grow: 1; }
      .angle-banner .banner-inner .banner-left .banner-content {
        width: 100%;
        position: relative;
        height: 100%;
        display: flex;
        justify-content: center;
        flex-flow: column nowrap;
        padding: 1rem; }
        .angle-banner .banner-inner .banner-left .banner-content .banner-headline {
          font-size: 2.5rem;
          font-weight: bold;
          color: #FFFFFF;
          text-transform: uppercase;
          margin-bottom: 0.75rem; }
        .angle-banner .banner-inner .banner-left .banner-content p {
          font-size: 1.125rem;
          color: #FFFFFF;
          line-height: 1.5em;
          text-align: justify; }
        .angle-banner .banner-inner .banner-left .banner-content .btn {
          min-width: 11.25rem;
          height: 2.75rem;
          border-radius: 44px;
          -webkit-border-radius: 44px;
          -moz-border-radius: 44px;
          -ms-border-radius: 44px;
          -o-border-radius: 44px;
          border: 1px solid #C4FD60; }
      .angle-banner .banner-inner .banner-left .banner-content-thumbs {
        width: 100%;
        position: relative;
        padding-left: 1rem;
        display: flex;
        flex-flow: row nowrap; }
        .angle-banner .banner-inner .banner-left .banner-content-thumbs .icon-thumbs {
          width: 6rem;
          flex-shrink: 0;
          color: #FFFFFF; }
          .angle-banner .banner-inner .banner-left .banner-content-thumbs .icon-thumbs i {
            font-size: 6.375rem; }
        .angle-banner .banner-inner .banner-left .banner-content-thumbs-content {
          padding-left: 2rem;
          position: relative;
          flex-grow: 1; }
          .angle-banner .banner-inner .banner-left .banner-content-thumbs-content .header-title {
            font-size: 2rem;
            color: #FFFFFF;
            text-transform: uppercase;
            font-weight: bold;
            margin-bottom: 1rem; }
          .angle-banner .banner-inner .banner-left .banner-content-thumbs-content .iconic-list {
            display: flex;
            flex-flow: row wrap;
            align-items: center;
            justify-content: flex-start;
            margin-left: -0.5rem;
            margin-right: -0.5rem;
            margin-bottom: 1rem;
            width: unset; }
            .angle-banner .banner-inner .banner-left .banner-content-thumbs-content .iconic-list .list-item {
              padding-left: 1.5rem;
              margin: 0.25rem 0.5rem ;
              color: #FFFFFF; }
              .angle-banner .banner-inner .banner-left .banner-content-thumbs-content .iconic-list .list-item i {
                position: absolute;
                left: 0px;
                top: 4px; }
          .angle-banner .banner-inner .banner-left .banner-content-thumbs-content .hr-list {
            align-items: center; }
            .angle-banner .banner-inner .banner-left .banner-content-thumbs-content .hr-list li .btn {
              width: 11.25rem;
              height: 2.75rem;
              border-radius: 44px;
              -webkit-border-radius: 44px;
              -moz-border-radius: 44px;
              -ms-border-radius: 44px;
              -o-border-radius: 44px;
              border: 1px solid #C4FD60; }
          .angle-banner .banner-inner .banner-left .banner-content-thumbs-content .text-link {
            color: #C4FD60;
            text-transform: uppercase;
            font-weight: bold; }
            .angle-banner .banner-inner .banner-left .banner-content-thumbs-content .text-link:hover, .angle-banner .banner-inner .banner-left .banner-content-thumbs-content .text-link:focus {
              color: #FFFFFF; }
    .angle-banner .banner-inner .banner-right-angle {
      position: relative;
      height: 100%;
      background-color: transparent;
      width: 620px; }
      .angle-banner .banner-inner .banner-right-angle .clip-frame {
        position: relative;
        height: 100%;
        background-color: #8BC1FF;
        width: 100%;
        background-size: cover;
        -webkit-clip-path: url(#angle_clipped);
        clip-path: url(#angle_clipped);
        display: flex;
        flex-flow: row wrap;
        align-items: center;
        justify-content: flex-end; }
        .angle-banner .banner-inner .banner-right-angle .clip-frame::before {
          content: '';
          background-color: #FFFFFF;
          height: 100%;
          position: absolute;
          top: 0px;
          right: 0px;
          clip-path: polygon(160px 0%, 100% 0%, 100% 100%, 37% 100%, 54px 35%);
          width: 100%; }
        .angle-banner .banner-inner .banner-right-angle .clip-frame .angle-imageholder {
          position: relative;
          background-color: transparent;
          height: 100%;
          width: 100%;
          clip-path: polygon(170px 0%, 100% 0%, 100% 100%, 38.5% 100%, 64px 35%);
          overflow: hidden;
          object-fit: cover;
          display: flex;
          align-items: center;
          justify-content: flex-end; }
      .angle-banner .banner-inner .banner-right-angle .banner-stripe {
        height: 100%;
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%; }
        .angle-banner .banner-inner .banner-right-angle .banner-stripe::before {
          content: '';
          background-color: #C4FD60;
          position: absolute;
          left: 0px;
          top: 0px;
          height: 100%;
          width: 100%;
          clip-path: polygon(167px 0%, 217px 0%, 41px 236px, 27px 188px); }
        .angle-banner .banner-inner .banner-right-angle .banner-stripe::after {
          content: '';
          position: absolute;
          left: 42px;
          top: 188px;
          width: 58px;
          height: 48px;
          background-image: -webkit-gradient(linear, left 15px, left 100%, from(#355300), to(#86d300));
          background-image: -webkit-linear-gradient(left, #355300 15px, #86d300 100%);
          background-image: -moz-linear-gradient(left, #355300 15px, #86d300 100%);
          background-image: linear-gradient(to right, #355300 15px, #86d300 100%);
          background-repeat: repeat-x;
          filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF355300', endColorstr='#FF86D300', GradientType=0);
          z-index: -1;
          clip-path: polygon(50% 0%, 100% 100%, 0% 100%); }

.angle_svg {
  position: absolute;
  width: 0;
  height: 0; }

.quick-banner {
  display: block;
  position: relative;
  --aspect-ratio:calc(4 / 21 * 100%);
  overflow: hidden; }
  .quick-banner:before {
    padding-top: var(--aspect-ratio);
    display: block;
    content: "";
    width: 100%; }
  .quick-banner > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center; }
  .quick-banner .banner-overlay {
    background: url("../images/banner_overlay.png") no-repeat 0px 0px;
    background-size: cover;
    height: 100%;
    width: 100%; }
  .quick-banner .banner-img {
    clip-path: polygon(30% 0, 99.5% 0, 47.7% 100%, 32.6% 100%, 5.4% 47.5%);
    object-fit: cover;
    height: 100%;
    left: 3%;
    width: 32%; }
    .quick-banner .banner-img img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover; }

.slanding-banner {
  width: 100%;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0px 0px; }
  .slanding-banner-ratio {
    display: block;
    position: relative;
    --aspect-ratio:calc(9 / 30 * 100%);
    overflow: hidden;
    object-fit: cover; }
    .slanding-banner-ratio:before {
      padding-top: var(--aspect-ratio);
      display: block;
      content: "";
      width: 100%; }
    .slanding-banner-ratio > * {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center; }
  .slanding-banner-image {
    object-fit: cover;
    height: 100%;
    width: 100%; }
    .slanding-banner-image img {
      max-width: 100%;
      height: auto; }

.slanding-clip-frame {
  width: 70%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  background-color: transparent;
  overflow: hidden;
  z-index: 550; }
  .slanding-clip-frame .slanding-clip {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: transparent;
    clip-path: polygon(80% 0%, 100% 100%, 100% 100%, 0% 100%, 0% 0%); }
    .slanding-clip-frame .slanding-clip::before {
      content: '';
      position: absolute;
      left: 0px;
      top: 0px;
      width: 90%;
      height: 100%;
      background-color: rgba(18, 29, 50, 0.9);
      clip-path: polygon(80% 0%, 100% 100%, 100% 100%, 0% 100%, 0% 0%); }
    .slanding-clip-frame .slanding-clip .slanding-sripe {
      height: 100%;
      background-color: transparent;
      position: absolute;
      top: 0px;
      left: 0px;
      width: 100%; }
      .slanding-clip-frame .slanding-clip .slanding-sripe::before {
        content: '';
        position: absolute;
        right: 15%;
        top: 0px;
        background-color: #1054B0;
        height: 100%;
        width: 3.125rem;
        -webkit-transform: skewX(21.8deg);
        -moz-transform: skewX(21.8deg);
        -ms-transform: skewX(21.8deg);
        -o-transform: skewX(21.8deg);
        transform: skewX(21.8deg); }
      .slanding-clip-frame .slanding-clip .slanding-sripe::after {
        content: '';
        position: absolute;
        right: calc(15% + 50px);
        top: 0px;
        background-color: #FFFFFF;
        height: 100%;
        width: 4rem;
        -webkit-transform: skewX(21.8deg);
        -moz-transform: skewX(21.8deg);
        -ms-transform: skewX(21.8deg);
        -o-transform: skewX(21.8deg);
        transform: skewX(21.8deg); }
    .slanding-clip-frame .slanding-clip .slanding-clip-content {
      position: relative;
      height: 100%;
      background-color: transparent;
      padding-top: 2.5rem;
      width: 100%; }
      .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header-shade {
        width: 100%;
        position: relative;
        height: 11.625rem;
        background-color: #1054B0;
        color: #FFFFFF; }
      .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header {
        width: 100%;
        position: relative;
        height: 11.625rem;
        background-color: #1054B0;
        color: #FFFFFF;
        box-shadow: 0px 12px 24px -4px rgba(0, 0, 0, 0.2), 0px 8px 16px -8px rgba(0, 0, 0, 0.2);
        padding: 1rem;
        padding-right: 23%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-flow: row nowrap; }
        .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header::before {
          content: '';
          height: 5rem;
          width: 5rem;
          background-image: -webkit-gradient(linear, left 20px, left 100%, from(#082753), to(#125fc7));
          background-image: -webkit-linear-gradient(left, #082753 20px, #125fc7 100%);
          background-image: -moz-linear-gradient(left, #082753 20px, #125fc7 100%);
          background-image: linear-gradient(to right, #082753 20px, #125fc7 100%);
          background-repeat: repeat-x;
          filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF082753', endColorstr='#FF125FC7', GradientType=0);
          position: absolute;
          left: calc(100% - 18%);
          bottom: -14px;
          z-index: -1;
          -webkit-transform: rotate(68deg);
          -moz-transform: rotate(68deg);
          -ms-transform: rotate(68deg);
          -o-transform: rotate(68deg);
          transform: rotate(68deg); }
        .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header .header-thumb {
          height: 5.625rem;
          width: 5.625rem;
          display: flex;
          align-items: center;
          justify-content: center;
          color: #FFFFFF;
          font-size: 5rem;
          background-color: transparent; }
          .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header .header-thumb img,
          .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header .header-thumb svg {
            max-width: 5rem;
            max-height: 5rem; }
        .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header .header-info {
          flex-grow: 1;
          color: #FFFFFF;
          padding-left: 1rem; }
          .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header .header-info .header-title {
            color: #FFFFFF;
            font-size: 2.5rem; }
          .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header .header-info .sub-note {
            font-size: 1.125rem;
            color: #FFFFFF;
            font-family: "Roboto";
            font-weight: normal; }
      .slanding-clip-frame .slanding-clip .slanding-clip-content .content-body {
        width: 100%;
        position: relative;
        padding: 1rem;
        padding-right: 10rem;
        color: #FFFFFF; }
        .slanding-clip-frame .slanding-clip .slanding-clip-content .content-body ul .list-item {
          color: #FFFFFF;
          margin: 0.5rem 0rem ; }

/*-----wave banner--*/
.wave-banner {
  width: 100%;
  position: relative;
  background-color: #F2FAFF;
  padding-top: 28.125%; }
  .wave-banner .wave-animate {
    height: 10rem;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%; }
  .wave-banner .wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    z-index: 1; }
  .wave-banner .wave + .wave {
    z-index: 2; }
  .wave-banner .banner-image-frame {
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover; }
    .wave-banner .banner-image-frame img {
      width: 100%; }
    .wave-banner .banner-image-frame::before {
      content: '';
      background-color: rgba(16, 84, 176, 0.65);
      height: 100%;
      position: absolute;
      left: 0px;
      top: 0px;
      width: 100%; }
  .wave-banner .banner-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    position: absolute;
    padding-bottom: 2%;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 550; }
    .wave-banner .banner-content .sub-title {
      color: #C4FD60;
      text-transform: uppercase;
      text-align: center; }
    .wave-banner .banner-content .banner-title {
      color: #FFFFFF;
      text-align: center;
      margin-bottom: 2rem;
      font-size: 2.5rem;
      text-transform: uppercase; }
    .wave-banner .banner-content .btn {
      padding: 1rem 1.5rem ;
      border: 1px solid #FFFFFF; }

.intro-image-clip {
  height: 36.875rem;
  background-color: transparent;
  position: relative;
  flex-shrink: 0;
  width: 40%;
  z-index: 550; }
  .intro-image-clip .clip-shade {
    width: 100%;
    position: relative;
    height: 100%;
    background-color: #233446;
    -webkit-clip-path: url(#intro-clip-path);
    clip-path: url(#intro-clip-path);
    padding-bottom: 16px; }
  .intro-image-clip .clip-image-frame {
    width: 100%;
    position: relative;
    height: 100%;
    background-color: transparent;
    -webkit-clip-path: url(#intro-clip-path);
    clip-path: url(#intro-clip-path);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden; }
    .intro-image-clip .clip-image-frame img {
      max-height: 100%; }
  .intro-image-clip .intro-clip-svg {
    position: absolute;
    width: 0;
    height: 0; }

.banner-general {
  width: 100%;
  position: relative;
  padding-top: 28.125%; }
  .banner-general.h-12rem {
    height: 12rem;
    display: flex;
    align-items: center; }
  .banner-general .banner-image-frame {
    align-items: center;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    height: 100%;
    position: absolute;
    top: 0px;
    width: 100%; }
    .banner-general .banner-image-frame::after {
      content: attr(data-before);
      position: absolute;
      left: 5rem;
      font-size: 8.5rem;
      color: rgba(255, 255, 255, 0.15);
      font-family: "Roboto-Bold";
      text-transform: uppercase; }
    .banner-general .banner-image-frame .banner-title {
      font-size: 3rem;
      color: #FFFFFF;
      font-family: "Roboto-Bold";
      margin-left: 7rem;
      text-transform: uppercase; }

.banner-common {
  width: 100%;
  position: relative;
  background-color: #1054B0;
  color: #FFFFFF;
  display: flex;
  flex-flow: row nowrap;
  display: block;
  position: relative;
  --aspect-ratio:calc(9 / 32 * 100%);
  overflow: hidden;
  object-fit: cover; }
  .banner-common:before {
    padding-top: var(--aspect-ratio);
    display: block;
    content: "";
    width: 100%; }
  .banner-common > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center; }
  .banner-common::after {
    content: '';
    background-color: #8BC1FF;
    position: absolute;
    left: 0px;
    top: 0px;
    height: 35%;
    width: 7.5%;
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%); }
  .banner-common .banner-content-frame,
  .banner-common .banner-image-frame {
    position: absolute;
    top: 0px;
    height: 100%;
    width: 50%; }
  .banner-common .banner-content-frame {
    left: 0px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 550; }
    .banner-common .banner-content-frame .btn {
      height: 2.75rem;
      border-radius: 44px;
      -webkit-border-radius: 44px;
      -moz-border-radius: 44px;
      -ms-border-radius: 44px;
      -o-border-radius: 44px;
      border: 1px solid #C4FD60; }
    .banner-common .banner-content-frame .banner-search {
      width: 100%;
      position: relative;
      display: flex;
      flex-flow: column nowrap; }
      .banner-common .banner-content-frame .banner-search .search-header {
        width: 100%;
        position: relative;
        display: flex;
        flex-flow: row nowrap;
        margin-bottom: 1.5rem; }
        .banner-common .banner-content-frame .banner-search .search-header-content {
          display: flex;
          flex-flow: column;
          align-items: flex-end;
          justify-content: center;
          position: relative;
          width: 40%;
          padding-right: 1.5rem;
          text-align: right; }
          .banner-common .banner-content-frame .banner-search .search-header-content::after {
            content: '';
            background-color: #FFFFFF;
            height: 100%;
            position: absolute;
            top: 0px;
            right: 0px;
            width: 1px; }
          .banner-common .banner-content-frame .banner-search .search-header-content .punchline {
            font-size: 1rem;
            color: #C4FD60; }
          .banner-common .banner-content-frame .banner-search .search-header-content .header-title {
            font-size: 1.625rem;
            color: #FFFFFF; }
        .banner-common .banner-content-frame .banner-search .search-header-intro {
          display: flex;
          flex-flow: column;
          align-items: flex-start;
          justify-content: flex-end;
          position: relative;
          width: 60%;
          padding-left: 1.5rem; }
          .banner-common .banner-content-frame .banner-search .search-header-intro p {
            font-size: 1rem;
            line-height: 1.5em;
            margin: 0px;
            color: #FFFFFF; }
      .banner-common .banner-content-frame .banner-search .search-body {
        width: 100%;
        position: relative; }
      .banner-common .banner-content-frame .banner-search .search-group {
        width: 100%;
        position: relative; }
        .banner-common .banner-content-frame .banner-search .search-group .form-control {
          width: 100%;
          position: relative;
          height: 3.125rem;
          border-radius: 40px !important;
          -webkit-border-radius: 40px !important;
          -moz-border-radius: 40px !important;
          -ms-border-radius: 40px !important;
          -o-border-radius: 40px !important;
          padding-right: 9.625rem;
          border: none; }
        .banner-common .banner-content-frame .banner-search .search-group .btn {
          position: absolute;
          right: 5px;
          top: 5px;
          border-radius: 40px !important;
          -webkit-border-radius: 40px !important;
          -moz-border-radius: 40px !important;
          -ms-border-radius: 40px !important;
          -o-border-radius: 40px !important;
          height: 2.5rem;
          width: 8.75rem;
          z-index: 550; }
    .banner-common .banner-content-frame .banner-gn-cnt {
      width: 100%;
      position: relative;
      display: flex;
      flex-flow: column nowrap; }
      .banner-common .banner-content-frame .banner-gn-cnt .banner-gn-cnt-header {
        width: 100%;
        position: relative;
        display: flex;
        flex-flow: row nowrap;
        margin-bottom: 1.5rem; }
        .banner-common .banner-content-frame .banner-gn-cnt .banner-gn-cnt-header-content {
          display: flex;
          flex-flow: column;
          align-items: flex-end;
          justify-content: center;
          position: relative;
          width: 45%;
          padding-right: 1.5rem;
          text-align: right; }
          .banner-common .banner-content-frame .banner-gn-cnt .banner-gn-cnt-header-content::after {
            content: '';
            background-color: #FFFFFF;
            height: 100%;
            position: absolute;
            top: 0px;
            right: 0px;
            width: 1px; }
          .banner-common .banner-content-frame .banner-gn-cnt .banner-gn-cnt-header-content .punchline {
            font-size: 1.25rem;
            color: #C4FD60; }
          .banner-common .banner-content-frame .banner-gn-cnt .banner-gn-cnt-header-content .header-title {
            font-size: 2rem;
            color: #FFFFFF; }
        .banner-common .banner-content-frame .banner-gn-cnt .banner-gn-cnt-header-intro {
          display: flex;
          flex-flow: column;
          align-items: flex-start;
          justify-content: center;
          position: relative;
          width: 55%;
          padding-left: 1.5rem; }
          .banner-common .banner-content-frame .banner-gn-cnt .banner-gn-cnt-header-intro p {
            font-size: 1rem;
            line-height: 1.5em;
            margin: 0px;
            color: #FFFFFF; }
      .banner-common .banner-content-frame .banner-gn-cnt .banner-gn-cnt-footer {
        width: 100%;
        position: relative;
        display: flex;
        flex-flow: row nowrap;
        padding-left: calc(45% + 1.5rem); }
        .banner-common .banner-content-frame .banner-gn-cnt .banner-gn-cnt-footer .btn {
          padding: 0.75rem 1.5rem ; }
    .banner-common .banner-content-frame .job-header {
      width: 100%;
      position: relative;
      padding-left: 3rem;
      display: flex;
      flex-flow: row nowrap; }
      .banner-common .banner-content-frame .job-header .job-icon-thumbs {
        width: 6rem;
        flex-shrink: 0;
        color: #FFFFFF; }
        .banner-common .banner-content-frame .job-header .job-icon-thumbs i {
          font-size: 6.375rem; }
      .banner-common .banner-content-frame .job-header-content {
        padding-left: 2rem;
        position: relative;
        flex-grow: 1; }
        .banner-common .banner-content-frame .job-header-content .job-header-title {
          font-size: 2rem;
          color: #FFFFFF;
          text-transform: uppercase;
          font-weight: bold;
          margin-bottom: 1rem; }
        .banner-common .banner-content-frame .job-header-content .iconic-list {
          display: flex;
          flex-flow: row wrap;
          align-items: center;
          justify-content: flex-start;
          margin-left: -0.5rem;
          margin-right: -0.5rem;
          margin-bottom: 1rem;
          width: unset; }
          .banner-common .banner-content-frame .job-header-content .iconic-list .list-item {
            padding-left: 1.5rem;
            margin: 0.25rem 0.5rem ;
            color: #FFFFFF; }
            .banner-common .banner-content-frame .job-header-content .iconic-list .list-item i {
              position: absolute;
              left: 0px;
              top: 4px; }
        .banner-common .banner-content-frame .job-header-content .hr-list {
          align-items: center; }
          .banner-common .banner-content-frame .job-header-content .hr-list li .btn {
            width: 11.25rem;
            height: 2.75rem;
            border-radius: 44px;
            -webkit-border-radius: 44px;
            -moz-border-radius: 44px;
            -ms-border-radius: 44px;
            -o-border-radius: 44px;
            border: 1px solid #C4FD60; }
        .banner-common .banner-content-frame .job-header-content .text-link {
          color: #C4FD60;
          text-transform: uppercase;
          font-weight: bold; }
          .banner-common .banner-content-frame .job-header-content .text-link:hover, .banner-common .banner-content-frame .job-header-content .text-link:focus {
            color: #FFFFFF; }
  .banner-common .banner-image-frame {
    right: 0px;
    left: unset; }
    .banner-common .banner-image-frame::before {
      content: '';
      height: 6.875rem;
      width: 6.875rem;
      background-color: #8BC1FF;
      position: absolute;
      left: 13%;
      top: 0px;
      clip-path: polygon(0% 0%, 100% 0%, 43% 100%);
      z-index: 550;
      opacity: 0.8; }
    .banner-common .banner-image-frame .banner-frame-clip {
      width: 100%;
      position: relative;
      height: 100%;
      background-color: #C4FD60;
      clip-path: polygon(33% 0%, 100% 0%, 100% 100%, 0% 100%);
      object-fit: cover; }
      .banner-common .banner-image-frame .banner-frame-clip .banner-image-clip {
        width: 100%;
        position: relative;
        height: 100%;
        clip-path: polygon(36.8% 0%, 100% 0%, 100% 100%, 30% 100%, 15.3% 65%);
        display: flex;
        object-fit: cover; }
        .banner-common .banner-image-frame .banner-frame-clip .banner-image-clip img {
          height: auto;
          width: 100%;
          max-width: 100%; }
        .banner-common .banner-image-frame .banner-frame-clip .banner-image-clip::before {
          content: '';
          height: 50%;
          width: 40%;
          position: absolute;
          left: 0;
          bottom: 0;
          background-color: rgba(139, 193, 255, 0.9);
          clip-path: polygon(48.5% 0%, 100% 100%, 0% 100%); }
  .banner-common .trans-bg-img {
    height: 100%;
    position: absolute;
    top: 0;
    left: 6%;
    opacity: 0.3;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    background-size: contain;
    width: 100%; }

.spotlight-carousel {
  position: relative; }
  .spotlight-carousel .owl-stage-outer {
    padding-bottom: 1.375rem; }
  .spotlight-carousel .item {
    padding-bottom: 1rem; }

.spotlight-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 24px; }

.spotlight-grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 24px; }

.card-spotlight {
  width: 100%;
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  transition: all 0.5s ease-in-out; }
  .card-spotlight .spotlight-icon {
    color: #121D32;
    border-radius: 100% 100% 0px 100%;
    -webkit-border-radius: 100% 100% 0px 100%;
    -moz-border-radius: 100% 100% 0px 100%;
    -ms-border-radius: 100% 100% 0px 100%;
    -o-border-radius: 100% 100% 0px 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    background-color: #c9f2ff;
    transition: all 0.5s ease-in-out; }
  .card-spotlight .spotlight-body {
    background-color: #FFFFFF;
    position: relative;
    background-size: cover;
    -webkit-clip-path: url(#course-clip-path);
    clip-path: url(#course-clip-path);
    margin-top: -6rem;
    border-radius: 0px 0px 20px 20px;
    -webkit-border-radius: 0px 0px 20px 20px;
    -moz-border-radius: 0px 0px 20px 20px;
    -ms-border-radius: 0px 0px 20px 20px;
    -o-border-radius: 0px 0px 20px 20px;
    -moz-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
    min-height: 19.375rem;
    width: 100%;
    background-image: -webkit-gradient(linear, left 10%, left 100%, from(#c9f2ff), to(#FFFFFF));
    background-image: -webkit-linear-gradient(top, #c9f2ff 10%, #FFFFFF 100%);
    background-image: -moz-linear-gradient(top, #c9f2ff 10%, #FFFFFF 100%);
    background-image: linear-gradient(to bottom, #c9f2ff 10%, #FFFFFF 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFC9F2FF', endColorstr='#FFFFFFFF', GradientType=0);
    transition: all 0.10s ease-in-out; }
    .card-spotlight .spotlight-body .body-content {
      background-color: transparent;
      padding: 1.5rem;
      padding-top: 8.75rem;
      border-radius: 20px;
      -webkit-border-radius: 20px;
      -moz-border-radius: 20px;
      -ms-border-radius: 20px;
      -o-border-radius: 20px;
      display: flex;
      flex-flow: column;
      justify-content: space-between;
      align-items: center; }
      .card-spotlight .spotlight-body .body-content h1 {
        color: #233446;
        padding: 0rem;
        font-size: 1.125rem;
        font-weight: bold;
        text-align: center;
        text-transform: uppercase;
        line-height: 1.5em;
        transition: all 0.5s ease-in-out; }
        .card-spotlight .spotlight-body .body-content h1 a {
          color: #233446;
          padding: 0rem;
          font-size: 1.125rem;
          font-weight: bold;
          text-align: center;
          text-transform: uppercase;
          line-height: 1.5em;
          transition: all 0.5s ease-in-out; }
          .card-spotlight .spotlight-body .body-content h1 a:hover, .card-spotlight .spotlight-body .body-content h1 a:focus {
            color: #76B900;
            text-shadow: 3px 3px 3px #FFFFFF; }
      .card-spotlight .spotlight-body .body-content h2 {
        color: #233446;
        padding: 0rem;
        font-size: 1.125rem;
        font-weight: bold;
        text-align: center;
        text-transform: uppercase;
        line-height: 1.5em;
        transition: all 0.5s ease-in-out; }
        .card-spotlight .spotlight-body .body-content h2 a {
          color: #233446;
          padding: 0rem;
          font-size: 1.125rem;
          font-weight: bold;
          text-align: center;
          text-transform: uppercase;
          line-height: 1.5em;
          transition: all 0.5s ease-in-out; }
          .card-spotlight .spotlight-body .body-content h2 a:hover, .card-spotlight .spotlight-body .body-content h2 a:focus {
            color: #76B900;
            text-shadow: 3px 3px 3px #FFFFFF; }
      .card-spotlight .spotlight-body .body-content h3 {
        color: #233446;
        padding: 0rem;
        font-size: 1.125rem;
        font-weight: bold;
        text-align: center;
        text-transform: uppercase;
        line-height: 1.5em;
        transition: all 0.5s ease-in-out; }
        .card-spotlight .spotlight-body .body-content h3 a {
          color: #233446;
          padding: 0rem;
          font-size: 1.125rem;
          font-weight: bold;
          text-align: center;
          text-transform: uppercase;
          line-height: 1.5em;
          transition: all 0.5s ease-in-out; }
          .card-spotlight .spotlight-body .body-content h3 a:hover, .card-spotlight .spotlight-body .body-content h3 a:focus {
            color: #76B900;
            text-shadow: 3px 3px 3px #FFFFFF; }
      .card-spotlight .spotlight-body .body-content h4 {
        color: #233446;
        padding: 0rem;
        font-size: 1.125rem;
        font-weight: bold;
        text-align: center;
        text-transform: uppercase;
        line-height: 1.5em;
        transition: all 0.5s ease-in-out; }
        .card-spotlight .spotlight-body .body-content h4 a {
          color: #233446;
          padding: 0rem;
          font-size: 1.125rem;
          font-weight: bold;
          text-align: center;
          text-transform: uppercase;
          line-height: 1.5em;
          transition: all 0.5s ease-in-out; }
          .card-spotlight .spotlight-body .body-content h4 a:hover, .card-spotlight .spotlight-body .body-content h4 a:focus {
            color: #76B900;
            text-shadow: 3px 3px 3px #FFFFFF; }
      .card-spotlight .spotlight-body .body-content h5 {
        color: #233446;
        padding: 0rem;
        font-size: 1.125rem;
        font-weight: bold;
        text-align: center;
        text-transform: uppercase;
        line-height: 1.5em;
        transition: all 0.5s ease-in-out; }
        .card-spotlight .spotlight-body .body-content h5 a {
          color: #233446;
          padding: 0rem;
          font-size: 1.125rem;
          font-weight: bold;
          text-align: center;
          text-transform: uppercase;
          line-height: 1.5em;
          transition: all 0.5s ease-in-out; }
          .card-spotlight .spotlight-body .body-content h5 a:hover, .card-spotlight .spotlight-body .body-content h5 a:focus {
            color: #76B900;
            text-shadow: 3px 3px 3px #FFFFFF; }
      .card-spotlight .spotlight-body .body-content h6 {
        color: #233446;
        padding: 0rem;
        font-size: 1.125rem;
        font-weight: bold;
        text-align: center;
        text-transform: uppercase;
        line-height: 1.5em;
        transition: all 0.5s ease-in-out; }
        .card-spotlight .spotlight-body .body-content h6 a {
          color: #233446;
          padding: 0rem;
          font-size: 1.125rem;
          font-weight: bold;
          text-align: center;
          text-transform: uppercase;
          line-height: 1.5em;
          transition: all 0.5s ease-in-out; }
          .card-spotlight .spotlight-body .body-content h6 a:hover, .card-spotlight .spotlight-body .body-content h6 a:focus {
            color: #76B900;
            text-shadow: 3px 3px 3px #FFFFFF; }
  .card-spotlight:hover .spotlight-icon, .card-spotlight:focus .spotlight-icon {
    background-color: #d3fb8d;
    color: #70AC06;
    box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.7), 0 0 22px rgba(255, 255, 255, 0.7);
    transition: all 0.5s ease-in-out; }
  .card-spotlight:hover .spotlight-body, .card-spotlight:focus .spotlight-body {
    background-image: -webkit-gradient(linear, left 10%, left 100%, from(#d3fb8d), to(#FFFFFF));
    background-image: -webkit-linear-gradient(top, #d3fb8d 10%, #FFFFFF 100%);
    background-image: -moz-linear-gradient(top, #d3fb8d 10%, #FFFFFF 100%);
    background-image: linear-gradient(to bottom, #d3fb8d 10%, #FFFFFF 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFD3FB8D', endColorstr='#FFFFFFFF', GradientType=0);
    transition: all 0.10s ease-in-out; }
    .card-spotlight:hover .spotlight-body .body-content h1, .card-spotlight:focus .spotlight-body .body-content h1 {
      color: #76B900;
      transition: all 0.5s ease-in-out; }
    .card-spotlight:hover .spotlight-body .body-content h2, .card-spotlight:focus .spotlight-body .body-content h2 {
      color: #76B900;
      transition: all 0.5s ease-in-out; }
    .card-spotlight:hover .spotlight-body .body-content h3, .card-spotlight:focus .spotlight-body .body-content h3 {
      color: #76B900;
      transition: all 0.5s ease-in-out; }
    .card-spotlight:hover .spotlight-body .body-content h4, .card-spotlight:focus .spotlight-body .body-content h4 {
      color: #76B900;
      transition: all 0.5s ease-in-out; }
    .card-spotlight:hover .spotlight-body .body-content h5, .card-spotlight:focus .spotlight-body .body-content h5 {
      color: #76B900;
      transition: all 0.5s ease-in-out; }
    .card-spotlight:hover .spotlight-body .body-content h6, .card-spotlight:focus .spotlight-body .body-content h6 {
      color: #76B900;
      transition: all 0.5s ease-in-out; }
    .card-spotlight:hover .spotlight-body .body-content .btn-tealishBlue-circle, .card-spotlight:focus .spotlight-body .body-content .btn-tealishBlue-circle {
      background-color: #76B900;
      color: #FFFFFF;
      box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.5);
      transition: all 0.5s ease-in-out; }
      .card-spotlight:hover .spotlight-body .body-content .btn-tealishBlue-circle:before, .card-spotlight:focus .spotlight-body .body-content .btn-tealishBlue-circle:before {
        border-color: rgba(18, 29, 50, 0);
        -webkit-transform: scale(1.6);
        -moz-transform: scale(1.6);
        -ms-transform: scale(1.6);
        -o-transform: scale(1.6);
        transform: scale(1.6);
        transition: all 0.5s ease-in-out; }
      .card-spotlight:hover .spotlight-body .body-content .btn-tealishBlue-circle:after, .card-spotlight:focus .spotlight-body .body-content .btn-tealishBlue-circle:after {
        border-color: #76B900;
        transition: all 0.5s ease-in-out; }

.card-envelope {
  width: 100%;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }
  .card-envelope--body {
    width: 100%;
    position: relative;
    padding: 0rem 0.75rem ;
    min-height: 20rem; }
    .card-envelope--body .body-content {
      min-height: 20rem;
      border-radius: 20px;
      -webkit-border-radius: 20px;
      -moz-border-radius: 20px;
      -ms-border-radius: 20px;
      -o-border-radius: 20px;
      background-color: #FFFFFF;
      -moz-box-shadow: 0px 0px 12px 0px rgba(0, 12, 34, 0.03), 0px 0px 12px 0px rgba(0, 12, 34, 0.03);
      -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 12, 34, 0.03), 0px 0px 12px 0px rgba(0, 12, 34, 0.03);
      box-shadow: 0px 0px 12px 0px rgba(0, 12, 34, 0.03), 0px 0px 12px 0px rgba(0, 12, 34, 0.03);
      padding: 1rem;
      padding-bottom: 8rem;
      height: 100%;
      position: relative;
      width: 100%; }
      .card-envelope--body .body-content .img-thumb {
        width: 100%;
        position: relative;
        height: 4rem;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 4rem;
        color: #8BC1FF; }
        .card-envelope--body .body-content .img-thumb img {
          position: relative;
          max-height: 64px;
          width: auto; }
      .card-envelope--body .body-content .content-container {
        width: 100%;
        position: relative;
        padding-top: 1rem; }
        .card-envelope--body .body-content .content-container .content-headline {
          font-size: 1.125rem;
          text-align: center;
          margin-bottom: 1rem; }
  .card-envelope--footer {
    height: 7rem;
    background-color: transparent;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%; }
    .card-envelope--footer::before {
      content: '';
      height: 1rem;
      position: absolute;
      background-color: #83B2C1;
      left: 0px;
      top: -0.3125rem;
      width: 16px;
      transform: skewY(-35deg);
      z-index: -1;
      transition: all 0.2s ease-in-out; }
    .card-envelope--footer::after {
      content: '';
      height: 1rem;
      width: 1rem;
      position: absolute;
      background-color: #83B2C1;
      right: 0.0625rem;
      top: 2.5rem;
      z-index: -1;
      transform: skewY(35deg);
      transition: all 0.2s ease-in-out; }
    .card-envelope--footer .clip-shade {
      width: 100%;
      position: relative;
      height: 100%;
      filter: drop-shadow(0px -3px 3px rgba(0, 0, 0, 0.05)) !important; }
    .card-envelope--footer .footer-clip {
      border-radius: 0px 0px 20px 20px;
      -webkit-border-radius: 0px 0px 20px 20px;
      -moz-border-radius: 0px 0px 20px 20px;
      -ms-border-radius: 0px 0px 20px 20px;
      -o-border-radius: 0px 0px 20px 20px;
      padding: 1rem 0.5rem ;
      padding-top: 3.375rem;
      background-image: -webkit-gradient(linear, left 0%, left 100%, from(white), to(#c9f2ff));
      background-image: -webkit-linear-gradient(top, white 0%, #c9f2ff 100%);
      background-image: -moz-linear-gradient(top, white 0%, #c9f2ff 100%);
      background-image: linear-gradient(to bottom, white 0%, #c9f2ff 100%);
      background-repeat: repeat-x;
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFC9F2FF', GradientType=0);
      clip-path: polygon(0 1%, 100% 42%, 100% 100%, 0% 100%);
      height: 100%;
      position: relative;
      width: 100%;
      transition: background 0.2s linear; }
      .card-envelope--footer .footer-clip-nav {
        width: 100%;
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-flow: row wrap; }
        .card-envelope--footer .footer-clip-nav .nav-item {
          display: flex;
          flex-flow: row nowrap;
          align-items: center;
          justify-content: center;
          position: relative;
          width: 50%; }
          .card-envelope--footer .footer-clip-nav .nav-item:not(:last-child)::after {
            content: '';
            height: 1.25rem;
            width: 0.0625rem;
            position: absolute;
            background-color: #83B2C1;
            right: 0px; }
          .card-envelope--footer .footer-clip-nav .nav-item:not(:first-child)::after {
            content: '';
            height: 1.25rem;
            width: 0.0625rem;
            position: absolute;
            background-color: #FFFFFF;
            left: 0px; }
          .card-envelope--footer .footer-clip-nav .nav-item .nav-link {
            font-size: 1rem;
            font-weight: 700;
            color: #233446;
            padding: 0.4375rem;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            width: 100%;
            transition: all 0.5s ease-in-out; }
            .card-envelope--footer .footer-clip-nav .nav-item .nav-link::after {
              content: "\f061";
              font-family: "Font Awesome 5 Solid";
              margin-left: 0.5rem;
              transition: all 0.5s ease-in-out;
              opacity: 0;
              position: absolute;
              right: 50%; }
            .card-envelope--footer .footer-clip-nav .nav-item .nav-link:hover, .card-envelope--footer .footer-clip-nav .nav-item .nav-link:focus {
              color: #76B900;
              transition: all 0.5s ease-in-out;
              padding-right: 1.625rem;
              text-shadow: 2px 2px #FFFFFF; }
              .card-envelope--footer .footer-clip-nav .nav-item .nav-link:hover::after, .card-envelope--footer .footer-clip-nav .nav-item .nav-link:focus::after {
                position: absolute;
                display: block;
                transition: all 0.5s ease-in-out;
                opacity: 1;
                animation: glowing 20s linear infinite;
                right: 8px; }
  .card-envelope:hover, .card-envelope:focus {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
    transform: translateY(-8px);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }
    .card-envelope:hover .card-envelope--body .body-content, .card-envelope:focus .card-envelope--body .body-content {
      -webkit-transition: all 0.2s ease-in-out;
      -moz-transition: all 0.2s ease-in-out;
      -ms-transition: all 0.2s ease-in-out;
      -o-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out;
      box-shadow: 0px 12px 24px -4px rgba(0, 0, 0, 0.15), 0px 8px 16px -8px rgba(0, 0, 0, 0.2); }
    .card-envelope:hover .card-envelope--footer::before, .card-envelope:hover .card-envelope--footer::after, .card-envelope:focus .card-envelope--footer::before, .card-envelope:focus .card-envelope--footer::after {
      background-color: #869865;
      transition: all 0.2s ease-in-out; }
    .card-envelope:hover .card-envelope--footer .footer-clip, .card-envelope:focus .card-envelope--footer .footer-clip {
      transition: all 0.2s ease-in-out;
      background-image: -webkit-gradient(linear, left 0%, left 100%, from(#FFFFFF), to(#d3fb8d));
      background-image: -webkit-linear-gradient(top, #FFFFFF 0%, #d3fb8d 100%);
      background-image: -moz-linear-gradient(top, #FFFFFF 0%, #d3fb8d 100%);
      background-image: linear-gradient(to bottom, #FFFFFF 0%, #d3fb8d 100%);
      background-repeat: repeat-x;
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFD3FB8D', GradientType=0); }

.drop-shadow {
  filter: drop-shadow(0px -3px 3px rgba(0, 0, 0, 0.1)) !important; }

.card-thumb-skew {
  width: 100%;
  position: relative;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  background-color: #FFFFFF;
  -moz-box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.15);
  display: flex; }
  .card-thumb-skew:not(:first-child) {
    margin-top: 1.5rem; }
  .card-thumb-skew .card-thumb {
    border-radius: 12px 12px 0px 12px;
    -webkit-border-radius: 12px 12px 0px 12px;
    -moz-border-radius: 12px 12px 0px 12px;
    -ms-border-radius: 12px 12px 0px 12px;
    -o-border-radius: 12px 12px 0px 12px;
    background-color: #5a9eed;
    color: #FFFFFF;
    width: 5.625rem;
    font-size: 4rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    z-index: 250;
    flex-shrink: 0; }
  .card-thumb-skew .card-thumb-skew-body {
    display: flex;
    flex-grow: 1;
    position: relative;
    border-radius: 0px 12px 12px 0px;
    -webkit-border-radius: 0px 12px 12px 0px;
    -moz-border-radius: 0px 12px 12px 0px;
    -ms-border-radius: 0px 12px 12px 0px;
    -o-border-radius: 0px 12px 12px 0px;
    padding-top: 0.5rem;
    padding-bottom: 0.625rem;
    overflow: hidden;
    z-index: 550; }
    .card-thumb-skew .card-thumb-skew-body::after {
      content: '';
      background-color: #5a9eed;
      border-radius: 0px 0px 12px 0px;
      -webkit-border-radius: 0px 0px 12px 0px;
      -moz-border-radius: 0px 0px 12px 0px;
      -ms-border-radius: 0px 0px 12px 0px;
      -o-border-radius: 0px 0px 12px 0px;
      position: absolute;
      left: 0px;
      bottom: 0px;
      height: calc(100% - 8px);
      width: 100%; }
    .card-thumb-skew .card-thumb-skew-body .skew-inner {
      background-color: #FFFFFF;
      height: 100%;
      position: relative;
      border-radius: 0px 0px 0px 0px;
      -webkit-border-radius: 0px 0px 0px 0px;
      -moz-border-radius: 0px 0px 0px 0px;
      -ms-border-radius: 0px 0px 0px 0px;
      -o-border-radius: 0px 0px 0px 0px;
      width: 100%;
      clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 7% 100%);
      z-index: 550;
      padding: 0rem 1rem 0rem 1.875rem; }
    .card-thumb-skew .card-thumb-skew-body .block-headline {
      font-size: 1.125rem;
      font-weight: bold;
      line-height: 1em;
      padding-bottom: 0.5rem; }
      .card-thumb-skew .card-thumb-skew-body .block-headline a {
        color: #233446; }
        .card-thumb-skew .card-thumb-skew-body .block-headline a:hover, .card-thumb-skew .card-thumb-skew-body .block-headline a:focus {
          color: #8BC1FF; }
    .card-thumb-skew .card-thumb-skew-body p {
      font-size: 0.875rem;
      line-height: 1.375em; }

.card-accent {
  width: 100%;
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1.875rem;
  display: flex;
  align-items: flex-start;
  justify-content: center; }
  .card-accent:after {
    content: '';
    width: 10rem;
    height: 150px;
    position: absolute;
    bottom: 0rem;
    background-color: #121D32;
    clip-path: polygon(100% 0%, 100% 75%, 50% 100%, 0% 75%, 0% 0%);
    z-index: -1; }
  .card-accent::before {
    content: '';
    height: 0rem;
    width: 0rem;
    position: absolute;
    left: 50%;
    bottom: 0px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #FFFFFF;
    -moz-box-shadow: 0px 0px 44px 32px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0px 0px 44px 32px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 44px 32px rgba(0, 0, 0, 0.15);
    z-index: -5; }
  .card-accent .card-header {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    background-color: transparent;
    position: absolute;
    top: 0;
    width: 11.5rem; }
    .card-accent .card-header .header-clip {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 8.75rem;
      width: 10rem;
      background-color: #00B4ED;
      position: relative;
      padding: 1.25rem 1.25rem 2.75rem 1.25rem;
      top: 0;
      clip-path: polygon(100% 0%, 100% 68%, 50% 100%, 0% 68%, 0% 0%);
      z-index: 550; }
      .card-accent .card-header .header-clip img,
      .card-accent .card-header .header-clip svg {
        max-height: 4rem;
        max-width: 4rem; }
      .card-accent .card-header .header-clip i {
        font-size: 4rem; }
    .card-accent .card-header:before {
      content: '';
      width: 0;
      height: 0;
      position: absolute;
      left: 0px;
      top: 0;
      border-style: solid;
      border-width: 16px 12px 12px 0px;
      border-color: transparent #007aa1 transparent transparent; }
    .card-accent .card-header:after {
      content: '';
      width: 0;
      height: 0;
      position: absolute;
      right: 0px;
      top: 0;
      border-style: solid;
      border-width: 18px 0 12px 12px;
      border-color: transparent transparent transparent #007aa1; }
  .card-accent .card-body {
    width: 100%;
    position: relative;
    min-height: 23.75rem;
    background-color: transparent;
    filter: drop-shadow(-1px 4px 4px rgba(0, 0, 0, 0.2)); }
    .card-accent .card-body--clip {
      width: 100%;
      position: relative;
      min-height: 23.75rem;
      background-color: #FFFFFF;
      clip-path: polygon(100% 0%, 100% 85%, 50% 100%, 0% 85%, 0% 0%);
      border-radius: 12px;
      -webkit-border-radius: 12px;
      -moz-border-radius: 12px;
      -ms-border-radius: 12px;
      -o-border-radius: 12px;
      padding: 9rem 1rem 4rem 1rem; }
      .card-accent .card-body--clip .card-title {
        font-size: 1.25rem;
        text-transform: uppercase;
        text-align: center;
        padding-bottom: 0.75rem; }
      .card-accent .card-body--clip p {
        text-align: center;
        line-height: 1.5em; }

.card-accent:nth-child(5n+1):after {
  background-color: #2BA933; }
.card-accent:nth-child(5n+1) .card-header .header-clip {
  background-color: #2BA933; }
.card-accent:nth-child(5n+1) .card-header:before {
  border-color: transparent #0c2f0e transparent transparent; }
.card-accent:nth-child(5n+1) .card-header:after {
  border-color: transparent transparent transparent #0c2f0e; }
.card-accent:nth-child(5n+1) .card-body--clip {
  background-color: #EFFFD3; }
  .card-accent:nth-child(5n+1) .card-body--clip .card-title {
    color: #2BA933; }

.card-accent:nth-child(5n+2):after {
  background-color: #00C4FF; }
.card-accent:nth-child(5n+2) .card-header .header-clip {
  background-color: #00C4FF; }
.card-accent:nth-child(5n+2) .card-header:before {
  border-color: transparent #004e66 transparent transparent; }
.card-accent:nth-child(5n+2) .card-header:after {
  border-color: transparent transparent transparent #004e66; }
.card-accent:nth-child(5n+2) .card-body--clip {
  background-color: #E6F9FF; }
  .card-accent:nth-child(5n+2) .card-body--clip .card-title {
    color: #00C4FF; }

.card-accent:nth-child(5n+3):after {
  background-color: #5342FF; }
.card-accent:nth-child(5n+3) .card-header .header-clip {
  background-color: #5342FF; }
.card-accent:nth-child(5n+3) .card-header:before {
  border-color: transparent #0f00a8 transparent transparent; }
.card-accent:nth-child(5n+3) .card-header:after {
  border-color: transparent transparent transparent #0f00a8; }
.card-accent:nth-child(5n+3) .card-body--clip {
  background-color: #EEECFF; }
  .card-accent:nth-child(5n+3) .card-body--clip .card-title {
    color: #5342FF; }

.card-accent:nth-child(5n+4):after {
  background-color: #9929F2; }
.card-accent:nth-child(5n+4) .card-header .header-clip {
  background-color: #9929F2; }
.card-accent:nth-child(5n+4) .card-header:before {
  border-color: transparent #48077b transparent transparent; }
.card-accent:nth-child(5n+4) .card-header:after {
  border-color: transparent transparent transparent #48077b; }
.card-accent:nth-child(5n+4) .card-body--clip {
  background-color: #F5EAFE; }
  .card-accent:nth-child(5n+4) .card-body--clip .card-title {
    color: #9929F2; }

.card-accent:nth-child(5n+5):after {
  background-color: #FF42A3; }
.card-accent:nth-child(5n+5) .card-header .header-clip {
  background-color: #FF42A3; }
.card-accent:nth-child(5n+5) .card-header:before {
  border-color: transparent #a80056 transparent transparent; }
.card-accent:nth-child(5n+5) .card-header:after {
  border-color: transparent transparent transparent #a80056; }
.card-accent:nth-child(5n+5) .card-body--clip {
  background-color: #FFECF6; }
  .card-accent:nth-child(5n+5) .card-body--clip .card-title {
    color: #FF42A3; }

.card--general {
  width: 100%;
  position: relative; }
  .card--general .card-header {
    width: 100%;
    position: relative;
    padding: 1rem; }
    .card--general .card-header--thumb {
      width: 100%;
      position: relative;
      padding: 1rem 0rem ;
      display: flex;
      align-items: center;
      justify-content: center; }
      .card--general .card-header--thumb img,
      .card--general .card-header--thumb svg {
        max-height: 6.6875rem;
        width: auto; }
  .card--general .card-title {
    font-size: 2.25rem;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 1rem;
    position: relative; }
    .card--general .card-title::after {
      content: '';
      height: 0.375rem;
      width: 4rem;
      position: absolute;
      left: 50%;
      bottom: 0px;
      -webkit-transform: translateX(-50%);
      -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      -o-transform: translateX(-50%);
      transform: translateX(-50%);
      background-color: #5a9eed; }
  .card--general .card-body {
    width: 100%;
    position: relative;
    padding: 1rem; }
  .card--general--sl .card-title::after {
    background-color: #C4FD60; }
  .card--general--hl .card-title::after {
    background-color: #FFAB00; }
  .card--general--pl .card-title::after {
    background-color: #8BC1FF; }

.clipPath-svg {
  position: absolute;
  width: 0;
  height: 0; }

.card-flat {
  width: 100%;
  position: relative;
  padding: 1rem;
  padding-right: 3.75rem;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem; }
  .card-flat::before {
    background-color: #e3f4ff;
    height: 100%;
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    width: 80%; }
  .card-flat .card-container {
    width: 100%;
    position: relative;
    height: 100%;
    background-color: #FFFFFF;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    -moz-box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    flex-flow: row nowrap; }
    .card-flat .card-container-header {
      width: 7.5rem;
      margin-left: -0.75rem;
      height: 100%;
      position: relative; }
      .card-flat .card-container-header .card-thumb-icon {
        color: #121D32;
        height: 7.5rem;
        width: 7.5rem;
        background-color: #e3f4ff;
        background-size: cover;
        -webkit-clip-path: url(#cardThumb-clip);
        clip-path: url(#cardThumb-clip);
        border-radius: 12px;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        -ms-border-radius: 12px;
        -o-border-radius: 12px;
        padding: 1rem 1.75rem 1rem 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 5rem;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out; }
        .card-flat .card-container-header .card-thumb-icon img {
          max-width: 5rem;
          max-height: 5rem; }
    .card-flat .card-container-body {
      width: 100%;
      position: relative;
      height: 100%;
      padding: 1.5rem 1rem ;
      padding-right: 8.5rem; }
      .card-flat .card-container-body .card-title {
        font-size: 2rem;
        font-weight: 700;
        color: #121D32;
        text-transform: uppercase;
        padding-bottom: 0.25rem; }
        .card-flat .card-container-body .card-title a {
          font-size: 2rem;
          font-weight: 700;
          color: #121D32;
          text-transform: uppercase; }
      .card-flat .card-container-body .iconic-list {
        display: flex;
        flex-flow: row wrap;
        align-items: center;
        justify-content: flex-start;
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        width: unset; }
        .card-flat .card-container-body .iconic-list .list-item {
          padding-left: 1.5rem;
          margin: 0.25rem 0.5rem ; }
          .card-flat .card-container-body .iconic-list .list-item i {
            position: absolute;
            left: 0px;
            top: 4px; }
      .card-flat .card-container-body .sub-title {
        font-size: 1rem;
        text-transform: uppercase;
        color: #121D32;
        margin-top: 0.75rem; }
      .card-flat .card-container-body .check-list {
        display: flex;
        flex-flow: row wrap;
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        width: unset; }
        .card-flat .card-container-body .check-list .list-item {
          margin: 0.25rem 0.5rem ;
          width: unset; }
    .card-flat .card-container-footer {
      height: 100%;
      position: absolute;
      width: 7.5rem;
      right: 0rem;
      display: flex;
      align-items: center;
      -webkit-transition-duration: 0.3s;
      transition-duration: 0.3s;
      -webkit-transition-timing-function: ease-out;
      transition-timing-function: ease-out; }
      .card-flat .card-container-footer::after {
        content: '';
        background-color: #a6ddff;
        position: absolute;
        right: 0px;
        height: 8.25rem;
        width: 12.5rem;
        -webkit-clip-path: url(#footerAfter-clip);
        clip-path: url(#footerAfter-clip);
        z-index: -1;
        opacity: 0;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out; }
      .card-flat .card-container-footer .card-footer-thumb {
        color: #121D32;
        width: 7.5rem;
        height: 5rem;
        background-color: #e3f4ff;
        background-size: cover;
        -webkit-clip-path: url(#cardFooter-clip);
        clip-path: url(#cardFooter-clip);
        border-radius: 12px;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        -ms-border-radius: 12px;
        -o-border-radius: 12px;
        padding: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        opacity: 0;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out; }
        .card-flat .card-container-footer .card-footer-thumb:hover, .card-flat .card-container-footer .card-footer-thumb:focus {
          background-color: #007699;
          box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.7), 0 0 16px rgba(255, 255, 255, 0.7);
          color: #FFFFFF; }
          .card-flat .card-container-footer .card-footer-thumb:hover a, .card-flat .card-container-footer .card-footer-thumb:focus a {
            color: #FFFFFF; }
        .card-flat .card-container-footer .card-footer-thumb a {
          color: #121D32;
          display: flex;
          align-items: center;
          justify-items: center;
          flex-flow: column nowrap;
          font-size: 1.25rem;
          text-transform: uppercase;
          font-weight: 700; }
          .card-flat .card-container-footer .card-footer-thumb a i {
            font-size: 1.25rem;
            margin-bottom: 0.375rem; }
  .card-flat:hover .card-container-header .card-thumb-icon, .card-flat:focus .card-container-header .card-thumb-icon {
    color: #00B4ED;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in; }
  .card-flat:hover .card-container-body .card-title a, .card-flat:focus .card-container-body .card-title a {
    color: #00B4ED; }
  .card-flat:hover .card-container-footer, .card-flat:focus .card-container-footer {
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    right: -3.75rem; }
    .card-flat:hover .card-container-footer::after, .card-flat:focus .card-container-footer::after {
      opacity: 1;
      -webkit-transition-duration: 0.3s;
      transition-duration: 0.3s;
      -webkit-transition-timing-function: ease-out;
      transition-timing-function: ease-out; }
    .card-flat:hover .card-container-footer .card-footer-thumb, .card-flat:focus .card-container-footer .card-footer-thumb {
      opacity: 1;
      -webkit-transition-duration: 0.3s;
      transition-duration: 0.3s;
      -webkit-transition-timing-function: ease-out;
      transition-timing-function: ease-out; }

.tabs-primary {
  width: 100%;
  position: relative; }
  .tabs-primary-header {
    width: 100%;
    position: relative; }
    .tabs-primary-header .nav-tabs {
      border: none;
      border-bottom: 2px solid #A0ABB7; }
      .tabs-primary-header .nav-tabs .nav-item {
        padding-left: 0rem;
        line-height: unset; }
        .tabs-primary-header .nav-tabs .nav-item::before {
          display: none; }
        .tabs-primary-header .nav-tabs .nav-item .nav-link {
          background-color: transparent;
          border: none;
          font-size: 1.375rem;
          font-weight: 700;
          color: #233446;
          text-transform: uppercase;
          padding: 0.75rem 1.5rem ;
          padding-bottom: 1.5rem;
          position: relative;
          margin-bottom: -0.125rem; }
          .tabs-primary-header .nav-tabs .nav-item .nav-link.active {
            border-bottom: 2px solid #00B4ED;
            color: #00B4ED; }
            .tabs-primary-header .nav-tabs .nav-item .nav-link.active::before {
              content: '';
              position: absolute;
              left: 50%;
              bottom: -1px;
              -webkit-transform: translateX(-50%);
              -moz-transform: translateX(-50%);
              -ms-transform: translateX(-50%);
              -o-transform: translateX(-50%);
              transform: translateX(-50%);
              width: 0;
              height: 0;
              border-style: solid;
              border-width: 0 16px 16px 16px;
              border-color: transparent transparent #00B4ED transparent; }
            .tabs-primary-header .nav-tabs .nav-item .nav-link.active::after {
              content: '';
              position: absolute;
              left: 50%;
              bottom: -4px;
              -webkit-transform: translateX(-50%);
              -moz-transform: translateX(-50%);
              -ms-transform: translateX(-50%);
              -o-transform: translateX(-50%);
              transform: translateX(-50%);
              width: 0;
              height: 0;
              border-style: solid;
              border-width: 0 16px 16px 16px;
              border-color: transparent transparent #FFFFFF transparent; }
  .tabs-primary-body {
    width: 100%;
    position: relative;
    padding-top: 1.5rem; }

.accordion--primary {
  width: 100%;
  position: relative;
  --bs-accordion-border-width: 0; }
  .accordion--primary .accordion-item {
    border: none; }
    .accordion--primary .accordion-item:not(:first-child) {
      margin-top: 1.5rem; }
    .accordion--primary .accordion-item [class^='accordion-'],
    .accordion--primary .accordion-item [class*='accordion-'] {
      border: none !important; }
    .accordion--primary .accordion-item .accordion {
      border: none !important; }
      .accordion--primary .accordion-item .accordion-header .accordion-button {
        background-color: transparent;
        background-image: -webkit-gradient(linear, left 0%, left 100%, from(#1054B0), to(#76B900));
        background-image: -webkit-linear-gradient(left, #1054B0 0%, #76B900 100%);
        background-image: -moz-linear-gradient(left, #1054B0 0%, #76B900 100%);
        background-image: linear-gradient(to right, #1054B0 0%, #76B900 100%);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF1054B0', endColorstr='#FF76B900', GradientType=0);
        font-size: 1.125rem;
        font-weight: 700;
        color: #FFFFFF;
        padding: 1rem 1.5rem ;
        line-height: 1.5em; }
        .accordion--primary .accordion-item .accordion-header .accordion-button.collapsed {
          background-image: -webkit-gradient(linear, left 0%, left 100%, from(#f0f0f0), to(#fcfcfc));
          background-image: -webkit-linear-gradient(left, #f0f0f0 0%, #fcfcfc 100%);
          background-image: -moz-linear-gradient(left, #f0f0f0 0%, #fcfcfc 100%);
          background-image: linear-gradient(to right, #f0f0f0 0%, #fcfcfc 100%);
          background-repeat: repeat-x;
          filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF0F0F0', endColorstr='#FFFCFCFC', GradientType=0);
          color: #233446;
          border-radius: 0px;
          -webkit-border-radius: 0px;
          -moz-border-radius: 0px;
          -ms-border-radius: 0px;
          -o-border-radius: 0px; }
          .accordion--primary .accordion-item .accordion-header .accordion-button.collapsed::after {
            content: "\2b";
            font-family: "Font Awesome 5 Solid"; }
        .accordion--primary .accordion-item .accordion-header .accordion-button::after {
          background-image: none;
          content: "\f068";
          font-family: "Font Awesome 5 Solid";
          line-height: 1em; }
        .accordion--primary .accordion-item .accordion-header .accordion-button:focus {
          box-shadow: none; }
      .accordion--primary .accordion-item .accordion-body {
        background-color: #fafafa;
        border: none; }
        .accordion--primary .accordion-item .accordion-body ul {
          width: 100%;
          position: relative;
          padding-left: 1.5rem; }
          .accordion--primary .accordion-item .accordion-body ul li {
            width: 100%;
            position: relative;
            padding-left: 2rem;
            line-height: 1.5em;
            font-size: 1rem;
            margin: 0.75rem 0rem ; }
            .accordion--primary .accordion-item .accordion-body ul li::before {
              content: "\f00c";
              font-family: "Font Awesome 5 Solid";
              position: absolute;
              left: 0px; }
.accordion--questionair {
  width: 100%;
  position: relative;
  --bs-accordion-border-width: 0; }
  .accordion--questionair .accordion-item {
    border: none; }
    .accordion--questionair .accordion-item [class^='accordion-'],
    .accordion--questionair .accordion-item [class*='accordion-'] {
      border: none !important; }
    .accordion--questionair .accordion-item .accordion {
      border: none !important; }
      .accordion--questionair .accordion-item .accordion-header .accordion-button {
        background-color: transparent;
        font-size: 1rem;
        font-weight: normal;
        color: #233446;
        padding: 1rem 1.5rem ;
        line-height: 1.5em;
        display: flex;
        align-items: flex-start; }
        .accordion--questionair .accordion-item .accordion-header .accordion-button.collapsed {
          color: #233446; }
        .accordion--questionair .accordion-item .accordion-header .accordion-button::after {
          display: none; }
        .accordion--questionair .accordion-item .accordion-header .accordion-button::before {
          content: "\f105";
          font-family: "Font Awesome 5 Solid";
          position: absolute;
          left: 0; }
        .accordion--questionair .accordion-item .accordion-header .accordion-button:focus {
          box-shadow: none; }
      .accordion--questionair .accordion-item .accordion-body {
        background-color: transparent;
        border: none; }
        .accordion--questionair .accordion-item .accordion-body ul {
          width: 100%;
          position: relative;
          padding-left: 1.5rem; }
          .accordion--questionair .accordion-item .accordion-body ul li {
            width: 100%;
            position: relative;
            padding-left: 2rem;
            line-height: 1.5em;
            font-size: 1rem;
            margin: 0.75rem 0rem ; }
            .accordion--questionair .accordion-item .accordion-body ul li::before {
              content: "\f00c";
              font-family: "Font Awesome 5 Solid";
              position: absolute;
              left: 0px; }
.accordion--2cols {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  width: unset; }
  .accordion--2cols .accordion-item {
    margin: 0px;
    padding: 0.75rem; }

.page-pagination .pagination {
  text-align: center;
  display: flex;
  justify-content: center; }
  .page-pagination .pagination li:first-child {
    position: absolute;
    left: 0px; }
    .page-pagination .pagination li:first-child a i {
      margin-right: 5px; }
  .page-pagination .pagination li:last-child {
    position: absolute;
    right: 0px; }
    .page-pagination .pagination li:last-child a i {
      margin-left: 5px; }
  .page-pagination .pagination li a {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    font-size: 0.875rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    border: none;
    color: gray;
    padding: 12px 15px;
    position: relative;
    text-align: center;
    line-height: 1.1em; }
    .page-pagination .pagination li a:hover, .page-pagination .pagination li a:focus {
      background-color: white;
      color: #5a9eed; }
  .page-pagination .pagination li.active a {
    background-color: #76B900;
    color: #FFFFFF; }

.job-details h1 {
  color: #233446;
  font-weight: bold;
  line-height: 1.6em;
  text-transform: uppercase; }
.job-details h2 {
  color: #233446;
  font-weight: bold;
  line-height: 1.6em;
  text-transform: uppercase; }
.job-details h3 {
  color: #233446;
  font-weight: bold;
  line-height: 1.6em;
  text-transform: uppercase; }
.job-details h4 {
  color: #233446;
  font-weight: bold;
  line-height: 1.6em;
  text-transform: uppercase; }
.job-details h5 {
  color: #233446;
  font-weight: bold;
  line-height: 1.6em;
  text-transform: uppercase; }
.job-details h6 {
  color: #233446;
  font-weight: bold;
  line-height: 1.6em;
  text-transform: uppercase; }
.job-details .label-list {
  margin-bottom: 1.25rem; }
  .job-details .label-list li {
    padding-left: 0px;
    vertical-align: top;
    justify-content: flex-start;
    line-height: 2em; }
    .job-details .label-list li::before {
      display: none; }
.job-details ul {
  margin-bottom: 1.25rem; }
  .job-details ul li {
    line-height: 2em;
    padding-left: 1.875rem;
    position: relative; }
    .job-details ul li::before {
      font-family: "Font Awesome 5 Solid";
      content: '\f101';
      font-weight: normal;
      position: absolute;
      left: 10px;
      top: 0.0625rem; }
.job-details-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  padding: 1.5rem;
  padding-bottom: 0rem; }
  .job-details-footer .btn {
    height: 3.125rem;
    width: 11.25rem;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row; }
    .job-details-footer .btn i {
      margin-left: 0.75rem;
      -webkit-transition-duration: 0.3s;
      transition-duration: 0.3s;
      -webkit-transition-timing-function: ease-in;
      transition-timing-function: ease-in; }
    .job-details-footer .btn:hover i, .job-details-footer .btn:focus i {
      margin-left: 1.5rem;
      -webkit-transition-duration: 0.3s;
      transition-duration: 0.3s;
      -webkit-transition-timing-function: ease-out;
      transition-timing-function: ease-out; }

.resume-list-block .upload-preview {
  background-color: #f5fee6;
  border: 1px solid #d9fc9c;
  padding: 0.625rem;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-line-pack: center !important;
  align-content: center !important;
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important; }
  .resume-list-block .upload-preview .file-icon {
    float: left;
    position: relative;
    font-size: 2.25rem; }
    .resume-list-block .upload-preview .file-icon.pdf {
      color: #c60000; }
    .resume-list-block .upload-preview .file-icon.word {
      color: #2c83e8; }
  .resume-list-block .upload-preview .item-content {
    float: left;
    position: relative;
    -ms-flex: auto 1 !important;
    flex: auto 1 !important;
    padding-left: 0.625rem; }
    .resume-list-block .upload-preview .item-content p {
      margin: 0; }
.resume-list-block .title {
  color: #233446;
  font-weight: bold;
  font-size: 0.75rem;
  padding-top: 0.125rem; }
.resume-list-block .subNote {
  color: #A0ABB7;
  font-weight: normal;
  font-size: 0.75rem; }

.job-application {
  width: 100%;
  position: relative; }
  .job-application .application-header {
    width: 100%;
    position: relative;
    margin-bottom: 1.5rem; }
    .job-application .application-header .sub-headeing {
      font-size: 1rem;
      color: #FFAB00; }
    .job-application .application-header .headline {
      font-size: 1.5rem;
      text-transform: uppercase;
      display: flex;
      align-items: center; }
      .job-application .application-header .headline::after {
        display: flex;
        content: "";
        flex-grow: 1;
        border-bottom: 2px solid #A0ABB7;
        margin-left: 1rem; }
  .job-application .application-body {
    width: 100%;
    position: relative; }
    .job-application .application-body form .btn {
      width: 12.5rem; }
      .job-application .application-body form .btn .append {
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in; }
      .job-application .application-body form .btn:hover .append, .job-application .application-body form .btn:focus .append {
        margin-left: 1.5rem;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out; }

.jobs-short-overview {
  background: #FFFFFF;
  border: 1px solid #A0ABB7;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  width: 100%; }
  .jobs-short-overview .overview-header {
    width: 100%;
    position: relative;
    padding: 1rem;
    display: flex;
    flex-flow: row nowrap; }
    .jobs-short-overview .overview-header::after {
      content: '';
      position: absolute;
      bottom: 0px;
      left: 1rem;
      height: 0.0625rem;
      background-color: #A0ABB7;
      width: calc(100% - 2rem); }
    .jobs-short-overview .overview-header .job-icon-thumbs {
      width: 4.5rem;
      flex-shrink: 0;
      color: #233446; }
      .jobs-short-overview .overview-header .job-icon-thumbs i {
        font-size: 5rem; }
    .jobs-short-overview .overview-header .job-header-content {
      padding-left: 1rem;
      position: relative;
      flex-grow: 1; }
      .jobs-short-overview .overview-header .job-header-content .job-header-title {
        font-size: 1.375rem;
        color: #233446;
        text-transform: uppercase;
        font-weight: bold; }
      .jobs-short-overview .overview-header .job-header-content .iconic-list {
        display: flex;
        flex-flow: row wrap;
        align-items: center;
        justify-content: flex-start;
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        margin-bottom: 0rem;
        width: unset; }
        .jobs-short-overview .overview-header .job-header-content .iconic-list .list-item {
          padding-left: 1.5rem;
          margin: 0.25rem 0.5rem ;
          color: #687889;
          font-size: 0.875rem; }
          .jobs-short-overview .overview-header .job-header-content .iconic-list .list-item i {
            position: absolute;
            left: 0px;
            top: 4px; }
      .jobs-short-overview .overview-header .job-header-content .hr-list {
        align-items: center; }
        .jobs-short-overview .overview-header .job-header-content .hr-list li .btn {
          width: 11.25rem;
          height: 2.75rem;
          border-radius: 44px;
          -webkit-border-radius: 44px;
          -moz-border-radius: 44px;
          -ms-border-radius: 44px;
          -o-border-radius: 44px;
          border: 1px solid #C4FD60; }
      .jobs-short-overview .overview-header .job-header-content .text-link {
        color: #C4FD60;
        text-transform: uppercase;
        font-weight: bold; }
        .jobs-short-overview .overview-header .job-header-content .text-link:hover, .jobs-short-overview .overview-header .job-header-content .text-link:focus {
          color: #FFFFFF; }
  .jobs-short-overview .overview-body {
    width: 100%;
    position: relative;
    padding: 1rem;
    font-size: 0.875rem;
    max-height: 17.5rem;
    overflow-y: auto; }
    .jobs-short-overview .overview-body ul {
      margin-bottom: 1.25rem; }
      .jobs-short-overview .overview-body ul li {
        line-height: 2em;
        padding-left: 1.875rem;
        position: relative;
        font-size: 0.875rem; }
        .jobs-short-overview .overview-body ul li::before {
          font-family: "Font Awesome 5 Solid";
          content: '\f101';
          font-weight: normal;
          position: absolute;
          left: 10px; }
  .jobs-short-overview .overview-footer {
    background-color: #FFFFFF;
    border-radius: 0px 0px 11px 11px;
    -webkit-border-radius: 0px 0px 11px 11px;
    -moz-border-radius: 0px 0px 11px 11px;
    -ms-border-radius: 0px 0px 11px 11px;
    -o-border-radius: 0px 0px 11px 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 1rem ; }
    .jobs-short-overview .overview-footer a {
      display: block;
      position: relative;
      padding: 0.5rem 1rem ;
      color: #121D32;
      font-weight: bold; }
      .jobs-short-overview .overview-footer a i {
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in; }
      .jobs-short-overview .overview-footer a:hover, .jobs-short-overview .overview-footer a:focus {
        color: #70AC06; }
        .jobs-short-overview .overview-footer a:hover i, .jobs-short-overview .overview-footer a:focus i {
          margin-right: 1rem;
          -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
          -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out; }

/*-----------------------*/
.modal.show {
  z-index: 1150; }
.modal-md {
  --bs-modal-width: 40.625rem; }
.modal-base .modal-content .modal-header {
  min-height: 6.25rem;
  background-color: #C4FD60;
  clip-path: polygon(100% 0%, 100% 100%, 20% 70%, 0% 100%, 0% 0%);
  position: relative;
  padding-left: 1.5rem;
  padding-bottom: 3rem; }
  .modal-base .modal-content .modal-header::after {
    content: '';
    background-color: #FFFFFF;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    clip-path: polygon(0% 90%, 20% 60%, 100% 90%, 100% 95%, 20% 65%, 0% 95%); }
  .modal-base .modal-content .modal-header .modal-title {
    font-size: 1.5rem; }
.modal-base .modal-content .modal-body {
  padding: 1rem 1.5rem ; }
.modal-base .modal-content .modal-footer {
  min-height: 4rem;
  background-color: #e0feac;
  clip-path: polygon(20% 0%, 100% 60%, 100% 100%, 0% 100%, 0% 40%);
  position: relative;
  border: none; }
  .modal-base .modal-content .modal-footer::after {
    content: '';
    background-color: #FFFFFF;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    clip-path: polygon(0% 50%, 20% 10%, 100% 70%, 100% 80%, 20% 20%, 0% 60%); }

.scan-QR {
  max-width: 100%;
  height: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; }
  .scan-QR .btn-close {
    position: absolute;
    right: 0px;
    top: 0px; }
  .scan-QR img {
    width: 100%;
    height: auto; }

body {
  font-family: "Roboto";
  font-size: 1rem;
  line-height: 1.4em;
  color: #323232;
  background-color: #FFFFFF;
  padding: 0rem;
  padding-top: 5.3125rem; }
  body.modal-open .page-header .header-content .header-content--top .social-link {
    margin-right: 1.0625rem !important; }

.company-features {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr); }
  .company-features .features {
    position: relative; }
    .company-features .features:not(:last-child):after {
      content: '';
      height: 10px;
      position: absolute;
      background: #ECECEE;
      top: 160px;
      right: -40%;
      -webkit-transform: rotate(27deg);
      -moz-transform: rotate(27deg);
      -ms-transform: rotate(27deg);
      -o-transform: rotate(27deg);
      transform: rotate(27deg);
      width: 100%; }
    .company-features .features:first-child:after {
      top: 175px;
      right: -40%; }
    .company-features .features:first-child .features-header .shade {
      background-color: #FFFFFF;
      -moz-box-shadow: 0px 0px 44px 51px rgba(0, 196, 255, 0.5);
      -webkit-box-shadow: 0px 0px 44px 51px rgba(0, 196, 255, 0.5);
      box-shadow: 0px 0px 44px 51px rgba(0, 196, 255, 0.5);
      z-index: -5; }
    .company-features .features:first-child .features-icon {
      color: #00C4FF;
      background-color: #F2FAFF;
      -moz-box-shadow: 7px 7px 0px 2px #00c4ff;
      -webkit-box-shadow: 7px 7px 0px 2px #00c4ff;
      box-shadow: 7px 7px 0px 2px #00c4ff; }
    .company-features .features:first-child .features-body .features-title {
      color: #00C4FF; }
      .company-features .features:first-child .features-body .features-title:after {
        background-color: #00C4FF; }
    .company-features .features:nth-child(2n):after {
      top: -25px;
      right: -50%;
      -webkit-transform: rotate(-27deg);
      -moz-transform: rotate(-27deg);
      -ms-transform: rotate(-27deg);
      -o-transform: rotate(-27deg);
      transform: rotate(-27deg); }
    .company-features .features:nth-child(2n) .features-header .shade {
      background-color: #FFFFFF;
      -moz-box-shadow: 0px 0px 44px 51px rgba(83, 66, 255, 0.5);
      -webkit-box-shadow: 0px 0px 44px 51px rgba(83, 66, 255, 0.5);
      box-shadow: 0px 0px 44px 51px rgba(83, 66, 255, 0.5);
      z-index: -5; }
    .company-features .features:nth-child(2n) .features-icon {
      color: #5342FF;
      background-color: #F6F4FF;
      -moz-box-shadow: 7px 7px 0px 2px #5342ff;
      -webkit-box-shadow: 7px 7px 0px 2px #5342ff;
      box-shadow: 7px 7px 0px 2px #5342ff; }
    .company-features .features:nth-child(2n) .features-body .features-title {
      color: #5342FF; }
      .company-features .features:nth-child(2n) .features-body .features-title:after {
        background-color: #5342FF; }
    .company-features .features:nth-child(3n):after {
      top: 160px;
      right: -50%;
      -webkit-transform: rotate(27deg);
      -moz-transform: rotate(27deg);
      -ms-transform: rotate(27deg);
      -o-transform: rotate(27deg);
      transform: rotate(27deg); }
    .company-features .features:nth-child(3n) .features-header .shade {
      background-color: #FFFFFF;
      -moz-box-shadow: 0px 0px 44px 51px rgba(153, 41, 242, 0.5);
      -webkit-box-shadow: 0px 0px 44px 51px rgba(153, 41, 242, 0.5);
      box-shadow: 0px 0px 44px 51px rgba(153, 41, 242, 0.5);
      z-index: -5; }
    .company-features .features:nth-child(3n) .features-icon {
      color: #9929F2;
      background-color: #F6EFFA;
      -moz-box-shadow: 7px 7px 0px 2px #9929f2;
      -webkit-box-shadow: 7px 7px 0px 2px #9929f2;
      box-shadow: 7px 7px 0px 2px #9929f2; }
    .company-features .features:nth-child(3n) .features-body .features-title {
      color: #9929F2; }
      .company-features .features:nth-child(3n) .features-body .features-title:after {
        background-color: #9929F2; }
    .company-features .features:last-child .features-header .shade {
      background-color: #FFFFFF;
      -moz-box-shadow: 0px 0px 44px 51px rgba(255, 66, 163, 0.5);
      -webkit-box-shadow: 0px 0px 44px 51px rgba(255, 66, 163, 0.5);
      box-shadow: 0px 0px 44px 51px rgba(255, 66, 163, 0.5);
      z-index: -5; }
    .company-features .features:last-child .features-icon {
      color: #FF42A3;
      background-color: #FFF4F8;
      -moz-box-shadow: 7px 7px 0px 2px #ff42a3;
      -webkit-box-shadow: 7px 7px 0px 2px #ff42a3;
      box-shadow: 7px 7px 0px 2px #ff42a3; }
    .company-features .features:last-child .features-body .features-title {
      color: #FF42A3; }
      .company-features .features:last-child .features-body .features-title:after {
        background-color: #FF42A3; }
    .company-features .features-header {
      width: 100%;
      position: relative;
      display: flex;
      flex-flow: row wrap;
      align-items: flex-start;
      justify-content: center;
      z-index: 550; }
      .company-features .features-header .icon-rotate {
        transform: rotate(46deg); }
      .company-features .features-header .shade {
        height: 0rem;
        width: 0rem;
        position: absolute;
        left: 70%;
        top: 70%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        background-color: #FFFFFF;
        -moz-box-shadow: 0px 0px 44px 51px rgba(0, 196, 255, 0.5);
        -webkit-box-shadow: 0px 0px 44px 51px rgba(0, 196, 255, 0.5);
        box-shadow: 0px 0px 44px 51px rgba(0, 196, 255, 0.5);
        z-index: -5; }
    .company-features .features-icon {
      height: 9.125rem;
      width: 9.125rem;
      background-color: #F2FAFF;
      border-radius: 32px;
      -webkit-border-radius: 32px;
      -moz-border-radius: 32px;
      -ms-border-radius: 32px;
      -o-border-radius: 32px;
      -webkit-transform: skew(-14deg, -17deg);
      -moz-transform: skew(-14deg, -17deg);
      -ms-transform: skew(-14deg, -17deg);
      -o-transform: skew(-14deg, -17deg);
      transform: skew(-14deg, -17deg);
      position: relative;
      -moz-box-shadow: 7px 7px 0px 2px #00c4ff;
      -webkit-box-shadow: 7px 7px 0px 2px #00c4ff;
      box-shadow: 7px 7px 0px 2px #00c4ff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem; }
    .company-features .features-body {
      padding: 3rem 1.5rem ; }
      .company-features .features-body .features-title {
        padding-bottom: 2rem;
        margin-bottom: 1rem;
        position: relative; }
        .company-features .features-body .features-title:after {
          content: '';
          height: 0.3125rem;
          width: 8.4375rem;
          position: absolute;
          left: 1.25rem;
          bottom: 0px;
          background-color: #233446; }
      .company-features .features-body p {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        font-size: 0.875rem; }
    .company-features .features:first-child .features-header {
      justify-content: flex-start;
      padding-left: 3rem; }
    .company-features .features:last-child .features-header {
      justify-content: flex-end;
      padding-right: 3rem; }
    .company-features .features:nth-child(2n+2) {
      margin-top: 12.5rem; }
    .company-features .features:last-child .features-header:after {
      display: none; }

.grid-5-col {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 32px; }

.grid-6-col {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 32px; }

.course-item {
  width: 100%;
  position: relative;
  display: flex;
  flex-flow: column nowrap; }
  .course-item:hover .btn-silver-circle, .course-item:focus .btn-silver-circle {
    background-color: #00B4ED; }
    .course-item:hover .btn-silver-circle:before, .course-item:focus .btn-silver-circle:before {
      border-color: #00B4ED; }
    .course-item:hover .btn-silver-circle:hover, .course-item:hover .btn-silver-circle:focus, .course-item:focus .btn-silver-circle:hover, .course-item:focus .btn-silver-circle:focus {
      background-color: #76B900;
      color: #FFFFFF; }
      .course-item:hover .btn-silver-circle:hover:before, .course-item:hover .btn-silver-circle:focus:before, .course-item:focus .btn-silver-circle:hover:before, .course-item:focus .btn-silver-circle:focus:before {
        border-color: #76B900; }
  .course-item .course-icon {
    color: #FFFFFF;
    border-radius: 100% 100% 0px 100%;
    -webkit-border-radius: 100% 100% 0px 100%;
    -moz-border-radius: 100% 100% 0px 100%;
    -ms-border-radius: 100% 100% 0px 100%;
    -o-border-radius: 100% 100% 0px 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem; }
  .course-item .course-body {
    background-color: #FFFFFF;
    position: relative;
    background-size: cover;
    -webkit-clip-path: url(#course-clip-path);
    clip-path: url(#course-clip-path);
    margin-top: -6rem;
    border-radius: 0px 0px 20px 20px;
    -webkit-border-radius: 0px 0px 20px 20px;
    -moz-border-radius: 0px 0px 20px 20px;
    -ms-border-radius: 0px 0px 20px 20px;
    -o-border-radius: 0px 0px 20px 20px;
    -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.3);
    min-height: 19.375rem;
    width: 100%; }
    .course-item .course-body .body-content {
      background: #FFFFFF;
      padding: 1.5rem;
      padding-top: 8.75rem;
      border-radius: 20px;
      -webkit-border-radius: 20px;
      -moz-border-radius: 20px;
      -ms-border-radius: 20px;
      -o-border-radius: 20px;
      display: flex;
      flex-flow: column;
      justify-content: space-between;
      align-items: center; }
      .course-item .course-body .body-content h1 {
        color: #233446;
        padding: 0rem;
        font-size: 1.125rem;
        font-weight: bold;
        text-align: center;
        text-transform: uppercase;
        line-height: 1.5em; }
        .course-item .course-body .body-content h1 a {
          color: #233446;
          padding: 0rem;
          font-size: 1.125rem;
          font-weight: bold;
          text-align: center;
          text-transform: uppercase;
          line-height: 1.5em; }
          .course-item .course-body .body-content h1 a:hover, .course-item .course-body .body-content h1 a:focus {
            color: #00B4ED; }
      .course-item .course-body .body-content h2 {
        color: #233446;
        padding: 0rem;
        font-size: 1.125rem;
        font-weight: bold;
        text-align: center;
        text-transform: uppercase;
        line-height: 1.5em; }
        .course-item .course-body .body-content h2 a {
          color: #233446;
          padding: 0rem;
          font-size: 1.125rem;
          font-weight: bold;
          text-align: center;
          text-transform: uppercase;
          line-height: 1.5em; }
          .course-item .course-body .body-content h2 a:hover, .course-item .course-body .body-content h2 a:focus {
            color: #00B4ED; }
      .course-item .course-body .body-content h3 {
        color: #233446;
        padding: 0rem;
        font-size: 1.125rem;
        font-weight: bold;
        text-align: center;
        text-transform: uppercase;
        line-height: 1.5em; }
        .course-item .course-body .body-content h3 a {
          color: #233446;
          padding: 0rem;
          font-size: 1.125rem;
          font-weight: bold;
          text-align: center;
          text-transform: uppercase;
          line-height: 1.5em; }
          .course-item .course-body .body-content h3 a:hover, .course-item .course-body .body-content h3 a:focus {
            color: #00B4ED; }
      .course-item .course-body .body-content h4 {
        color: #233446;
        padding: 0rem;
        font-size: 1.125rem;
        font-weight: bold;
        text-align: center;
        text-transform: uppercase;
        line-height: 1.5em; }
        .course-item .course-body .body-content h4 a {
          color: #233446;
          padding: 0rem;
          font-size: 1.125rem;
          font-weight: bold;
          text-align: center;
          text-transform: uppercase;
          line-height: 1.5em; }
          .course-item .course-body .body-content h4 a:hover, .course-item .course-body .body-content h4 a:focus {
            color: #00B4ED; }
      .course-item .course-body .body-content h5 {
        color: #233446;
        padding: 0rem;
        font-size: 1.125rem;
        font-weight: bold;
        text-align: center;
        text-transform: uppercase;
        line-height: 1.5em; }
        .course-item .course-body .body-content h5 a {
          color: #233446;
          padding: 0rem;
          font-size: 1.125rem;
          font-weight: bold;
          text-align: center;
          text-transform: uppercase;
          line-height: 1.5em; }
          .course-item .course-body .body-content h5 a:hover, .course-item .course-body .body-content h5 a:focus {
            color: #00B4ED; }
      .course-item .course-body .body-content h6 {
        color: #233446;
        padding: 0rem;
        font-size: 1.125rem;
        font-weight: bold;
        text-align: center;
        text-transform: uppercase;
        line-height: 1.5em; }
        .course-item .course-body .body-content h6 a {
          color: #233446;
          padding: 0rem;
          font-size: 1.125rem;
          font-weight: bold;
          text-align: center;
          text-transform: uppercase;
          line-height: 1.5em; }
          .course-item .course-body .body-content h6 a:hover, .course-item .course-body .body-content h6 a:focus {
            color: #00B4ED; }

.courseClip_svg {
  position: absolute;
  width: 0;
  height: 0; }

.course-item:nth-child(6n+1) .course-icon {
  background-color: #00B4ED; }

.course-item:nth-child(6n+2) .course-icon {
  background-color: #76B900; }

.course-item:nth-child(6n+3) .course-icon {
  background-color: #FFC345; }

.course-item:nth-child(6n+4) .course-icon {
  background-color: #FD646F; }

.course-item:nth-child(6n+5) .course-icon {
  background-color: #233446; }

.course-item:nth-child(6n+6) .course-icon {
  background-color: #9929F2; }

.bg-pattern--circle-texture {
  background-image: url("../images/background_img.webp");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: cover; }
.bg-texture {
  background-image: url("../images/texture_bg.webp");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: cover; }
.bg--secondary {
  background-color: #76B900;
  color: #FFFFFF; }
  .bg--secondary h1 {
    color: #FFFFFF;
    padding-bottom: 0.5rem;
    text-transform: uppercase; }
  .bg--secondary h2 {
    color: #FFFFFF;
    padding-bottom: 0.5rem;
    text-transform: uppercase; }
  .bg--secondary h3 {
    color: #FFFFFF;
    padding-bottom: 0.5rem;
    text-transform: uppercase; }
  .bg--secondary h4 {
    color: #FFFFFF;
    padding-bottom: 0.5rem;
    text-transform: uppercase; }
  .bg--secondary h5 {
    color: #FFFFFF;
    padding-bottom: 0.5rem;
    text-transform: uppercase; }
  .bg--secondary h6 {
    color: #FFFFFF;
    padding-bottom: 0.5rem;
    text-transform: uppercase; }
  .bg--secondary p {
    color: #FFFFFF !important; }
  .bg--secondary.has-bottomAngle {
    overflow: hidden; }
    .bg--secondary.has-bottomAngle:before {
      content: '';
      width: 0;
      height: 0;
      border-left: 0px solid transparent;
      border-right: 75px solid transparent;
      border-bottom: 150px solid #00B4ED;
      position: absolute;
      left: 0px;
      bottom: 0px; }
  .bg--secondary .base-form .form-control,
  .bg--secondary .base-form .form-select {
    border: 1px solid #FFFFFF;
    background-color: #76B900;
    color: #FFFFFF;
    font-size: 0.875rem; }
    .bg--secondary .base-form .form-control::placeholder,
    .bg--secondary .base-form .form-select::placeholder {
      color: rgba(255, 255, 255, 0.7); }
  .bg--secondary .base-form .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"); }
  .bg--secondary .base-form .btn-primary {
    border: 1px solid rgba(255, 255, 255, 0.8); }
.bg--secondary-fade {
  background-color: #E7FFBC;
  color: #121D32; }
  .bg--secondary-fade h1 {
    color: #121D32;
    padding-bottom: 0.5rem;
    text-transform: uppercase; }
  .bg--secondary-fade h2 {
    color: #121D32;
    padding-bottom: 0.5rem;
    text-transform: uppercase; }
  .bg--secondary-fade h3 {
    color: #121D32;
    padding-bottom: 0.5rem;
    text-transform: uppercase; }
  .bg--secondary-fade h4 {
    color: #121D32;
    padding-bottom: 0.5rem;
    text-transform: uppercase; }
  .bg--secondary-fade h5 {
    color: #121D32;
    padding-bottom: 0.5rem;
    text-transform: uppercase; }
  .bg--secondary-fade h6 {
    color: #121D32;
    padding-bottom: 0.5rem;
    text-transform: uppercase; }
  .bg--secondary-fade p {
    color: #121D32 !important; }
  .bg--secondary-fade.has-bottomAngle {
    overflow: hidden; }
    .bg--secondary-fade.has-bottomAngle:before {
      content: '';
      width: 0;
      height: 0;
      border-left: 0px solid transparent;
      border-right: 75px solid transparent;
      border-bottom: 150px solid #00B4ED;
      position: absolute;
      left: 0px;
      bottom: 0px; }
  .bg--secondary-fade .base-form .form-control,
  .bg--secondary-fade .base-form .form-select {
    border: 1px solid #FFFFFF;
    background-color: #76B900;
    color: #FFFFFF;
    font-size: 0.875rem; }
    .bg--secondary-fade .base-form .form-control::placeholder,
    .bg--secondary-fade .base-form .form-select::placeholder {
      color: rgba(255, 255, 255, 0.7); }
  .bg--secondary-fade .base-form .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"); }
  .bg--secondary-fade .base-form .btn-primary {
    border: 1px solid rgba(255, 255, 255, 0.8); }
.bg--secondary-light {
  background-color: rgba(231, 255, 188, 0.6);
  color: #121D32; }
  .bg--secondary-light h1 {
    color: #121D32 !important;
    padding-bottom: 0.5rem !important;
    text-transform: uppercase; }
  .bg--secondary-light h2 {
    color: #121D32 !important;
    padding-bottom: 0.5rem !important;
    text-transform: uppercase; }
  .bg--secondary-light h3 {
    color: #121D32 !important;
    padding-bottom: 0.5rem !important;
    text-transform: uppercase; }
  .bg--secondary-light h4 {
    color: #121D32 !important;
    padding-bottom: 0.5rem !important;
    text-transform: uppercase; }
  .bg--secondary-light h5 {
    color: #121D32 !important;
    padding-bottom: 0.5rem !important;
    text-transform: uppercase; }
  .bg--secondary-light h6 {
    color: #121D32 !important;
    padding-bottom: 0.5rem !important;
    text-transform: uppercase; }
  .bg--secondary-light p {
    color: #121D32 !important; }
  .bg--secondary-light.has-bottomAngle {
    overflow: hidden; }
    .bg--secondary-light.has-bottomAngle:before {
      content: '';
      width: 0;
      height: 0;
      border-left: 0px solid transparent;
      border-right: 75px solid transparent;
      border-bottom: 150px solid #D0F688;
      position: absolute;
      left: 0px;
      bottom: 0px; }
  .bg--secondary-light .base-form .form-control,
  .bg--secondary-light .base-form .form-select {
    border: 1px solid #FFFFFF;
    background-color: #76B900;
    color: #FFFFFF;
    font-size: 0.875rem; }
    .bg--secondary-light .base-form .form-control::placeholder,
    .bg--secondary-light .base-form .form-select::placeholder {
      color: rgba(255, 255, 255, 0.7); }
  .bg--secondary-light .base-form .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"); }
  .bg--secondary-light .base-form .btn-primary {
    border: 1px solid rgba(255, 255, 255, 0.8); }
  .bg--secondary-light .thumb-iconin-list .list-item {
    color: #121D32; }
    .bg--secondary-light .thumb-iconin-list .list-item .list-icon {
      border: 2px solid #121D32; }
  .bg--secondary-light .skewed-banners .banner-content .content-container .sub-title::after {
    border-bottom-color: #121D32; }
.bg--tealishBlue {
  background-color: #121D32;
  color: #FFFFFF; }
  .bg--tealishBlue h1 {
    color: #FFFFFF;
    padding-bottom: 0.5rem;
    text-transform: uppercase; }
  .bg--tealishBlue h2 {
    color: #FFFFFF;
    padding-bottom: 0.5rem;
    text-transform: uppercase; }
  .bg--tealishBlue h3 {
    color: #FFFFFF;
    padding-bottom: 0.5rem;
    text-transform: uppercase; }
  .bg--tealishBlue h4 {
    color: #FFFFFF;
    padding-bottom: 0.5rem;
    text-transform: uppercase; }
  .bg--tealishBlue h5 {
    color: #FFFFFF;
    padding-bottom: 0.5rem;
    text-transform: uppercase; }
  .bg--tealishBlue h6 {
    color: #FFFFFF;
    padding-bottom: 0.5rem;
    text-transform: uppercase; }
  .bg--tealishBlue p {
    color: #FFFFFF !important; }
.bg--primary-light {
  background-color: #F2FAFF;
  color: #121D32; }
  .bg--primary-light h1 {
    color: #121D32 !important;
    padding-bottom: 0.5rem !important;
    text-transform: uppercase; }
  .bg--primary-light h2 {
    color: #121D32 !important;
    padding-bottom: 0.5rem !important;
    text-transform: uppercase; }
  .bg--primary-light h3 {
    color: #121D32 !important;
    padding-bottom: 0.5rem !important;
    text-transform: uppercase; }
  .bg--primary-light h4 {
    color: #121D32 !important;
    padding-bottom: 0.5rem !important;
    text-transform: uppercase; }
  .bg--primary-light h5 {
    color: #121D32 !important;
    padding-bottom: 0.5rem !important;
    text-transform: uppercase; }
  .bg--primary-light h6 {
    color: #121D32 !important;
    padding-bottom: 0.5rem !important;
    text-transform: uppercase; }
  .bg--primary-light p {
    color: #121D32 !important; }
  .bg--primary-light.has-bottomAngle {
    overflow: hidden; }
    .bg--primary-light.has-bottomAngle:before {
      content: '';
      width: 0;
      height: 0;
      border-left: 0px solid transparent;
      border-right: 75px solid transparent;
      border-bottom: 150px solid #BEE6FF;
      position: absolute;
      left: 0px;
      bottom: 0px; }
  .bg--primary-light .base-form .form-control,
  .bg--primary-light .base-form .form-select {
    border: 1px solid #ECECEE;
    background-color: #FFFFFF;
    color: #121D32;
    font-size: 0.875rem; }
    .bg--primary-light .base-form .form-control::placeholder,
    .bg--primary-light .base-form .form-select::placeholder {
      color: #ECECEE; }
  .bg--primary-light .base-form .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ECECEE' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"); }
  .bg--primary-light .base-form .btn-primary {
    border: 1px solid rgba(236, 236, 238, 0.8); }
  .bg--primary-light .thumb-iconin-list .list-item {
    color: #121D32; }
    .bg--primary-light .thumb-iconin-list .list-item .list-icon {
      border: 2px solid #121D32; }
  .bg--primary-light .skewed-banners .banner-content .content-container .sub-title::after {
    border-bottom-color: #121D32; }

.skewed-banners {
  display: flex;
  flex-flow: row nowrap;
  height: 100%;
  width: 100%; }
  .skewed-banners .banner-content {
    display: flex;
    flex-grow: 1;
    align-items: flex-start;
    flex-flow: column nowrap;
    position: relative;
    padding: 5rem 6.875rem 5rem 5rem; }
    .skewed-banners .banner-content .content-container {
      width: 100%;
      position: relative;
      height: 100%;
      color: #FFFFFF; }
      .skewed-banners .banner-content .content-container .sub-title {
        color: rgba(255, 255, 255, 0.7);
        font-weight: bold;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-flow: row wrap;
        padding-bottom: 0.5rem; }
        .skewed-banners .banner-content .content-container .sub-title::after {
          content: "";
          width: 130px;
          border-bottom: 2px solid rgba(255, 255, 255, 0.7);
          margin-left: 1rem; }
      .skewed-banners .banner-content .content-container h1 {
        color: #FFFFFF;
        padding-bottom: 0.5rem; }
      .skewed-banners .banner-content .content-container h2 {
        color: #FFFFFF;
        padding-bottom: 0.5rem; }
      .skewed-banners .banner-content .content-container h3 {
        color: #FFFFFF;
        padding-bottom: 0.5rem; }
      .skewed-banners .banner-content .content-container h4 {
        color: #FFFFFF;
        padding-bottom: 0.5rem; }
      .skewed-banners .banner-content .content-container h5 {
        color: #FFFFFF;
        padding-bottom: 0.5rem; }
      .skewed-banners .banner-content .content-container h6 {
        color: #FFFFFF;
        padding-bottom: 0.5rem; }
      .skewed-banners .banner-content .content-container p {
        color: #FFFFFF; }
  .skewed-banners .skew-banner {
    width: 37.5rem;
    -webkit-transform: skew(15deg);
    -moz-transform: skew(15deg);
    -ms-transform: skew(15deg);
    -o-transform: skew(15deg);
    transform: skew(15deg);
    display: flex;
    flex-shrink: 0; }
    .skewed-banners .skew-banner::before {
      content: '';
      width: 10rem;
      height: 1.5rem;
      position: absolute;
      background-color: #BEE6FF;
      top: 0px;
      right: 0.25rem;
      z-index: 550;
      -webkit-transform: skewX(15deg);
      -moz-transform: skewX(15deg);
      -ms-transform: skewX(15deg);
      -o-transform: skewX(15deg);
      transform: skewX(15deg); }
    .skewed-banners .skew-banner::after {
      content: '';
      width: 1.5rem;
      height: 10rem;
      position: absolute;
      background-color: #BEE6FF;
      top: 0px;
      right: 0px;
      z-index: 550; }
    .skewed-banners .skew-banner .banner-top {
      position: relative;
      height: 100%;
      width: 100%; }
      .skewed-banners .skew-banner .banner-top::before {
        content: '';
        width: 1.5rem;
        height: 10rem;
        position: absolute;
        background-color: #BEE6FF;
        top: 0px;
        left: -0.75rem;
        z-index: 550; }
      .skewed-banners .skew-banner .banner-top::after {
        content: '';
        width: 1.5rem;
        height: 10rem;
        position: absolute;
        background-color: #BEE6FF;
        left: -3rem;
        bottom: 5rem;
        z-index: 550; }
    .skewed-banners .skew-banner .banner-image {
      object-fit: fill;
      position: absolute;
      height: 100%;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      overflow: hidden; }
      .skewed-banners .skew-banner .banner-image img {
        -webkit-transform: skewX(-15deg);
        -moz-transform: skewX(-15deg);
        -ms-transform: skewX(-15deg);
        -o-transform: skewX(-15deg);
        transform: skewX(-15deg);
        flex-shrink: 0;
        min-width: 100%;
        min-height: 100%; }
      .skewed-banners .skew-banner .banner-image::before {
        content: '';
        width: 10rem;
        height: 1.5rem;
        position: absolute;
        background-color: #BEE6FF;
        bottom: 0px;
        left: 0rem;
        z-index: 550;
        -webkit-transform: skewX(15deg);
        -moz-transform: skewX(15deg);
        -ms-transform: skewX(15deg);
        -o-transform: skewX(15deg);
        transform: skewX(15deg); }
      .skewed-banners .skew-banner .banner-image::after {
        content: '';
        width: 1.5625rem;
        height: 8.125rem;
        position: absolute;
        background-color: #BEE6FF;
        bottom: 0px;
        left: 0rem;
        z-index: 550;
        -webkit-transform: skewX(0deg);
        -moz-transform: skewX(0deg);
        -ms-transform: skewX(0deg);
        -o-transform: skewX(0deg);
        transform: skewX(0deg); }

.skewed-image-block {
  width: 80%;
  -webkit-transform: skew(-12deg);
  -moz-transform: skew(-12deg);
  -ms-transform: skew(-12deg);
  -o-transform: skew(-12deg);
  transform: skew(-12deg);
  display: flex;
  flex-shrink: 0;
  border-left: 16px solid #FFFFFF;
  overflow: hidden;
  position: relative; }
  .skewed-image-block::before {
    content: '';
    width: 1rem;
    height: 100%;
    position: absolute;
    background-color: #BEE6FF;
    top: 0px;
    left: 0px;
    z-index: 550; }
  .skewed-image-block::after {
    content: '';
    width: 1rem;
    height: 100%;
    position: absolute;
    background-color: #BEE6FF;
    bottom: 0px;
    right: 0px;
    z-index: 550; }
  .skewed-image-block-image {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: #FFFFFF;
    -webkit-transform: skew(12deg);
    -moz-transform: skew(12deg);
    -ms-transform: skew(12deg);
    -o-transform: skew(12deg);
    transform: skew(12deg);
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 100%;
    object-fit: fill; }
    .skewed-image-block-image img {
      min-height: 100%;
      min-width: 100%;
      position: relative;
      flex-shrink: 0;
      width: auto; }

.left-circle-block {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-flow: row nowrap; }
  .left-circle-block .circle-thumb {
    height: 8.375rem;
    width: 8.375rem;
    background-color: #5a9eed;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    padding: 0.3125rem;
    flex-shrink: 0;
    z-index: 550; }
    .left-circle-block .circle-thumb img {
      max-width: 100%;
      max-height: 100%;
      border-radius: 100%;
      -webkit-border-radius: 100%;
      -moz-border-radius: 100%;
      -ms-border-radius: 100%;
      -o-border-radius: 100%; }
  .left-circle-block .block-info {
    display: flex;
    flex-grow: 1;
    flex-flow: column nowrap;
    height: 6.875rem;
    background-color: transparent;
    width: calc(100% + 40px);
    margin-left: -40px;
    position: relative; }
    .left-circle-block .block-info::after {
      content: '';
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0px 25px 40px 25px;
      border-color: transparent transparent #11529d #11529d;
      position: absolute;
      right: 7px;
      top: 0;
      z-index: -1; }
    .left-circle-block .block-info .block-header {
      width: 100%;
      position: relative;
      height: 2rem;
      padding-right: 2.5rem;
      background-color: transparent;
      flex-shrink: 0; }
      .left-circle-block .block-info .block-header .block-header-content {
        width: 100%;
        position: relative;
        height: 100%;
        background-color: #5a9eed;
        padding-left: 2.75rem;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        font-weight: bold;
        color: #FFFFFF;
        -webkit-transform: skewX(-25deg);
        -moz-transform: skewX(-25deg);
        -ms-transform: skewX(-25deg);
        -o-transform: skewX(-25deg);
        transform: skewX(-25deg);
        border-radius: 0px 0px 10px 0px;
        -webkit-border-radius: 0px 0px 10px 0px;
        -moz-border-radius: 0px 0px 10px 0px;
        -ms-border-radius: 0px 0px 10px 0px;
        -o-border-radius: 0px 0px 10px 0px; }
        .left-circle-block .block-info .block-header .block-header-content .header-title {
          -webkit-transform: skewX(25deg);
          -moz-transform: skewX(25deg);
          -ms-transform: skewX(25deg);
          -o-transform: skewX(25deg);
          transform: skewX(25deg);
          font-size: 0.875rem; }
    .left-circle-block .block-info .block-body {
      height: 100%;
      background-color: #ECECEE;
      margin-top: -1.25rem;
      padding: 1.75rem 0.75rem 0.5rem 3.25rem;
      border-radius: 0px 20px 20px 0px;
      -webkit-border-radius: 0px 20px 20px 0px;
      -moz-border-radius: 0px 20px 20px 0px;
      -ms-border-radius: 0px 20px 20px 0px;
      -o-border-radius: 0px 20px 20px 0px; }
      .left-circle-block .block-info .block-body .vr-contentList .list-item {
        font-size: 0.875rem;
        line-height: 1.375em;
        padding-top: 0rem;
        padding-bottom: 0rem; }
      .left-circle-block .block-info .block-body .vr-contentList .list-title {
        padding-bottom: 0.1875rem;
        font-size: 0.875rem;
        color: #121D32; }

.placement-partner {
  width: 100%;
  position: relative; }

.p-partners {
  width: 100%;
  position: relative;
  height: 7.5rem;
  overflow: hidden; }
  .p-partners::before {
    content: '';
    width: 3.4375rem;
    height: 0.3125rem;
    position: absolute;
    background-color: #D9DDE2;
    top: 0px;
    left: 0rem;
    z-index: 550;
    -webkit-transform: skewX(-55deg);
    -moz-transform: skewX(-55deg);
    -ms-transform: skewX(-55deg);
    -o-transform: skewX(-55deg);
    transform: skewX(-55deg);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out; }
  .p-partners::after {
    content: '';
    width: 0.3125rem;
    height: 2.1875rem;
    position: absolute;
    background-color: #D9DDE2;
    top: 0px;
    left: 0rem;
    z-index: 550;
    -webkit-transform: skewY(-55deg);
    -moz-transform: skewY(-55deg);
    -ms-transform: skewY(-55deg);
    -o-transform: skewY(-55deg);
    transform: skewY(-55deg);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out; }
  .p-partners a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    padding: 1.25rem;
    width: 100%; }
    .p-partners a img {
      height: 5rem;
      width: auto; }
    .p-partners a::before {
      content: '';
      width: 3.4375rem;
      height: 0.3125rem;
      position: absolute;
      background-color: #D9DDE2;
      bottom: 0px;
      right: 0rem;
      z-index: 550;
      -webkit-transform: skewX(-55deg);
      -moz-transform: skewX(-55deg);
      -ms-transform: skewX(-55deg);
      -o-transform: skewX(-55deg);
      transform: skewX(-55deg);
      -webkit-transition-duration: 0.3s;
      transition-duration: 0.3s;
      -webkit-transition-timing-function: ease-out;
      transition-timing-function: ease-out; }
    .p-partners a::after {
      content: '';
      width: 0.3125rem;
      height: 2.1875rem;
      position: absolute;
      background-color: #D9DDE2;
      bottom: 0px;
      right: 0rem;
      z-index: 550;
      -webkit-transform: skewY(-55deg);
      -moz-transform: skewY(-55deg);
      -ms-transform: skewY(-55deg);
      -o-transform: skewY(-55deg);
      transform: skewY(-55deg);
      -webkit-transition-duration: 0.3s;
      transition-duration: 0.3s;
      -webkit-transition-timing-function: ease-out;
      transition-timing-function: ease-out; }
  .p-partners:hover::before, .p-partners:hover::after, .p-partners:focus::before, .p-partners:focus::after {
    background-color: #00B4ED;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in; }
  .p-partners:hover a::before, .p-partners:hover a::after, .p-partners:focus a::before, .p-partners:focus a::after {
    background-color: #00B4ED;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in; }

.owl-theme .owl-dots .owl-dot span {
  background-color: #A0ABB7; }
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #00B4ED; }
.owl-theme .owl-dots .owl-dot.active span {
  background-color: #00B4ED;
  width: 2rem; }

.packman-block {
  height: 100%;
  width: 100%; }
  .packman-block .packman-block-header {
    background-color: #5a9eed;
    padding: 0.375rem;
    position: absolute;
    right: 0px;
    top: 0px;
    border-radius: 100% 100% 100% 0px;
    -webkit-border-radius: 100% 100% 100% 0px;
    -moz-border-radius: 100% 100% 100% 0px;
    -ms-border-radius: 100% 100% 100% 0px;
    -o-border-radius: 100% 100% 100% 0px;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    height: 40%;
    width: 40%; }
    .packman-block .packman-block-header .image-thumb {
      position: relative;
      height: 100%;
      width: 100%;
      border-radius: 100% 100% 100% 0px;
      -webkit-border-radius: 100% 100% 100% 0px;
      -moz-border-radius: 100% 100% 100% 0px;
      -ms-border-radius: 100% 100% 100% 0px;
      -o-border-radius: 100% 100% 100% 0px;
      z-index: 550; }
      .packman-block .packman-block-header .image-thumb img {
        position: relative;
        max-height: 100%;
        max-width: 100%;
        border-radius: 100% 100% 100% 0px;
        -webkit-border-radius: 100% 100% 100% 0px;
        -moz-border-radius: 100% 100% 100% 0px;
        -ms-border-radius: 100% 100% 100% 0px;
        -o-border-radius: 100% 100% 100% 0px; }
  .packman-block .packman-block-body {
    background-color: #FFFFFF;
    -moz-box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 12px;
    bottom: 12px;
    border-radius: 100% 0 100% 100%;
    -webkit-border-radius: 100% 0 100% 100%;
    -moz-border-radius: 100% 0 100% 100%;
    -ms-border-radius: 100% 0 100% 100%;
    -o-border-radius: 100% 0 100% 100%;
    height: 70%;
    width: 70%; }
    .packman-block .packman-block-body .block-content {
      overflow: hidden;
      height: 100%;
      width: 100%; }
      .packman-block .packman-block-body .block-content i, .packman-block .packman-block-body .block-content::before {
        content: '';
        float: left;
        height: 100%;
        width: 50%;
        shape-outside: radial-gradient(farthest-side at right, transparent calc(100% - 0.75rem), #fff 0); }
      .packman-block .packman-block-body .block-content i {
        float: right;
        shape-outside: radial-gradient(farthest-side at left, transparent calc(100% - 0.75rem), #fff 0); }
      .packman-block .packman-block-body .block-content p {
        margin: 0px;
        font-size: 0.875rem;
        line-height: 1.25em; }
        .packman-block .packman-block-body .block-content p.title {
          font-size: 0.875rem;
          font-weight: 700;
          text-align: center;
          margin-top: 0.5rem; }
          .packman-block .packman-block-body .block-content p.title a {
            font-size: 0.875rem;
            font-weight: 700;
            color: #233446;
            text-align: center; }
            .packman-block .packman-block-body .block-content p.title a:hover, .packman-block .packman-block-body .block-content p.title a:focus {
              color: #5a9eed; }
        .packman-block .packman-block-body .block-content p.sub-title {
          font-size: 0.75rem;
          font-weight: 700;
          color: #A0ABB7;
          text-align: center;
          white-space: nowrap; }
      .packman-block .packman-block-body .block-content-footer {
        width: 100%;
        position: relative;
        padding-top: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-flow: column nowrap; }
        .packman-block .packman-block-body .block-content-footer .title {
          font-size: 0.875rem;
          font-weight: 700; }
          .packman-block .packman-block-body .block-content-footer .title a {
            font-size: 0.875rem;
            font-weight: 700;
            color: #233446; }
            .packman-block .packman-block-body .block-content-footer .title a:hover, .packman-block .packman-block-body .block-content-footer .title a:focus {
              color: #5a9eed; }
        .packman-block .packman-block-body .block-content-footer .sub-title {
          font-size: 0.75rem;
          font-weight: 700;
          color: #A0ABB7; }
  .packman-block .circle-outline {
    border: 2px solid #5a9eed;
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: calc(70% + 24px);
    width: calc(70% + 24px);
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-right-color: transparent;
    -webkit-transform: rotate(-35deg);
    -moz-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    -o-transform: rotate(-35deg);
    transform: rotate(-35deg);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    z-index: -1; }
    .packman-block .circle-outline .circle-outline-inner {
      border: 2px solid transparent;
      position: absolute;
      bottom: 0px;
      left: 0px;
      height: 100%;
      width: 100%;
      border-radius: 100%;
      -webkit-border-radius: 100%;
      -moz-border-radius: 100%;
      -ms-border-radius: 100%;
      -o-border-radius: 100%;
      -webkit-transform: rotate(35deg);
      -moz-transform: rotate(35deg);
      -ms-transform: rotate(35deg);
      -o-transform: rotate(35deg);
      transform: rotate(35deg); }
      .packman-block .circle-outline .circle-outline-inner::before {
        content: '';
        height: 1rem;
        width: 1rem;
        border-radius: 100%;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        -ms-border-radius: 100%;
        -o-border-radius: 100%;
        background-color: #5a9eed;
        position: absolute;
        left: 57%;
        top: -0.5625rem;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in; }
      .packman-block .circle-outline .circle-outline-inner::after {
        content: '';
        height: 1rem;
        width: 1rem;
        border-radius: 100%;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        -ms-border-radius: 100%;
        -o-border-radius: 100%;
        background-color: #5a9eed;
        position: absolute;
        right: -0.5rem;
        top: 56%;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in; }
  .packman-block:hover .packman-block-header, .packman-block:focus .packman-block-header {
    background-color: #76B900;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in; }
  .packman-block:hover .circle-outline, .packman-block:focus .circle-outline {
    border: 2px solid #76B900;
    border-right-color: transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in; }
    .packman-block:hover .circle-outline .circle-outline-inner::before, .packman-block:focus .circle-outline .circle-outline-inner::before {
      background-color: #76B900;
      -webkit-transition-duration: 0.3s;
      transition-duration: 0.3s;
      -webkit-transition-timing-function: ease-in;
      transition-timing-function: ease-in; }
    .packman-block:hover .circle-outline .circle-outline-inner::after, .packman-block:focus .circle-outline .circle-outline-inner::after {
      background-color: #76B900;
      -webkit-transition-duration: 0.3s;
      transition-duration: 0.3s;
      -webkit-transition-timing-function: ease-in;
      transition-timing-function: ease-in; }

.quick-query {
  width: 100%;
  position: relative;
  background-color: #FFFFFF;
  -moz-box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  min-height: 37.5rem; }
  .quick-query--header {
    width: 100%;
    position: relative;
    height: 11.25rem;
    color: #233446;
    border-radius: 12px 12px 40px 40px;
    -webkit-border-radius: 12px 12px 40px 40px;
    -moz-border-radius: 12px 12px 40px 40px;
    -ms-border-radius: 12px 12px 40px 40px;
    -o-border-radius: 12px 12px 40px 40px;
    padding: 1.5rem; }
    .quick-query--header .header-title {
      font-size: 1.5rem;
      font-weight: 700;
      text-align: center;
      text-transform: uppercase;
      padding-bottom: 1.5rem; }
  .quick-query--body {
    width: 100%;
    position: relative;
    padding: 1.5rem; }
    .quick-query--body .form-floating > .form-control,
    .quick-query--body .form-floating > .form-select {
      border-radius: 12px;
      -webkit-border-radius: 12px;
      -moz-border-radius: 12px;
      -ms-border-radius: 12px;
      -o-border-radius: 12px; }
  .quick-query--footer {
    width: 100%;
    position: relative; }
    .quick-query--footer .btn {
      height: 4rem;
      border-radius: 0px 0px 12px 12px;
      -webkit-border-radius: 0px 0px 12px 12px;
      -moz-border-radius: 0px 0px 12px 12px;
      -ms-border-radius: 0px 0px 12px 12px;
      -o-border-radius: 0px 0px 12px 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%; }
      .quick-query--footer .btn i {
        margin-left: 1rem; }
  .quick-query.flush-preset {
    height: auto;
    min-height: auto; }
    .quick-query.flush-preset .quick-query--header {
      height: auto;
      border-radius: 12px 12px 0px 0px;
      -webkit-border-radius: 12px 12px 0px 0px;
      -moz-border-radius: 12px 12px 0px 0px;
      -ms-border-radius: 12px 12px 0px 0px;
      -o-border-radius: 12px 12px 0px 0px;
      background-color: transparent; }
      .quick-query.flush-preset .quick-query--header .header-title {
        font-size: 2rem;
        padding-bottom: 0rem; }
    .quick-query.flush-preset .quick-query--footer {
      padding: 1.5rem; }
      .quick-query.flush-preset .quick-query--footer .btn {
        border-radius: 12px;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        -ms-border-radius: 12px;
        -o-border-radius: 12px;
        font-size: 1.25rem; }
  .quick-query.flush-shadow {
    box-shadow: none; }

.wave {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1; }

.wave + .wave {
  z-index: 2; }

.section-maps {
  width: 100%;
  position: relative;
  height: 30rem; }
  .section-maps #map {
    height: 100%;
    width: 100%; }

.aside-panel {
  display: flex;
  flex-flow: column nowrap; }
  .aside-panel .panel-row {
    margin: 1.5rem 0rem ; }
    .aside-panel .panel-row:first-child {
      margin-top: 0px; }
    .aside-panel .panel-row:last-child {
      margin-bottom: 0px; }

.fieldset-block {
  border: 1px solid #cccccc;
  padding: 0.9375rem;
  /*@include rem-size()(margin-top,10px);*/ }
  .fieldset-block .legend-header {
    font-size: 1.25rem;
    font-weight: bold;
    width: auto;
    position: absolute;
    padding: 0.1875rem 0.625rem ;
    background-color: #FFFFFF;
    margin-top: -1.875rem;
    left: 0.9375rem; }
    .fieldset-block .legend-header h1 {
      font-weight: bold;
      text-transform: uppercase;
      padding-bottom: 0px;
      line-height: 1em;
      font-size: 1.25rem; }
    .fieldset-block .legend-header h2 {
      font-weight: bold;
      text-transform: uppercase;
      padding-bottom: 0px;
      line-height: 1em;
      font-size: 1.25rem; }
    .fieldset-block .legend-header h3 {
      font-weight: bold;
      text-transform: uppercase;
      padding-bottom: 0px;
      line-height: 1em;
      font-size: 1.25rem; }
    .fieldset-block .legend-header h4 {
      font-weight: bold;
      text-transform: uppercase;
      padding-bottom: 0px;
      line-height: 1em;
      font-size: 1.25rem; }
    .fieldset-block .legend-header h5 {
      font-weight: bold;
      text-transform: uppercase;
      padding-bottom: 0px;
      line-height: 1em;
      font-size: 1.25rem; }
    .fieldset-block .legend-header h6 {
      font-weight: bold;
      text-transform: uppercase;
      padding-bottom: 0px;
      line-height: 1em;
      font-size: 1.25rem; }
    .fieldset-block .legend-header.center {
      left: 50%;
      -webkit-transform: translateX(-50%);
      -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      -o-transform: translateX(-50%);
      transform: translateX(-50%); }
  .fieldset-block .fieldset-body {
    font-size: 0.875rem;
    display: flex;
    flex-flow: column; }
    .fieldset-block .fieldset-body .hr-list li {
      padding: 0.625em 0.625em; }

.aside-listing-item {
  padding: 0.9375rem 0rem ; }
  .aside-listing-item::before {
    content: '';
    display: block;
    height: 100%;
    transform-origin: 0;
    background-color: rgba(0, 180, 237, 0.05);
    transform: scaleX(0);
    position: absolute;
    bottom: 0;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms;
    left: 0;
    width: 100%; }
  .aside-listing-item .item-thumb {
    float: left;
    position: relative;
    width: 125px;
    overflow: hidden;
    /* a {
       @include flex_hrc;
       float: left;
       height: 100%;
       position: relative;
       width: 100%;
       overflow: hidden;
     }*/
    /*a img,
    img {
      display: block;
      height: 100%;
      width: auto;
      @include transition(all .6s ease 0s);
      @include transform(scale(1));
    }*/ }
    .aside-listing-item .item-thumb .img-wrapper {
      padding-top: 75%;
      margin: 0px;
      position: relative; }
      .aside-listing-item .item-thumb .img-wrapper a {
        height: 100%;
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        overflow: hidden; }
        .aside-listing-item .item-thumb .img-wrapper a img {
          height: auto;
          min-height: 100%;
          width: 100%; }
  .aside-listing-item .item-content {
    display: inline-block;
    float: left;
    padding-left: 0.625rem;
    position: relative;
    width: calc(100% - 125px); }
    .aside-listing-item .item-content .post-info li {
      border-right: 1px solid #999999;
      color: #999999;
      padding: 0rem 0.625rem ;
      float: left;
      display: inline-block;
      position: relative;
      width: auto; }
      .aside-listing-item .item-content .post-info li:last-child {
        border-right: none; }
    .aside-listing-item .item-content .item-title {
      color: #121D32;
      font-size: 0.875rem;
      font-weight: bold;
      padding-bottom: 7px;
      line-height: 1.2em;
      position: relative; }
      .aside-listing-item .item-content .item-title a {
        color: #121D32; }
        .aside-listing-item .item-content .item-title a:hover, .aside-listing-item .item-content .item-title a:focus {
          color: #345390; }
    .aside-listing-item .item-content .info {
      font-size: 0.75rem;
      color: #999999;
      margin: 0px;
      position: relative;
      text-align: left; }
      .aside-listing-item .item-content .info.has-icon {
        padding-left: 15px; }
        .aside-listing-item .item-content .info.has-icon i {
          position: absolute;
          left: 0px;
          top: 1px; }
  .aside-listing-item:hover, .aside-listing-item:focus {
    /*.item-thumb {
      a img,
      img {
        @include transition(all .6s ease 0s);
        @include transform(scale(1.2));
      }
    }*/ }
    .aside-listing-item:hover::before, .aside-listing-item:focus::before {
      transform: scaleX(1); }
    .aside-listing-item:hover .item-content, .aside-listing-item:focus .item-content {
      /*.socialShare-count{

      }*/ }
      .aside-listing-item:hover .item-content .item-title a, .aside-listing-item:focus .item-content .item-title a {
        color: #345390; }

.aside-block .block-header {
  padding-left: 15px;
  vertical-align: middle;
  margin-bottom: 20px; }
  .aside-block .block-header h1 {
    font-weight: bold;
    text-transform: uppercase;
    text-align: left;
    padding-bottom: 0px;
    position: relative;
    line-height: 1.5rem;
    font-size: 1.25rem; }
  .aside-block .block-header h2 {
    font-weight: bold;
    text-transform: uppercase;
    text-align: left;
    padding-bottom: 0px;
    position: relative;
    line-height: 1.5rem;
    font-size: 1.25rem; }
  .aside-block .block-header h3 {
    font-weight: bold;
    text-transform: uppercase;
    text-align: left;
    padding-bottom: 0px;
    position: relative;
    line-height: 1.5rem;
    font-size: 1.25rem; }
  .aside-block .block-header h4 {
    font-weight: bold;
    text-transform: uppercase;
    text-align: left;
    padding-bottom: 0px;
    position: relative;
    line-height: 1.5rem;
    font-size: 1.25rem; }
  .aside-block .block-header h5 {
    font-weight: bold;
    text-transform: uppercase;
    text-align: left;
    padding-bottom: 0px;
    position: relative;
    line-height: 1.5rem;
    font-size: 1.25rem; }
  .aside-block .block-header h6 {
    font-weight: bold;
    text-transform: uppercase;
    text-align: left;
    padding-bottom: 0px;
    position: relative;
    line-height: 1.5rem;
    font-size: 1.25rem; }
  .aside-block .block-header::before {
    content: '';
    background-color: #FFAB00;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 5px; }
  .aside-block .block-header.shade-bg {
    background-color: white;
    padding: 0.4375rem 0.625rem 0.4375rem 0.9375rem; }

.aside-block-post {
  margin: 0.9375rem 0rem ; }
  .aside-block-post:first-child {
    margin-top: 0px; }
  .aside-block-post:last-child {
    margin-bottom: 0px; }
  .aside-block-post .block-post-banner {
    padding-top: 56.25%;
    margin: 0px;
    position: relative; }
    .aside-block-post .block-post-banner .banner-img {
      display: flex;
      justify-content: center;
      flex-direction: column;
      height: 100%;
      position: absolute;
      top: 0px;
      left: 0px;
      overflow: hidden;
      width: 100%; }
      .aside-block-post .block-post-banner .banner-img img {
        height: auto;
        will-change: opacity;
        -webkit-transition: opacity .3s ease-in;
        transition: opacity .3s ease-in;
        width: 100%; }
      .aside-block-post .block-post-banner .banner-img:hover, .aside-block-post .block-post-banner .banner-img:focus {
        opacity: 0.84; }
  .aside-block-post .block-meta-content {
    padding-top: 10px; }
    .aside-block-post .block-meta-content .meta-title {
      font-weight: bold;
      line-height: 1.3em;
      font-size: 1.125rem; }
      .aside-block-post .block-meta-content .meta-title a {
        color: #121D32;
        display: block;
        text-decoration: none;
        font-size: 1.125rem; }
        .aside-block-post .block-meta-content .meta-title a:hover, .aside-block-post .block-meta-content .meta-title a:focus {
          color: #345390; }
    .aside-block-post .block-meta-content .meta-info {
      margin: 0px;
      display: flex;
      flex-flow: row nowrap;
      justify-content: flex-start; }
      .aside-block-post .block-meta-content .meta-info li {
        display: inline-block;
        float: left;
        position: relative;
        margin: 0rem 0.375rem ; }
        .aside-block-post .block-meta-content .meta-info li:first-child {
          margin-left: 0px; }
        .aside-block-post .block-meta-content .meta-info li:last-child {
          margin-right: 0px; }
        .aside-block-post .block-meta-content .meta-info li.post-author {
          font-size: 0.75rem;
          font-weight: bold;
          padding-left: 1.5625rem; }
          .aside-block-post .block-meta-content .meta-info li.post-author::before {
            content: 'By :';
            font-size: 0.75rem;
            color: #999999;
            position: absolute;
            left: 0px;
            top: 0px; }
          .aside-block-post .block-meta-content .meta-info li.post-author a {
            color: #A0ABB7; }
        .aside-block-post .block-meta-content .meta-info li.post-date {
          font-size: 0.75rem;
          font-weight: normal;
          color: #999999;
          padding-left: 1rem; }
          .aside-block-post .block-meta-content .meta-info li.post-date::before {
            font-family: "Font Awesome 5 Solid";
            content: '\f073';
            position: absolute;
            left: 0px;
            top: 0px; }

.label-list li {
  width: 100%;
  position: relative;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.375em;
  display: flex;
  flex-flow: row wrap; }
  .label-list li label {
    font-weight: bold;
    padding-right: 0.625rem;
    position: relative;
    width: 20%; }
.label-list._lbl_30 li label {
  width: 30%; }
.label-list._2-col {
  display: flex;
  flex-flow: row wrap;
  width: inherit;
  margin-left: -0.75rem;
  margin-right: -0.75rem; }
  .label-list._2-col li {
    width: 50%;
    padding: 0rem 0.75rem ; }
    .label-list._2-col li label {
      width: 38%; }

.modal-mds {
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto; }

.floating-footer-bar {
  background-color: #00102c;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  position: sticky;
  bottom: 0px;
  z-index: 1020; }

@media screen and (max-width: 575.98px) {
  .p-xs-0 {
    padding: 0px; }

  .pt-sm-0 {
    padding-top: 0px; }

  .col-xs-12 {
    flex: 0 0 auto;
    width: 100%; }

  .resp-column-reverse {
    flex-direction: column-reverse !important; }

  /*--header and homepage settings--*/
  .page-header .brand-logo {
    width: 9.375rem; }
    .page-header .brand-logo--link {
      width: 6.125rem;
      padding-left: 0px;
      padding-right: 0px;
      margin-left: 1.5rem; }
      .page-header .brand-logo--link img {
        max-width: 6.125rem;
        height: auto; }

  .header-content--top {
    padding-left: 2rem; }
    .header-content--top .list-group .list-group-item {
      padding-left: 0.25rem;
      padding-right: 0.25rem; }
      .header-content--top .list-group .list-group-item img {
        margin-right: 0.25rem; }
      .header-content--top .list-group .list-group-item:not(:first-child) {
        display: none; }
    .header-content--top .social-link {
      display: none; }

  .navbar--primary #primaryNavbar {
    background-color: #FFFFFF;
    position: fixed;
    top: 0px;
    right: 0px;
    height: 100vh;
    width: 20rem;
    z-index: 950;
    -moz-box-shadow: -20px 0px 44px 51px rgba(0, 12, 34, 0.2);
    -webkit-box-shadow: -20px 0px 44px 51px rgba(0, 12, 34, 0.2);
    box-shadow: -20px 0px 44px 51px rgba(0, 12, 34, 0.2);
    transition: right 500ms ease-in-out; }
    .navbar--primary #primaryNavbar.collapsing {
      right: -20rem;
      transition: right 500ms ease-in-out; }
    .navbar--primary #primaryNavbar.show {
      right: 0px;
      transition: right 500ms ease-in-out; }
    .navbar--primary #primaryNavbar.collapse:not(.show) {
      display: none; }
    .navbar--primary #primaryNavbar .navbar-nav {
      align-items: flex-start; }
      .navbar--primary #primaryNavbar .navbar-nav .nav-item {
        width: 100%; }
        .navbar--primary #primaryNavbar .navbar-nav .nav-item .nav-link {
          line-height: 1.5em;
          padding: 1rem 1.5rem ;
          padding-left: 3.5rem;
          display: flex;
          align-items: center;
          justify-content: flex-start;
          font-size: 1rem; }
          .navbar--primary #primaryNavbar .navbar-nav .nav-item .nav-link::before {
            content: "\f124";
            font-family: "Font Awesome 5 Solid";
            position: absolute;
            left: 24px; }
  .navbar--primary .navbar-nav .nav-item.dropdown .dropdown-menu {
    position: absolute;
    left: inherit;
    right: 0px; }
    .navbar--primary .navbar-nav .nav-item.dropdown .dropdown-menu .navbar-subNav .nav-item.dropdown-item.dropdown .dropdown-menu--subMenus {
      position: relative;
      left: 0px; }
  .navbar--primary .dropdown-hover-all .nav-item .nav-link {
    padding: 0.625rem 1rem ; }

  .company-features {
    grid-template-columns: repeat(1, 1fr); }
    .company-features .features {
      margin-top: 0rem !important; }
      .company-features .features:first-child .features-header {
        justify-content: center;
        padding-left: 0rem; }
      .company-features .features:last-child .features-header {
        justify-content: center;
        padding-right: 0rem; }
      .company-features .features:after {
        display: none; }

  .grid-6-col {
    grid-template-columns: repeat(2, 1fr);
    padding-left: 0.75rem;
    padding-right: 0.75rem; }

  .course-item {
    margin-bottom: 1rem;
    margin-top: 1rem; }
    .course-item .course-body {
      margin-top: -5rem;
      min-height: 16rem; }
      .course-item .course-body .body-content {
        padding-top: 7rem; }
        .course-item .course-body .body-content .btn-silver-circle {
          background-color: #76B900;
          color: #FFFFFF; }
          .course-item .course-body .body-content .btn-silver-circle:before {
            border-color: #76B900; }

  .spotlight-grid-5,
  .spotlight-grid-6 {
    grid-template-columns: repeat(2, 1fr);
    padding-left: 0.75rem;
    padding-right: 0.75rem; }

  .card-spotlight .spotlight-body {
    margin-top: -4.5rem;
    min-height: 15rem; }
    .card-spotlight .spotlight-body .body-content {
      padding: 1rem;
      padding-top: 7rem; }
      .card-spotlight .spotlight-body .body-content h6,
      .card-spotlight .spotlight-body .body-content h5 {
        font-size: 1rem; }

  .btn-primary--outline {
    color: #FFFFFF; }
    .btn-primary--outline:before {
      width: 100%; }

  .skewed-banners {
    flex-flow: column; }
    .skewed-banners .banner-content {
      padding: 1.5rem;
      flex-flow: column wrap;
      width: 100%; }
      .skewed-banners .banner-content .content-container .banner-title {
        font-size: 2.5rem; }
      .skewed-banners .banner-content .content-container .sub-title {
        font-size: 1.25rem; }
    .skewed-banners .thumb-iconin-list.list-2col .list-item {
      width: 100%; }
    .skewed-banners .skew-banner {
      display: none;
      width: 100%;
      padding-top: 56.25%;
      -webkit-transform: skew(0deg);
      -moz-transform: skew(0deg);
      -ms-transform: skew(0deg);
      -o-transform: skew(0deg);
      transform: skew(0deg); }
      .skewed-banners .skew-banner .banner-image {
        top: 0px; }
      .skewed-banners .skew-banner .banner-top {
        display: none; }

  .left-circle-block {
    margin-top: 1rem;
    margin-bottom: 1rem; }

  .mt-sm-4 {
    margin-top: 1.5rem; }

  .flex-sm-column-reverse {
    flex-flow: column-reverse !important; }

  .resp-disp-none {
    display: none !important; }

  /*--ended homepage and header settings--*/
  /*--about us page settings--*/
  .wave-banner {
    padding-top: 68.75%; }
    .wave-banner .banner-content .banner-title {
      font-size: 1.5rem;
      margin-bottom: 1rem; }
    .wave-banner .banner-content .sub-title {
      font-size: 1rem; }
    .wave-banner .banner-content .btn {
      padding: 0.75rem 1rem ; }

  .section-about .about-intro {
    flex-flow: column-reverse;
    align-items: flex-start;
    justify-content: flex-start; }
    .section-about .about-intro::before {
      height: 150px;
      clip-path: polygon(100% 34%, 100% 34%, 30% 100%, 0% 52%, 30% 90%);
      z-index: 250; }
    .section-about .about-intro::after {
      clip-path: polygon(100% 0%, 163% 83%, 30% 100%, 0% 94%, 0% 0%); }
    .section-about .about-intro .intro-image-clip {
      width: 100%;
      height: auto;
      margin-bottom: 1.5rem; }
      .section-about .about-intro .intro-image-clip .clip-shade {
        padding-top: 75%; }
        .section-about .about-intro .intro-image-clip .clip-shade .clip-image-frame {
          position: absolute;
          top: 0px;
          height: calc(100% - 10px); }
    .section-about .about-intro .intro-content {
      min-height: 10rem;
      height: auto;
      padding-right: 0px;
      padding-bottom: 4rem;
      width: 100%; }
      .section-about .about-intro .intro-content .content-title {
        font-size: 2rem;
        margin-bottom: 1.5rem; }

  .grid-5-col {
    grid-template-columns: repeat(1, 1fr); }
    .grid-5-col .card-accent:not(:first-child) {
      margin-top: 2rem; }

  /*--about us page end--*/
  /*--blog pages--*/
  .banner-general {
    padding-top: 37.5%; }
    .banner-general .banner-image-frame .banner-title {
      margin-left: 2.5rem; }
    .banner-general .banner-image-frame:after {
      left: 1rem;
      font-size: 5rem; }

  .blogDetails-views .details-header .blog-post-title h1 {
    font-size: 1.5rem;
    line-height: 1.5em; }
  .blogDetails-views .details-header .blog-post-metaInfo .blog-share-link li .total-count {
    font-size: 0.75rem; }

  .blog-list-wrap .blog-list-item {
    flex-flow: column wrap !important; }
    .blog-list-wrap .blog-list-item:first-child {
      padding-top: 0px; }
    .blog-list-wrap .blog-list-item .blog-content {
      width: 100%;
      order: 1 !important; }
    .blog-list-wrap .blog-list-item .blog-img {
      order: 0 !important;
      padding: 0px !important;
      margin-bottom: 1rem;
      width: 100%; }

  .page-pagination {
    margin-bottom: 3rem; }

  /*--ended blog pages--*/
  /*--Contact page--*/
  .address-list--lg .list-item {
    padding-left: 3.5rem; }
    .address-list--lg .list-item .list-icon {
      width: 1.75rem;
      font-size: 1.5rem;
      justify-content: center;
      margin: 0px; }
      .address-list--lg .list-item .list-icon img {
        width: 1.5rem; }
    .address-list--lg .list-item .list-item-headline {
      font-size: 1.125rem; }
    .address-list--lg .list-item .list-item-title {
      font-size: 1rem; }
    .address-list--lg .list-item .list-item-text {
      font-size: 0.875rem;
      font-weight: normal; }

  .quick-query.flush-preset .quick-query--header {
    padding-bottom: 0px; }
    .quick-query.flush-preset .quick-query--header .header-title {
      font-size: 1.5rem; }

  /*--Contact page--*/
  /*--course category page--*/
  .angle-banner {
    height: auto; }
    .angle-banner .banner-inner {
      flex-flow: column-reverse; }
      .angle-banner .banner-inner .banner-left {
        width: 100%;
        padding: 1.5rem 0rem ; }
        .angle-banner .banner-inner .banner-left .banner-content-thumbs {
          padding: 0px; }
          .angle-banner .banner-inner .banner-left .banner-content-thumbs .icon-thumbs {
            width: 4rem;
            font-size: 4rem; }
            .angle-banner .banner-inner .banner-left .banner-content-thumbs .icon-thumbs i {
              font-size: 4rem; }
            .angle-banner .banner-inner .banner-left .banner-content-thumbs .icon-thumbs img {
              max-width: 64px; }
        .angle-banner .banner-inner .banner-left .banner-content-thumbs-content {
          padding-left: 1rem; }
          .angle-banner .banner-inner .banner-left .banner-content-thumbs-content .header-title {
            font-size: 1.5rem; }
          .angle-banner .banner-inner .banner-left .banner-content-thumbs-content h1 {
            font-size: 1.25rem; }
        .angle-banner .banner-inner .banner-left .banner-content .banner-headline {
          font-size: 1.5rem; }
      .angle-banner .banner-inner .banner-right-angle {
        display: none;
        width: 100%; }
        .angle-banner .banner-inner .banner-right-angle .clip-frame:before {
          clip-path: polygon(90px 0%, 100% 0%, 100% 100%, 37% 100%, 30px 25%); }
        .angle-banner .banner-inner .banner-right-angle .clip-frame .angle-imageholder {
          clip-path: polygon(100px 0%, 100% 0%, 100% 100%, 38.5% 100%, 40px 25%); }
        .angle-banner .banner-inner .banner-right-angle .banner-stripe:before {
          clip-path: polygon(100px 0%, 140px 0%, 21px 206px, 10px 148px); }
        .angle-banner .banner-inner .banner-right-angle .banner-stripe:after {
          left: 1.25rem;
          top: 9.8125rem; }

  /*--ended course category page--*/
  .nav-sm-scroll {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 1rem;
    margin-bottom: 1rem; }
    .nav-sm-scroll .hr-navlist .nav-item .nav-link {
      white-space: nowrap; }

  .row-cols-sm-2 .col {
    flex: 1 auto; }

  .quick-banner {
    display: block;
    position: relative;
    --aspect-ratio:calc(9 / 21 * 100%);
    overflow: hidden; }
    .quick-banner:before {
      padding-top: var(--aspect-ratio);
      display: block;
      content: "";
      width: 100%; }
    .quick-banner > * {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center; }
    .quick-banner .banner-overlay {
      background-position: 100% 0px; }
    .quick-banner .banner-img {
      display: none; }
    .quick-banner h5 {
      font-size: 1rem;
      font-weight: 700; }
    .quick-banner h3 {
      font-size: 1.75rem;
      font-weight: 700; }
      .quick-banner h3.mb-4 {
        margin-bottom: 1rem; }

  .section-header .header-title {
    font-size: 1.5rem; }

  .general-header .header-title .arrows {
    display: none; }

  .slanding-banner .slanding-clip-frame {
    width: 100%;
    position: relative; }
    .slanding-banner .slanding-clip-frame .slanding-clip {
      clip-path: none;
      display: flex;
      align-items: center;
      justify-content: center; }
      .slanding-banner .slanding-clip-frame .slanding-clip:before {
        clip-path: none;
        width: 100%; }
      .slanding-banner .slanding-clip-frame .slanding-clip .slanding-sripe {
        display: none; }
      .slanding-banner .slanding-clip-frame .slanding-clip .slanding-clip-content {
        padding-top: 0rem;
        width: 100%;
        height: auto; }
        .slanding-banner .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header {
          height: 8.75rem;
          padding-right: 1rem; }
          .slanding-banner .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header::before {
            display: none; }
          .slanding-banner .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header .header-thumb {
            height: 4.5rem;
            width: 4.5rem;
            font-size: 4rem; }
            .slanding-banner .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header .header-thumb img,
            .slanding-banner .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header .header-thumb svg {
              max-width: 4rem;
              max-height: 4rem; }
          .slanding-banner .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header .header-info .header-title {
            font-size: 1.5rem; }
          .slanding-banner .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header .header-info .sub-note {
            font-size: 1rem; }
        .slanding-banner .slanding-clip-frame .slanding-clip .slanding-clip-content .content-body {
          padding-right: 1rem; }
          .slanding-banner .slanding-clip-frame .slanding-clip .slanding-clip-content .content-body .iconic-list--2Col .list-item {
            margin: 0.25rem 0rem ;
            font-size: 0.875rem; }

  .tabs-primary-header .nav-tabs .nav-item .nav-link {
    font-size: 1.25rem; }

  .accordion--primary .accordion-item .accordion-header .accordion-button {
    padding: 1rem;
    align-items: flex-start;
    font-size: 1rem; }

  .job-application {
    margin-bottom: 2rem; }

  .job-details-footer {
    padding-bottom: 1rem;
    margin-bottom: 2rem; }

  .label-list._2-col li {
    width: 100%; }
    .label-list._2-col li label {
      width: unset; }

  .banner-common {
    flex-flow: column-reverse;
    height: unset;
    display: flex;
    display: block;
    position: relative;
    --aspect-ratio:calc(9 / 16 * 100%);
    overflow: hidden; }
    .banner-common:before {
      padding-top: var(--aspect-ratio);
      display: block;
      content: "";
      width: 100%; }
    .banner-common > * {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center; }
    .banner-common .banner-image-frame {
      width: 100%; }
      .banner-common .banner-image-frame::before {
        display: none;
        height: 4rem;
        width: 4rem;
        left: -3%; }
      .banner-common .banner-image-frame .banner-frame-clip {
        clip-path: none;
        padding-top: 42.8571428571%; }
        .banner-common .banner-image-frame .banner-frame-clip .banner-image-clip {
          clip-path: none;
          position: absolute;
          top: 0;
          overflow: hidden; }
          .banner-common .banner-image-frame .banner-frame-clip .banner-image-clip::before {
            display: none; }
    .banner-common .banner-content-frame {
      background-color: rgba(0, 0, 0, 0.5);
      width: 100%; }
      .banner-common .banner-content-frame .job-header {
        padding-left: 0px; }
        .banner-common .banner-content-frame .job-header .job-icon-thumbs {
          width: 4rem;
          font-size: 4rem; }
          .banner-common .banner-content-frame .job-header .job-icon-thumbs i {
            font-size: 4rem; }
          .banner-common .banner-content-frame .job-header .job-icon-thumbs img,
          .banner-common .banner-content-frame .job-header .job-icon-thumbs svg {
            width: 4rem; }
        .banner-common .banner-content-frame .job-header-content {
          padding-left: 1rem; }
          .banner-common .banner-content-frame .job-header-content .job-header-title {
            font-size: 1.25rem; }
          .banner-common .banner-content-frame .job-header-content .hr-list li .btn {
            height: auto;
            white-space: nowrap;
            padding: 0.75rem 1rem ;
            font-size: 0.875rem;
            width: auto; }
      .banner-common .banner-content-frame .banner-gn-cnt .banner-gn-cnt-header-content {
        padding-right: 1rem;
        width: 42%; }
        .banner-common .banner-content-frame .banner-gn-cnt .banner-gn-cnt-header-content .punchline {
          font-size: 1rem; }
        .banner-common .banner-content-frame .banner-gn-cnt .banner-gn-cnt-header-content .header-title {
          font-size: 1.5rem; }
      .banner-common .banner-content-frame .banner-gn-cnt .banner-gn-cnt-header-intro {
        padding-left: 1rem; }
        .banner-common .banner-content-frame .banner-gn-cnt .banner-gn-cnt-header-intro p {
          font-size: 0.875rem; }
      .banner-common .banner-content-frame .banner-gn-cnt .banner-gn-cnt-footer {
        padding-left: calc(42% + 1rem); }
        .banner-common .banner-content-frame .banner-gn-cnt .banner-gn-cnt-footer .btn {
          padding: 0.75rem 1rem ;
          height: auto;
          font-size: 0.875rem;
          white-space: nowrap; }

  .card-flat {
    padding-right: 1rem; }
    .card-flat .card-container-header {
      width: 5rem; }
      .card-flat .card-container-header .card-thumb-icon {
        height: 5rem;
        width: 5rem;
        font-size: 4rem;
        clip-path: unset;
        padding: 0.75rem; }
        .card-flat .card-container-header .card-thumb-icon img {
          max-width: 4rem;
          max-height: 4rem; }
    .card-flat .card-container-body {
      padding-right: 1rem; }
      .card-flat .card-container-body .card-title {
        font-size: 1.5rem; }
        .card-flat .card-container-body .card-title a {
          font-size: 1.5rem; }
      .card-flat .card-container-body .iconic-list .list-item {
        font-size: 0.875rem; }
      .card-flat .card-container-body .sub-title {
        font-size: 0.875rem; }
      .card-flat .card-container-body .check-list .list-item {
        font-size: 0.875rem; }
    .card-flat .card-container-footer {
      display: none; } }
@media screen and (min-width: 576px) and (max-width: 767.98px) {
  .resp-disp-none {
    display: none !important; }

  .p-xs-0 {
    padding: 0px; }

  .pt-sm-0 {
    padding-top: 0px; }

  .resp-column-reverse {
    flex-direction: column-reverse !important; }

  .page-header .brand-logo {
    width: 9.375rem; }
    .page-header .brand-logo--link {
      width: 6.125rem;
      padding-left: 0px;
      padding-right: 0px; }
      .page-header .brand-logo--link img {
        max-width: 6.125rem;
        height: auto; }

  .header-content--top .list-group .list-group-item:not(:first-child) {
    display: none; }
  .header-content--top .social-link .list-item:first-child {
    display: none; }

  .navbar--primary #primaryNavbar {
    background-color: #FFFFFF;
    position: fixed;
    top: 0px;
    right: 0px;
    height: 100vh;
    width: 20rem;
    z-index: 950;
    -moz-box-shadow: -20px 0px 44px 51px rgba(0, 12, 34, 0.2);
    -webkit-box-shadow: -20px 0px 44px 51px rgba(0, 12, 34, 0.2);
    box-shadow: -20px 0px 44px 51px rgba(0, 12, 34, 0.2);
    transition: right 500ms ease-in-out; }
    .navbar--primary #primaryNavbar.collapsing {
      right: -20rem;
      transition: right 500ms ease-in-out; }
      .navbar--primary #primaryNavbar.collapsing .btn-closed {
        opacity: 0; }
    .navbar--primary #primaryNavbar.show {
      right: 0px;
      transition: right 500ms ease-in-out; }
    .navbar--primary #primaryNavbar.collapse:not(.show) {
      display: none; }
    .navbar--primary #primaryNavbar .navbar-nav {
      align-items: flex-start; }
      .navbar--primary #primaryNavbar .navbar-nav .nav-item {
        width: 100%; }
        .navbar--primary #primaryNavbar .navbar-nav .nav-item .nav-link {
          line-height: 1.5em;
          padding: 1rem 1.5rem ;
          padding-left: 3.5rem;
          display: flex;
          align-items: center;
          justify-content: flex-start;
          font-size: 1rem; }
          .navbar--primary #primaryNavbar .navbar-nav .nav-item .nav-link::before {
            content: "\f124";
            font-family: "Font Awesome 5 Solid";
            position: absolute;
            left: 24px; }
  .navbar--primary .navbar-nav .nav-item.dropdown .dropdown-menu {
    position: absolute;
    left: inherit;
    right: 0px; }
    .navbar--primary .navbar-nav .nav-item.dropdown .dropdown-menu .navbar-subNav .nav-item.dropdown-item.dropdown .dropdown-menu--subMenus {
      position: relative;
      left: 0px; }

  .company-features {
    grid-template-columns: repeat(2, 1fr); }
    .company-features .features {
      margin-top: 0rem !important; }
      .company-features .features-icon {
        height: 8rem;
        width: 8rem; }
      .company-features .features:first-child .features-header {
        justify-content: center;
        padding-left: 0rem; }
      .company-features .features:last-child .features-header {
        justify-content: center;
        padding-right: 0rem; }
      .company-features .features:after {
        display: none; }

  .grid-6-col {
    grid-template-columns: repeat(3, 1fr);
    padding-left: 0.75rem;
    padding-right: 0.75rem; }

  .course-item {
    margin-bottom: 1rem;
    margin-top: 1rem; }
    .course-item .course-body {
      margin-top: -5rem;
      min-height: 16rem; }
      .course-item .course-body .body-content {
        padding-top: 7rem; }
        .course-item .course-body .body-content .btn-silver-circle {
          background-color: #76B900;
          color: #FFFFFF; }
          .course-item .course-body .body-content .btn-silver-circle:before {
            border-color: #76B900; }

  .spotlight-grid-5,
  .spotlight-grid-6 {
    grid-template-columns: repeat(3, 1fr);
    padding-left: 0.75rem;
    padding-right: 0.75rem; }

  .card-spotlight .spotlight-body {
    margin-top: -4.5rem;
    min-height: 15rem; }
    .card-spotlight .spotlight-body .body-content {
      padding: 1rem;
      padding-top: 7rem; }
      .card-spotlight .spotlight-body .body-content h6,
      .card-spotlight .spotlight-body .body-content h5 {
        font-size: 1rem; }

  .skewed-banners {
    flex-flow: column; }
    .skewed-banners .banner-content {
      padding: 1.5rem;
      flex-flow: column wrap;
      width: 100%; }
      .skewed-banners .banner-content .content-container .banner-title {
        font-size: 2.5rem; }
      .skewed-banners .banner-content .content-container .sub-title {
        font-size: 1.25rem; }
    .skewed-banners .thumb-iconin-list.list-2col .list-item {
      width: 100%; }
    .skewed-banners .skew-banner {
      display: none;
      width: 100%;
      padding-top: 56.25%;
      -webkit-transform: skew(0deg);
      -moz-transform: skew(0deg);
      -ms-transform: skew(0deg);
      -o-transform: skew(0deg);
      transform: skew(0deg); }
      .skewed-banners .skew-banner .banner-image {
        top: 0px; }
      .skewed-banners .skew-banner .banner-top {
        display: none; }

  .left-circle-block {
    margin-top: 1rem;
    margin-bottom: 1rem; }

  .wave-banner {
    padding-top: 56.25%; }
    .wave-banner .banner-content {
      align-items: center; }
      .wave-banner .banner-content .banner-title {
        font-size: 2rem;
        margin-bottom: 1rem; }
      .wave-banner .banner-content .sub-title {
        font-size: 1.375rem; }
      .wave-banner .banner-content .btn {
        padding: 0.75rem 1rem ; }

  .section-about .about-intro {
    flex-flow: column-reverse;
    align-items: flex-start;
    justify-content: flex-start; }
    .section-about .about-intro::before {
      height: 150px;
      clip-path: polygon(100% 34%, 100% 34%, 30% 100%, 0% 52%, 30% 90%);
      z-index: 250; }
    .section-about .about-intro::after {
      clip-path: polygon(100% 0%, 163% 83%, 30% 100%, 0% 94%, 0% 0%); }
    .section-about .about-intro .intro-image-clip {
      width: 100%;
      height: auto;
      margin-bottom: 1.5rem; }
      .section-about .about-intro .intro-image-clip .clip-shade {
        padding-top: 75%; }
        .section-about .about-intro .intro-image-clip .clip-shade .clip-image-frame {
          position: absolute;
          top: 0px;
          height: calc(100% - 10px); }
    .section-about .about-intro .intro-content {
      min-height: 10rem;
      height: auto;
      padding-right: 0px;
      padding-bottom: 4rem;
      width: 100%; }
      .section-about .about-intro .intro-content .content-title {
        font-size: 2rem;
        margin-bottom: 1.5rem; }

  .grid-5-col {
    grid-template-columns: repeat(2, 1fr); }
    .grid-5-col .card-accent {
      margin: 1rem 0rem ; }

  .slanding-banner .slanding-clip-frame {
    width: 100%;
    position: relative; }
    .slanding-banner .slanding-clip-frame .slanding-clip {
      clip-path: none;
      display: flex;
      align-items: center;
      justify-content: center; }
      .slanding-banner .slanding-clip-frame .slanding-clip:before {
        clip-path: none; }
      .slanding-banner .slanding-clip-frame .slanding-clip .slanding-sripe {
        display: none; }
      .slanding-banner .slanding-clip-frame .slanding-clip .slanding-clip-content {
        padding-top: 0rem;
        width: 100%;
        height: auto; }
        .slanding-banner .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header {
          height: 8.75rem;
          padding-right: 1rem; }
          .slanding-banner .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header::before {
            display: none; }
          .slanding-banner .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header .header-thumb {
            height: 4.5rem;
            width: 4.5rem;
            font-size: 4rem; }
            .slanding-banner .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header .header-thumb img,
            .slanding-banner .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header .header-thumb svg {
              max-width: 4rem;
              max-height: 4rem; }
          .slanding-banner .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header .header-info .header-title {
            font-size: 1.5rem; }
          .slanding-banner .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header .header-info .sub-note {
            font-size: 1rem; }
        .slanding-banner .slanding-clip-frame .slanding-clip .slanding-clip-content .content-body {
          padding-right: 1rem; }
          .slanding-banner .slanding-clip-frame .slanding-clip .slanding-clip-content .content-body .iconic-list--2Col .list-item {
            margin: 0.25rem 0rem ;
            font-size: 0.875rem; }

  /*--course category page--*/
  .angle-banner {
    height: auto; }
    .angle-banner .banner-inner {
      flex-flow: column-reverse; }
      .angle-banner .banner-inner .banner-left {
        width: 100%;
        padding: 1.5rem 0rem ; }
        .angle-banner .banner-inner .banner-left .banner-content-thumbs {
          padding: 0px; }
          .angle-banner .banner-inner .banner-left .banner-content-thumbs .icon-thumbs {
            width: 4rem;
            font-size: 4rem; }
            .angle-banner .banner-inner .banner-left .banner-content-thumbs .icon-thumbs i {
              font-size: 4rem; }
            .angle-banner .banner-inner .banner-left .banner-content-thumbs .icon-thumbs img {
              max-width: 64px; }
        .angle-banner .banner-inner .banner-left .banner-content-thumbs-content {
          padding-left: 1rem; }
          .angle-banner .banner-inner .banner-left .banner-content-thumbs-content .header-title {
            font-size: 1.5rem; }
          .angle-banner .banner-inner .banner-left .banner-content-thumbs-content h1 {
            font-size: 1.25rem; }
        .angle-banner .banner-inner .banner-left .banner-content .banner-headline {
          font-size: 1.5rem; }
      .angle-banner .banner-inner .banner-right-angle {
        display: none;
        width: 100%; }
        .angle-banner .banner-inner .banner-right-angle .clip-frame:before {
          clip-path: polygon(90px 0%, 100% 0%, 100% 100%, 37% 100%, 30px 25%); }
        .angle-banner .banner-inner .banner-right-angle .clip-frame .angle-imageholder {
          clip-path: polygon(100px 0%, 100% 0%, 100% 100%, 38.5% 100%, 40px 25%); }
        .angle-banner .banner-inner .banner-right-angle .banner-stripe:before {
          clip-path: polygon(100px 0%, 140px 0%, 21px 206px, 10px 148px); }
        .angle-banner .banner-inner .banner-right-angle .banner-stripe:after {
          left: 1.25rem;
          top: 9.8125rem; }

  /*--ended course category page--*/
  .quick-banner {
    display: block;
    position: relative;
    --aspect-ratio:calc(9 / 24 * 100%);
    overflow: hidden; }
    .quick-banner:before {
      padding-top: var(--aspect-ratio);
      display: block;
      content: "";
      width: 100%; }
    .quick-banner > * {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center; }
    .quick-banner .banner-overlay {
      background-position: 100% 0px; }
    .quick-banner .banner-img {
      display: none !important; }
    .quick-banner h5 {
      font-size: 1rem;
      font-weight: 700; }
    .quick-banner h3 {
      font-size: 1.75rem;
      font-weight: 700; }
      .quick-banner h3.mb-4 {
        margin-bottom: 1rem; }

  .nav-sm-scroll {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 1rem;
    margin-bottom: 1rem; }
    .nav-sm-scroll .hr-navlist .nav-item .nav-link {
      white-space: nowrap; }

  .job-application {
    margin-bottom: 2rem; }

  .banner-common {
    flex-flow: column-reverse;
    height: unset;
    display: flex;
    display: block;
    position: relative;
    --aspect-ratio:calc(9 / 16 * 100%);
    overflow: hidden; }
    .banner-common:before {
      padding-top: var(--aspect-ratio);
      display: block;
      content: "";
      width: 100%; }
    .banner-common > * {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center; }
    .banner-common .banner-image-frame {
      width: 100%; }
      .banner-common .banner-image-frame::before {
        display: none;
        height: 4rem;
        width: 4rem;
        left: -3%; }
      .banner-common .banner-image-frame .banner-frame-clip {
        clip-path: none;
        padding-top: 42.8571428571%; }
        .banner-common .banner-image-frame .banner-frame-clip .banner-image-clip {
          clip-path: none;
          position: absolute;
          top: 0;
          overflow: hidden; }
          .banner-common .banner-image-frame .banner-frame-clip .banner-image-clip::before {
            display: none; }
          .banner-common .banner-image-frame .banner-frame-clip .banner-image-clip img {
            width: 100%; }
    .banner-common .banner-content-frame {
      background-color: rgba(0, 0, 0, 0.5);
      width: 100%; }
      .banner-common .banner-content-frame .job-header {
        padding-left: 0px; }
        .banner-common .banner-content-frame .job-header .job-icon-thumbs {
          width: 4rem;
          font-size: 4rem; }
          .banner-common .banner-content-frame .job-header .job-icon-thumbs i {
            font-size: 4rem; }
          .banner-common .banner-content-frame .job-header .job-icon-thumbs img,
          .banner-common .banner-content-frame .job-header .job-icon-thumbs svg {
            width: 4rem; }
        .banner-common .banner-content-frame .job-header-content {
          padding-left: 1rem; }
          .banner-common .banner-content-frame .job-header-content .job-header-title {
            font-size: 1.25rem; }
          .banner-common .banner-content-frame .job-header-content .hr-list li .btn {
            height: auto;
            white-space: nowrap;
            padding: 0.75rem 1rem ;
            font-size: 0.875rem;
            width: auto; }
      .banner-common .banner-content-frame .banner-gn-cnt .banner-gn-cnt-header-content {
        padding-right: 1rem;
        width: 42%; }
        .banner-common .banner-content-frame .banner-gn-cnt .banner-gn-cnt-header-content .punchline {
          font-size: 1rem; }
        .banner-common .banner-content-frame .banner-gn-cnt .banner-gn-cnt-header-content .header-title {
          font-size: 1.5rem; }
      .banner-common .banner-content-frame .banner-gn-cnt .banner-gn-cnt-header-intro {
        padding-left: 1rem; }
        .banner-common .banner-content-frame .banner-gn-cnt .banner-gn-cnt-header-intro p {
          font-size: 0.875rem; }
      .banner-common .banner-content-frame .banner-gn-cnt .banner-gn-cnt-footer {
        padding-left: calc(42% + 1rem); }
        .banner-common .banner-content-frame .banner-gn-cnt .banner-gn-cnt-footer .btn {
          padding: 0.75rem 1rem ;
          height: auto;
          font-size: 0.875rem;
          white-space: nowrap; }

  .label-list._2-col li {
    width: 100%; }
    .label-list._2-col li label {
      width: unset; }

  .card-flat {
    padding-right: 1rem; }
    .card-flat .card-container-header {
      width: 5rem; }
      .card-flat .card-container-header .card-thumb-icon {
        height: 5rem;
        width: 5rem;
        font-size: 4rem;
        clip-path: unset;
        padding: 0.75rem; }
        .card-flat .card-container-header .card-thumb-icon img {
          max-width: 4rem;
          max-height: 4rem; }
    .card-flat .card-container-body {
      padding-right: 1rem; }
      .card-flat .card-container-body .card-title {
        font-size: 1.5rem; }
        .card-flat .card-container-body .card-title a {
          font-size: 1.5rem; }
      .card-flat .card-container-body .iconic-list .list-item {
        font-size: 0.875rem; }
      .card-flat .card-container-body .sub-title {
        font-size: 0.875rem; }
      .card-flat .card-container-body .check-list .list-item {
        font-size: 0.875rem; }
    .card-flat .card-container-footer {
      display: none; }

  .packman-block .packman-block-header {
    height: 30%;
    width: 30%;
    padding: 0.25rem; }
  .packman-block .packman-block-body {
    height: 80%;
    width: 80%; }
    .packman-block .packman-block-body .block-content p.sub-title {
      white-space: normal; }
  .packman-block .circle-outline {
    height: calc(80% + 24px);
    width: calc(80% + 24px); } }
@media screen and (min-width: 768px) and (max-width: 991.98px) {
  .resp-disp-none {
    display: none !important; }

  .resp-column-reverse {
    flex-direction: column-reverse !important; }

  .page-header .brand-logo {
    width: 9.375rem; }
    .page-header .brand-logo--link {
      width: 6.125rem;
      padding-left: 0px;
      padding-right: 0px; }
      .page-header .brand-logo--link img {
        max-width: 6.125rem;
        height: auto; }

  .header-content--top .list-group .list-group-item:not(:first-child) {
    display: none; }
  .header-content--top .social-link .list-item:first-child {
    display: none; }

  .navbar--primary #primaryNavbar {
    background-color: #FFFFFF;
    position: fixed;
    top: 0px;
    right: 0px;
    height: 100vh;
    width: 20rem;
    z-index: 950;
    -moz-box-shadow: -20px 0px 44px 51px rgba(0, 12, 34, 0.2);
    -webkit-box-shadow: -20px 0px 44px 51px rgba(0, 12, 34, 0.2);
    box-shadow: -20px 0px 44px 51px rgba(0, 12, 34, 0.2);
    transition: right 500ms ease-in-out; }
    .navbar--primary #primaryNavbar.collapsing {
      right: -20rem;
      transition: right 500ms ease-in-out; }
      .navbar--primary #primaryNavbar.collapsing .btn-closed {
        opacity: 0; }
    .navbar--primary #primaryNavbar.show {
      right: 0px;
      transition: right 500ms ease-in-out; }
    .navbar--primary #primaryNavbar.collapse:not(.show) {
      display: none; }
    .navbar--primary #primaryNavbar .navbar-nav {
      align-items: flex-start; }
      .navbar--primary #primaryNavbar .navbar-nav .nav-item {
        width: 100%; }
        .navbar--primary #primaryNavbar .navbar-nav .nav-item .nav-link {
          line-height: 1.5em;
          padding: 1rem 1.5rem ;
          padding-left: 3.5rem;
          display: flex;
          align-items: center;
          justify-content: flex-start;
          font-size: 1rem; }
          .navbar--primary #primaryNavbar .navbar-nav .nav-item .nav-link::before {
            content: "\f124";
            font-family: "Font Awesome 5 Solid";
            position: absolute;
            left: 24px; }
  .navbar--primary .navbar-nav .nav-item.dropdown .dropdown-menu {
    position: absolute;
    left: inherit;
    right: 0px; }
    .navbar--primary .navbar-nav .nav-item.dropdown .dropdown-menu .navbar-subNav .nav-item.dropdown-item.dropdown .dropdown-menu--subMenus {
      position: relative;
      left: 0px; }

  .company-features {
    grid-template-columns: repeat(2, 1fr); }
    .company-features .features {
      margin-top: 0rem !important; }
      .company-features .features-icon {
        height: 8rem;
        width: 8rem; }
      .company-features .features:first-child .features-header {
        justify-content: center;
        padding-left: 0rem; }
      .company-features .features:last-child .features-header {
        justify-content: center;
        padding-right: 0rem; }
      .company-features .features:after {
        display: none; }

  .grid-6-col {
    grid-template-columns: repeat(3, 1fr);
    padding-left: 0.75rem;
    padding-right: 0.75rem; }

  .course-item {
    margin-bottom: 1rem;
    margin-top: 1rem; }
    .course-item .course-body {
      margin-top: -5rem;
      min-height: 16rem; }
      .course-item .course-body .body-content {
        padding-top: 7rem; }
        .course-item .course-body .body-content .btn-silver-circle {
          background-color: #76B900;
          color: #FFFFFF; }
          .course-item .course-body .body-content .btn-silver-circle:before {
            border-color: #76B900; }

  .spotlight-grid-5,
  .spotlight-grid-6 {
    grid-template-columns: repeat(3, 1fr);
    padding-left: 0.75rem;
    padding-right: 0.75rem; }

  .card-spotlight .spotlight-body {
    margin-top: -4.5rem;
    min-height: 15rem; }
    .card-spotlight .spotlight-body .body-content {
      padding: 1rem;
      padding-top: 7rem; }
      .card-spotlight .spotlight-body .body-content h6,
      .card-spotlight .spotlight-body .body-content h5 {
        font-size: 1rem; }

  .skewed-banners {
    flex-flow: column; }
    .skewed-banners .banner-content {
      padding: 1.5rem;
      flex-flow: column wrap;
      width: 100%; }
      .skewed-banners .banner-content .content-container .banner-title {
        font-size: 2.5rem; }
      .skewed-banners .banner-content .content-container .sub-title {
        font-size: 1.25rem; }
    .skewed-banners .skew-banner {
      display: none;
      width: 100%;
      padding-top: 56.25%;
      -webkit-transform: skew(0deg);
      -moz-transform: skew(0deg);
      -ms-transform: skew(0deg);
      -o-transform: skew(0deg);
      transform: skew(0deg); }
      .skewed-banners .skew-banner .banner-image {
        top: 0px; }
      .skewed-banners .skew-banner .banner-top {
        display: none; }

  .left-circle-block {
    margin-top: 1rem;
    margin-bottom: 1rem; }

  .wave-banner {
    padding-top: 56.25%; }
    .wave-banner .banner-content {
      align-items: center; }
      .wave-banner .banner-content .banner-title {
        font-size: 2rem;
        margin-bottom: 1rem; }
      .wave-banner .banner-content .sub-title {
        font-size: 1.375rem; }
      .wave-banner .banner-content .btn {
        padding: 0.75rem 1rem ; }

  .section-about .about-intro {
    flex-flow: column-reverse;
    align-items: flex-start;
    justify-content: flex-start; }
    .section-about .about-intro::before {
      height: 150px;
      clip-path: polygon(100% 34%, 100% 34%, 30% 100%, 0% 52%, 30% 90%);
      z-index: 250; }
    .section-about .about-intro::after {
      clip-path: polygon(100% 0%, 163% 83%, 30% 100%, 0% 94%, 0% 0%); }
    .section-about .about-intro .intro-image-clip {
      width: 100%;
      height: auto;
      margin-bottom: 1.5rem; }
      .section-about .about-intro .intro-image-clip .clip-shade {
        padding-top: 75%; }
        .section-about .about-intro .intro-image-clip .clip-shade .clip-image-frame {
          position: absolute;
          top: 0px;
          height: calc(100% - 10px); }
    .section-about .about-intro .intro-content {
      min-height: 10rem;
      height: auto;
      padding-right: 0px;
      padding-bottom: 4rem;
      width: 100%; }
      .section-about .about-intro .intro-content .content-title {
        font-size: 2rem;
        margin-bottom: 1.5rem; }

  .grid-5-col {
    grid-template-columns: repeat(2, 1fr); }
    .grid-5-col .card-accent {
      margin: 1rem 0rem ; }

  .slanding-banner .slanding-clip-frame {
    width: 100%;
    position: relative; }
    .slanding-banner .slanding-clip-frame .slanding-clip {
      clip-path: none;
      display: flex;
      align-items: center;
      justify-content: center; }
      .slanding-banner .slanding-clip-frame .slanding-clip:before {
        clip-path: none; }
      .slanding-banner .slanding-clip-frame .slanding-clip .slanding-sripe {
        display: none; }
      .slanding-banner .slanding-clip-frame .slanding-clip .slanding-clip-content {
        padding-top: 0rem;
        width: 100%;
        height: auto; }
        .slanding-banner .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header {
          height: 8.75rem;
          padding-right: 1rem; }
          .slanding-banner .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header::before {
            display: none; }
          .slanding-banner .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header .header-thumb {
            height: 4.5rem;
            width: 4.5rem;
            font-size: 4rem; }
            .slanding-banner .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header .header-thumb img,
            .slanding-banner .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header .header-thumb svg {
              max-width: 4rem;
              max-height: 4rem; }
          .slanding-banner .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header .header-info .header-title {
            font-size: 1.5rem; }
          .slanding-banner .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header .header-info .sub-note {
            font-size: 1rem; }
        .slanding-banner .slanding-clip-frame .slanding-clip .slanding-clip-content .content-body {
          padding-right: 1rem; }
          .slanding-banner .slanding-clip-frame .slanding-clip .slanding-clip-content .content-body .iconic-list--2Col .list-item {
            margin: 0.25rem 0rem ;
            font-size: 0.875rem; }

  /*--course category page--*/
  .angle-banner {
    height: auto; }
    .angle-banner .banner-inner {
      flex-flow: column-reverse; }
      .angle-banner .banner-inner .banner-left {
        width: 100%;
        padding: 1.5rem 0rem ; }
        .angle-banner .banner-inner .banner-left .banner-content-thumbs {
          padding: 0px; }
          .angle-banner .banner-inner .banner-left .banner-content-thumbs .icon-thumbs {
            width: 4rem;
            font-size: 4rem; }
            .angle-banner .banner-inner .banner-left .banner-content-thumbs .icon-thumbs i {
              font-size: 4rem; }
            .angle-banner .banner-inner .banner-left .banner-content-thumbs .icon-thumbs img {
              max-width: 64px; }
        .angle-banner .banner-inner .banner-left .banner-content-thumbs-content {
          padding-left: 1rem; }
          .angle-banner .banner-inner .banner-left .banner-content-thumbs-content .header-title {
            font-size: 1.5rem; }
          .angle-banner .banner-inner .banner-left .banner-content-thumbs-content h1 {
            font-size: 1.25rem; }
        .angle-banner .banner-inner .banner-left .banner-content .banner-headline {
          font-size: 1.5rem; }
      .angle-banner .banner-inner .banner-right-angle {
        display: none;
        width: 100%; }
        .angle-banner .banner-inner .banner-right-angle .clip-frame:before {
          clip-path: polygon(90px 0%, 100% 0%, 100% 100%, 37% 100%, 30px 25%); }
        .angle-banner .banner-inner .banner-right-angle .clip-frame .angle-imageholder {
          clip-path: polygon(100px 0%, 100% 0%, 100% 100%, 38.5% 100%, 40px 25%); }
        .angle-banner .banner-inner .banner-right-angle .banner-stripe:before {
          clip-path: polygon(100px 0%, 140px 0%, 21px 206px, 10px 148px); }
        .angle-banner .banner-inner .banner-right-angle .banner-stripe:after {
          left: 1.25rem;
          top: 9.8125rem; }

  /*--ended course category page--*/
  .quick-banner {
    display: block;
    position: relative;
    --aspect-ratio:calc(9 / 24 * 100%);
    overflow: hidden; }
    .quick-banner:before {
      padding-top: var(--aspect-ratio);
      display: block;
      content: "";
      width: 100%; }
    .quick-banner > * {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center; }
    .quick-banner .banner-overlay {
      background-position: 100% 0px; }
    .quick-banner .banner-img {
      display: none !important; }
    .quick-banner h5 {
      font-size: 1rem;
      font-weight: 700; }
    .quick-banner h3 {
      font-size: 1.75rem;
      font-weight: 700; }
      .quick-banner h3.mb-4 {
        margin-bottom: 1rem; }

  .nav-sm-scroll {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 1rem;
    margin-bottom: 1rem; }
    .nav-sm-scroll .hr-navlist .nav-item .nav-link {
      white-space: nowrap; }

  .job-application {
    margin-bottom: 2rem; }

  .banner-common {
    display: flex;
    flex-flow: column-reverse; }
    .banner-common .banner-image-frame {
      width: 100%; }
      .banner-common .banner-image-frame::before {
        display: none;
        height: 4rem;
        width: 4rem;
        left: -3%; }
      .banner-common .banner-image-frame .banner-frame-clip {
        clip-path: none;
        padding-top: 42.8571428571%; }
        .banner-common .banner-image-frame .banner-frame-clip .banner-image-clip {
          clip-path: none;
          position: absolute;
          top: 0;
          overflow: hidden; }
          .banner-common .banner-image-frame .banner-frame-clip .banner-image-clip::before {
            display: none; }
          .banner-common .banner-image-frame .banner-frame-clip .banner-image-clip img {
            width: 100%; }
    .banner-common .banner-content-frame {
      background-color: rgba(0, 0, 0, 0.5);
      width: 100%; }
      .banner-common .banner-content-frame .job-header {
        padding-left: 0px; }
        .banner-common .banner-content-frame .job-header .job-icon-thumbs {
          width: 4rem;
          font-size: 4rem; }
          .banner-common .banner-content-frame .job-header .job-icon-thumbs i {
            font-size: 4rem; }
          .banner-common .banner-content-frame .job-header .job-icon-thumbs img,
          .banner-common .banner-content-frame .job-header .job-icon-thumbs svg {
            width: 4rem; }
        .banner-common .banner-content-frame .job-header-content {
          padding-left: 1rem; }
          .banner-common .banner-content-frame .job-header-content .job-header-title {
            font-size: 1.25rem; }
          .banner-common .banner-content-frame .job-header-content .hr-list li .btn {
            height: auto;
            white-space: nowrap;
            padding: 0.75rem 1rem ;
            font-size: 0.875rem;
            width: auto; }
      .banner-common .banner-content-frame .banner-gn-cnt .banner-gn-cnt-header-content {
        padding-right: 1rem;
        width: 42%; }
        .banner-common .banner-content-frame .banner-gn-cnt .banner-gn-cnt-header-content .punchline {
          font-size: 1rem; }
        .banner-common .banner-content-frame .banner-gn-cnt .banner-gn-cnt-header-content .header-title {
          font-size: 1.5rem; }
      .banner-common .banner-content-frame .banner-gn-cnt .banner-gn-cnt-header-intro {
        padding-left: 1rem; }
        .banner-common .banner-content-frame .banner-gn-cnt .banner-gn-cnt-header-intro p {
          font-size: 0.875rem; }
      .banner-common .banner-content-frame .banner-gn-cnt .banner-gn-cnt-footer {
        padding-left: calc(42% + 1rem); }
        .banner-common .banner-content-frame .banner-gn-cnt .banner-gn-cnt-footer .btn {
          padding: 0.75rem 1rem ;
          height: auto;
          font-size: 0.875rem;
          white-space: nowrap; }

  .label-list._2-col li {
    width: 100%; }
    .label-list._2-col li label {
      width: unset; }

  .card-flat {
    padding-right: 1rem; }
    .card-flat .card-container-header {
      width: 5rem; }
      .card-flat .card-container-header .card-thumb-icon {
        height: 5rem;
        width: 5rem;
        font-size: 4rem;
        clip-path: unset;
        padding: 0.75rem; }
        .card-flat .card-container-header .card-thumb-icon img {
          max-width: 4rem;
          max-height: 4rem; }
    .card-flat .card-container-body {
      padding-right: 1rem; }
      .card-flat .card-container-body .card-title {
        font-size: 1.5rem; }
        .card-flat .card-container-body .card-title a {
          font-size: 1.5rem; }
      .card-flat .card-container-body .iconic-list .list-item {
        font-size: 0.875rem; }
      .card-flat .card-container-body .sub-title {
        font-size: 0.875rem; }
      .card-flat .card-container-body .check-list .list-item {
        font-size: 0.875rem; }
    .card-flat .card-container-footer {
      display: none; }

  .packman-block .packman-block-header {
    height: 30%;
    width: 30%;
    padding: 0.25rem; }
  .packman-block .packman-block-body {
    height: 80%;
    width: 80%; }
    .packman-block .packman-block-body .block-content p.sub-title {
      white-space: normal; }
  .packman-block .circle-outline {
    height: calc(80% + 24px);
    width: calc(80% + 24px); } }
@media screen and (min-width: 992px) and (max-width: 1199.98px) {
  .page-header .brand-logo {
    width: 9.375rem; }
    .page-header .brand-logo--link {
      width: 6.125rem;
      padding-left: 0px;
      padding-right: 0px; }
      .page-header .brand-logo--link img {
        max-width: 6.125rem;
        height: auto; }

  .navbar--primary #primaryNavbar .navbar-nav {
    flex-grow: 1;
    justify-content: space-between;
    padding-right: 0.75rem; }
    .navbar--primary #primaryNavbar .navbar-nav .nav-item {
      flex: 1 1 auto;
      text-align: center; }
      .navbar--primary #primaryNavbar .navbar-nav .nav-item .nav-link {
        padding: 0.625rem 0.5rem ;
        width: 100%; } }
@media screen and (min-width: 1400px) {
  .container-xxl {
    max-width: 83.875rem; }

  .home-slider {
    display: block;
    position: relative;
    --aspect-ratio:calc(5 / 16 * 100%);
    overflow: hidden; }
    .home-slider:before {
      padding-top: var(--aspect-ratio);
      display: block;
      content: "";
      width: 100%; }
    .home-slider > * {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center; }
    .home-slider .ws_images {
      position: absolute !important;
      max-height: unset !important;
      max-height: 100% !important; }

  .banner-general {
    padding-top: 25%; }

  .slanding-clip-frame .slanding-clip .slanding-clip-content {
    padding-top: 7.5rem; }
    .slanding-clip-frame .slanding-clip .slanding-clip-content .content-header::before {
      height: 7rem;
      width: 7rem; }

  .banner-common .banner-image-frame .banner-frame-clip {
    clip-path: polygon(28% 0%, 100% 0%, 100% 100%, 0% 100%); }
    .banner-common .banner-image-frame .banner-frame-clip .banner-image-clip {
      clip-path: polygon(32.8% 0%, 100% 0%, 100% 100%, 30% 100%, 15.3% 65%); } }
@media screen and (min-width: 1200px) {
  .floating-footer-bar {
    display: none; } }

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