/* ======================
START OF MAIN SCSS FILE FOR ASTRO WEBSITE
=========================

TABLE OF INDEX:

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

/* make sure to set some focus styles for accessibility */
:focus {
  outline: 0;
}

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

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 * Known issue: no IE 6 support.
 */
[hidden] {
  display: none;
}

/**
 * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-size: 100%; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -ms-text-size-adjust: 100%; /* 2 */
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/**
 * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improve image quality when scaled in IE 7.
 */
img {
  border: 0; /* 1 */
  -ms-interpolation-mode: bicubic; /* 2 */
  vertical-align: middle;
  max-width: 100%;
}

::-moz-selection {
  background: #20065f;
  text-shadow: none;
  color: #ffffff;
}

::selection {
  background: #20065f;
  color: #ffffff;
  text-shadow: none;
}

/********* utility headings ************/
/************* Gradient Mixin *****************/
/***************** font-weight ***********************/
/************ common property mixins ***************/
.btn {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 14px 20px;
  cursor: pointer;
  border-radius: 0;
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  -moz-transition: all ease-in-out 300ms;
  -ms-transition: all ease-in-out 300ms;
  white-space: nowrap;
  font-family: "Source Sans 3", sans-serif;
  position: relative;
  min-width: 120px;
  overflow: hidden;
}
.btn span {
  z-index: 3;
  position: relative;
  will-change: transform;
}
.btn.btn-size-lg {
  font-size: 20px;
}
.btn:after {
  content: "";
  width: 0%;
  height: 100%;
  display: block;
  position: absolute;
  left: -10%;
  opacity: 0;
  top: 0;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
}
.btn:before {
  content: "";
  width: 0%;
  height: 100%;
  display: block;
  position: absolute;
  left: -10%;
  opacity: 1;
  top: 0;
  z-index: 2;
  transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}
.btn:hover:before {
  opacity: 1;
  width: 116%;
}
.btn:hover:after {
  opacity: 1;
  width: 120%;
}
.btn.btn-themePrimary {
  color: #ffffff;
  border: 1px solid #091E3F;
  background-color: #091E3F;
}
.btn.btn-themePrimary:after {
  background-color: #0f336c;
}
.btn.btn-themePrimary:before {
  background-color: #030912;
}
.btn.btn-themePrimary:hover {
  background-color: #030912;
  color: #ffffff;
  border: 1px solid #030912;
}
.btn.btn-themePrimary.withShadow {
  box-shadow: 0px 10px 24px 0px rgba(82, 165, 70, 0.24);
}
.btn.btn-lightGreen {
  color: #ffffff;
  border: 1px solid #4CDDD4;
  background-color: #4CDDD4;
}
.btn.btn-lightGreen:after {
  background-color: #77e5de;
}
.btn.btn-lightGreen:before {
  background-color: #27cfc4;
}
.btn.btn-lightGreen:hover {
  background-color: #27cfc4;
  color: #ffffff;
  border: 1px solid #27cfc4;
}
.btn.btn-lightGreen.withShadow {
  box-shadow: 0px 10px 24px 0px rgba(82, 165, 70, 0.24);
}
.btn.btn-border-themePrimary {
  color: #091E3F;
  border: 2px solid #091E3F;
  background-color: transparent;
}
.btn.btn-border-themePrimary:after {
  background-color: #0f336c;
}
.btn.btn-border-themePrimary:before {
  background-color: #091E3F;
}
.btn.btn-border-themePrimary:hover {
  background-color: #091E3F;
  color: #ffffff;
  border: 2px solid #091E3F;
}
.btn.btn-border-themePrimary.whiteBg {
  background-color: #ffffff;
}
.btn.btn-white {
  color: #091E3F;
  border: 2px solid #ffffff;
  background-color: #ffffff;
}
.btn.btn-white:after {
  background-color: #8d8d8d;
}
.btn.btn-white:before {
  background-color: #cccccc;
}
.btn.btn-white:hover {
  background-color: #cccccc;
  color: #091E3F;
  border: 2px solid #cccccc;
}
.btn.btn-white.withShadow {
  box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, 0.14);
}
.btn.btn-border-white {
  color: #ffffff;
  border: 2px solid #ffffff;
  background-color: transparent;
}
.btn.btn-border-white:after {
  background-color: #cccccc;
}
.btn.btn-border-white:before {
  background-color: #ffffff;
}
.btn.btn-border-white:hover {
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #ffffff;
}
.c-wipe-mask {
  background-color: #737373;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

@media screen and (min-width: 1200px) {
  .aos-init {
    transition-duration: 0.5s;
    transition-timing-function: ease;
  }
  [data-aos=c-wipe-down] {
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
    transition-property: -webkit-clip-path;
    transition-property: clip-path;
    transition-property: clip-path, -webkit-clip-path;
  }
  .section.fp-section.active [data-aos=c-wipe-down] {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    transition-delay: 0.3s;
  }
  [data-aos=c-wipe-down].aos-animate {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  [data-aos=c-wipe-right] {
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
    transition-property: -webkit-clip-path;
    transition-property: clip-path;
    transition-property: clip-path, -webkit-clip-path;
  }
  [data-aos=c-wipe-right].aos-animate {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  .section.fp-section.active [data-aos=c-wipe-right] {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    transition-delay: 0.3s;
  }
  [data-aos=c-wipe-left] {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
    transition-property: -webkit-clip-path;
    transition-property: clip-path;
    transition-property: clip-path, -webkit-clip-path;
  }
  [data-aos=c-wipe-left].aos-animate {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  .section.fp-section.active [data-aos=c-wipe-left] {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    transition-delay: 0.3s;
  }
  .section.fp-section.active [data-aos^=fade][data-aos^=fade],
  .section.fp-section.isSeen [data-aos^=fade][data-aos^=fade] {
    opacity: 1;
    transform: none;
    transition-delay: 0.3s;
  }
  .section.fp-section.active [data-aos],
  .section.fp-section.isSeen [data-aos] {
    pointer-events: auto;
  }
}
.section.fp-section.active [data-aos],
.section.fp-section.isSeen [data-aos] {
  pointer-events: auto;
}

@media screen and (max-width: 1199px) {
  .section.fp-section.isSeen [data-aos] {
    pointer-events: auto;
  }
}
@keyframes arrowAni {
  from {
    stroke-dashoffset: 100;
    stroke-dasharray: 100;
  }
  to {
    stroke-dashoffset: 0;
    stroke-dasharray: 0;
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes yearTextscroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(40%);
  }
}
/* Safari */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes maskRectAni1 {
  0% {
    transform: translateX(0);
  }
  80% {
    transform: translateX(300%);
  }
  100% {
    transform: translateX(100%);
    height: 0;
    opacity: 0;
  }
}
@keyframes maskRectAni2 {
  0% {
    transform: translateX(20%);
  }
  80% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
    height: 0;
    opacity: 0;
  }
}
@keyframes maskRectAni3 {
  0% {
    transform: translateX(0);
  }
  80% {
    transform: translateX(200%);
  }
  100% {
    transform: translateX(100%);
    height: 0;
    opacity: 0;
  }
}
@keyframes sAni {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes btnArrowAni {
  0% {
    transform: translateX(0px);
  }
  30% {
    transform: translateX(-4px);
  }
  70% {
    transform: translateX(3px);
  }
  100% {
    transform: translateX(0px);
  }
}
/* ====================== */
/* START OF HEADER */
/* ====================== */
.header-search-wrap {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  background-color: #fff;
  padding: 20px 50px;
  z-index: 999;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .header-search-wrap {
    padding: 10px 20px;
  }
}
.header-search-wrap.open {
  transform: translateY(0);
}
.header-search-wrap .header-search-box {
  width: 600px;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.header-search-wrap .header-search-box .cross-btn {
  background-color: transparent;
  width: 44px;
  height: 36px;
  font-size: 30px;
  line-height: 30px;
  border: none;
  margin-left: 5px;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .header-search-wrap .header-search-box .cross-btn {
    width: 30px;
  }
}
.header-search-wrap .header-search-box .cross-btn:hover {
  color: #091E3F;
}
.header-search-wrap .header-search-box .input-group {
  border: solid 1px #e7e7e7;
  border-radius: 5px;
}
.header-search-wrap .header-search-box .input-group .input-group-text {
  background-color: #fff;
  border: none;
  font-size: 20px;
  color: #091E3F;
}
.header-search-wrap .header-search-box .input-group .input-group-text:hover {
  color: #000000;
}
.header-search-wrap .header-search-box .input-group .input-group-text .search-icon {
  line-height: 1;
}
.header-search-wrap .header-search-box .input-group .form-control {
  border-radius: 5px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  padding-left: 0;
  height: 50px;
  padding-left: 5px;
}
.header-search-wrap .header-search-box .input-group .form-control:focus {
  box-shadow: none;
  outline: none;
}
@media only screen and (max-width: 767px) {
  .header-search-wrap .header-search-box .input-group .form-control {
    width: 185px;
  }
}

/* wraper-header */
.wraper-header {
  top: 0;
  transition: all 0.3s ease-in-out;
  z-index: 1001;
  background-color: transparent;
  position: fixed;
}
.wraper-header.innerPage-wraper-header {
  background-color: #ffffff;
}
.wraper-header.innerPage-wraper-header .wraper-header-main .header-main .main-nav > ul > li > a {
  color: #000000;
}
.wraper-header.innerPage-wraper-header .wraper-header-main .header-main .main-nav > ul > li > a:hover {
  color: #091E3F;
}
.wraper-header.innerPage-wraper-header .wraper-header-main .header-main .header-mobilemenu-trigger img {
  filter: none;
}
.wraper-header.innerPage-wraper-header .wraper-header-main > .container {
  padding-top: 15px;
  padding-bottom: 15px;
}
@media only screen and (max-width: 991px) {
  .wraper-header.innerPage-wraper-header .wraper-header-main > .container {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.wraper-header.i-am-sticky {
  background-color: #ffffff;
  border-bottom: 1px dashed #949EB0;
}
.wraper-header.i-am-sticky .wraper-header-main .header-main {
  border-bottom: 1px dashed transparent;
}
.wraper-header.i-am-sticky .wraper-header-main .header-main .brand-logo img {
  filter: none;
  width: 65px;
  height: 35px;
}
.wraper-header.i-am-sticky .wraper-header-main .header-main .main-nav > ul > li > a {
  color: #091E3F;
  padding: 21px 15px;
}
.wraper-header.i-am-sticky .wraper-header-main .header-main .main-nav > ul > li > a:hover,
.wraper-header.i-am-sticky .wraper-header-main .header-main .main-nav > ul > li.current-menu-item > a,
.wraper-header.i-am-sticky .wraper-header-main .header-main .main-nav > ul > li.current-menu-parent > a,
.wraper-header.i-am-sticky .wraper-header-main .header-main .main-nav > ul > li.current-menu-ancestor > a {
  color: #4CDDD4;
}
.wraper-header.i-am-sticky .wraper-header-main .header-main .header-right .btn.btn-border-white {
  border-color: #091E3F;
  color: #091E3F;
}
.wraper-header.i-am-sticky .wraper-header-main .header-main .header-right .btn.btn-border-white:before {
  background-color: #091E3F;
}
.wraper-header.i-am-sticky .wraper-header-main .header-main .header-right .btn.btn-border-white:hover {
  color: #ffffff;
}
@media screen and (max-width: 991px) {
  .wraper-header.i-am-sticky .wraper-header-main .header-main .header-right .header-mobilemenu-trigger img {
    filter: brightness(1) invert(1);
  }
}
.wraper-header.aniHeader {
  transform: translateY(-100%);
  transition: all 0.5s ease-out 0.75s;
}
.wraper-header.aniHeader.headerShow {
  transform: translateY(0%);
}
.wraper-header.aniHeader.headerShow .wraper-header-main {
  background-color: rgb(255, 255, 255);
}
.wraper-header.aniHeader.headerShow .wraper-header-main .header-main .main-nav > ul > li > a {
  transform: translateY(0px);
  opacity: 1;
}
.wraper-header.aniHeader .wraper-header-main {
  background-color: rgba(255, 255, 255, 0.01);
  transition: background 0.5s ease-out 1s;
}
.wraper-header.aniHeader .wraper-header-main .header-main .main-nav > ul > li > a {
  transform: translateY(-30px);
  opacity: 0;
  transition: transform 0.5s ease-out 1.1s;
}

/* wraper-header-main */
.wraper-header-main {
  background-color: transparent;
  /* header-main */
  /* fill-header */
}
.wraper-header-main > .container-fluid {
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 991px) {
  .wraper-header-main > .container-fluid {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .wraper-header-main > .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 575px) {
  .wraper-header-main > .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
}
.wraper-header-main .header-main {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: 1px dashed #949EB0;
  /* brand-logo */
  /* header-actionbar */
  /* header-mobilemenu-trigger */
  /* main-nav */
}
@media only screen and (max-width: 991px) {
  .wraper-header-main .header-main {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.wraper-header-main .header-main > .main-nav {
  width: auto;
  max-width: 100%;
}
.wraper-header-main .header-main .brand-logo {
  padding: 0;
  border-left: none;
  border-right: none;
}
.wraper-header-main .header-main .brand-logo a {
  display: inline-block;
}
.wraper-header-main .header-main .brand-logo img {
  width: 80px;
  height: 44px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0.1) invert(1);
}
.wraper-header-main .header-main .mMenu-link {
  padding: 5px 15px;
  margin-right: 20px;
  border-radius: 5px;
  border: solid 1px #999;
  background-color: #ffffff;
  text-decoration: none;
}
@media only screen and (max-width: 1199px) {
  .wraper-header-main .header-main .mMenu-link {
    margin-right: 10px;
  }
}
.wraper-header-main .header-main .mMenu-link .ic-courses {
  color: #091E3F;
  margin-right: 5px;
  font-size: 16px;
}
.wraper-header-main .header-main .mMenu-link .textInfo {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
  text-decoration: none;
}
.wraper-header-main .header-main .header-actionbar {
  margin-left: 10px;
}
.wraper-header-main .header-main .header-actionbar .btn {
  padding: 12px 20px 12px 20px;
}
.wraper-header-main .header-main .header-actionbar .btn:hover {
  color: #fff;
}
.wraper-header-main .header-main .header-actionbar .btn.btn-primary-color:hover, .wraper-header-main .header-main .header-actionbar .btn.btn-primary-color:focus {
  background-color: #fff;
  color: #091E3F;
}
.wraper-header-main .header-main .header-mobilemenu-trigger {
  width: 20px;
  height: 20px;
  margin-top: 0;
  margin-left: 15px;
  border: none;
  border-radius: 0;
  box-shadow: initial;
  cursor: pointer;
  min-width: auto;
}
@media screen and (max-width: 991px) {
  .wraper-header-main .header-main .header-mobilemenu-trigger img {
    filter: brightness(1) invert(1);
  }
}
@media screen and (max-width: 1199px) {
  .wraper-header-main .header-main .header-mobilemenu-trigger {
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .wraper-header-main .header-main .header-mobilemenu-trigger img {
    filter: none;
  }
}
.wraper-header-main .header-main .main-nav {
  vertical-align: top;
  align-items: center;
  font-size: 0;
  /* nav level one */
  /* nav level two */
  /* nav level three */
}
.wraper-header-main .header-main .main-nav > ul > li.current-menu-item > ul.sub-menu > li.menu-item-type-custom > a {
  color: #000000;
  background-color: transparent;
}
.wraper-header-main .header-main .main-nav > ul > li.current-menu-item > ul.sub-menu > li.menu-item-type-custom.customMenu-active a {
  background-color: #e2e2e2;
  color: #091E3F;
}
.wraper-header-main .header-main .main-nav > ul > li {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.wraper-header-main .header-main .main-nav > ul > li:last-child,
.wraper-header-main .header-main .main-nav > ul > li:only-child {
  margin-right: 0;
}
.wraper-header-main .header-main .main-nav > ul > li:last-child > a,
.wraper-header-main .header-main .main-nav > ul > li:only-child > a {
  border-right: none;
}
.wraper-header-main .header-main .main-nav > ul > li > a {
  position: relative;
  display: block;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  padding: 40px 15px;
}
@media screen and (max-width: 1199px) {
  .wraper-header-main .header-main .main-nav > ul > li > a {
    font-size: 13px;
    padding: 40px 18px;
  }
}
.wraper-header-main .header-main .main-nav > ul > li.menu-item-has-children > a {
  padding-right: 50px;
}
@media screen and (max-width: 1199px) {
  .wraper-header-main .header-main .main-nav > ul > li.menu-item-has-children > a {
    padding-right: 44px;
  }
}
.wraper-header-main .header-main .main-nav > ul > li.menu-item-has-children > a:after {
  content: "\f0d7";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  display: block;
  height: 17px;
  opacity: 1;
  position: absolute;
  right: 29px;
  top: -1px;
  width: 11px;
  bottom: 0;
  margin: auto;
  font-size: 16px;
}
@media screen and (max-width: 1199px) {
  .wraper-header-main .header-main .main-nav > ul > li.menu-item-has-children > a:after {
    right: 23px;
  }
}
.wraper-header-main .header-main .main-nav > ul > li > a:hover,
.wraper-header-main .header-main .main-nav > ul > li.current-menu-item > a,
.wraper-header-main .header-main .main-nav > ul > li.current-menu-parent > a,
.wraper-header-main .header-main .main-nav > ul > li.current-menu-ancestor > a {
  color: #4CDDD4;
}
.wraper-header-main .header-main .main-nav > ul > li > a i {
  font-size: 130%;
}
.wraper-header-main .header-main .main-nav > ul > li > ul {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  z-index: 1;
  width: 240px;
  padding-top: 5px;
  padding-bottom: 6px;
  background: rgb(235, 235, 235);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  border: none;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.wraper-header-main .header-main .main-nav > ul > li:hover > ul {
  top: calc(100% + 1px);
  opacity: 1;
  visibility: visible;
}
.wraper-header-main .header-main .main-nav > ul > li > ul > li,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li {
  position: relative;
}
.wraper-header-main .header-main .main-nav > ul > li > ul > li > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li > ul > li > a {
  position: relative;
  display: block;
  padding: 10px 15px 10px 15px;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.wraper-header-main .header-main .main-nav > ul > li > ul > li:hover > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li.current-menu-item > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li.current-menu-parent > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li.current-menu-ancestor > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li:hover > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li.current-menu-item > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li.current-menu-parent > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li.current-menu-ancestor > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li > ul > li:hover > a,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li > ul > li.current-menu-item > a {
  background-color: #e2e2e2;
  color: #4CDDD4;
}
.wraper-header-main .header-main .main-nav > ul > li > ul > li.menu-item-has-children > a:after,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li.menu-item-has-children > a:after,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li > ul > li.menu-item-has-children > a:after {
  position: absolute;
  top: 50%;
  right: 10px;
  content: "\f0d7";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  font-size: 9px;
  transform: translateY(-50%);
}
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li > ul {
  position: absolute;
  top: 10%;
  left: 100%;
  z-index: 1;
  width: 210px;
  padding-top: 5px;
  padding-bottom: 6px;
  background: rgb(235, 235, 235);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  border: none;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.wraper-header-main .header-main .main-nav > ul > li > ul > li:hover > ul,
.wraper-header-main .header-main .main-nav > ul > li > ul > li > ul > li:hover > ul {
  top: 0;
  opacity: 1;
  visibility: visible;
}
.wraper-header-main.fill-header {
  background-color: #f4faff;
  /* header-main */
}
.wraper-header-main.fill-header > .container {
  padding-top: 20px;
  padding-bottom: 20px;
}
.wraper-header-main.fill-header .header-main {
  /* header-actionbar */
  /* header-mobilemenu-trigger */
  /* main-nav */
}
.wraper-header-main.fill-header .header-main .header-actionbar .btn:hover {
  color: #091E3F;
}
.wraper-header-main.fill-header .header-main .header-actionbar .btn.btn-primary-color:hover, .wraper-header-main.fill-header .header-main .header-actionbar .btn.btn-primary-color:focus {
  background-color: #091E3F;
  color: #fff;
}
.wraper-header-main.fill-header .header-main .header-mobilemenu-trigger i {
  color: #000;
}
.wraper-header-main.fill-header .header-main .main-nav > ul > li > a {
  color: #000;
}
.wraper-header-main .header-right {
  margin-left: 0;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .wraper-header-main .header-right .btn {
    padding: 10px 15px;
    font-size: 13px;
    min-width: auto;
  }
}
.wraper-header-main .header-right .main-nav > ul > li:last-child,
.wraper-header-main .header-right .main-nav > ul > li:only-child {
  text-transform: uppercase;
}
.wraper-header-main .header-right .main-nav > ul > li:last-child > ul,
.wraper-header-main .header-right .main-nav > ul > li:only-child > ul {
  margin-right: 0;
  width: 100%;
  max-width: 100%;
  text-align: center;
  text-transform: uppercase;
}

/* wraper-header */
/* ====================== */
/* END OF HEADER */
/* ====================== */
/* ====================== */
/* START OF MOBILE SIDR MENU */
/* ====================== */
/* sidr */
.sidr {
  background-color: #fff;
}
.sidr#main-menu {
  max-width: 400px;
}
body.sidr-open .sidr {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

/* mobile-header */
.wraper-mobile-header {
  transform: translateX(-110%);
  transition: transform 0.3s ease-in-out;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  display: block !important;
  width: 100%;
  padding: 0 0 !important;
  background-color: #ABC4B7;
  z-index: 1002;
  min-height: calc(100 * var(--vh));
}
.wraper-mobile-header.open-mMenu {
  transform: translateX(0);
}

.mobile-header {
  flex-wrap: wrap;
  height: auto;
  overflow: hidden;
  width: 100%;
  /*min-height:100vh;*/
  /* mobile-header-top */
}
.mobile-header .mobile-header-top {
  align-self: flex-start;
  /* brand-logo */
  /* mobile-menu-close */
  /* mobile-header-menu */
}
.mobile-header .mobile-header-top .mobile-header-brand-wrap {
  border-bottom: 1px solid rgba(9, 30, 63, 0.3);
  width: 100%;
}
.mobile-header .mobile-header-top .brand-logo {
  vertical-align: top;
  padding: 15px 30px;
}
.mobile-header .mobile-header-top .brand-logo img {
  width: 100px;
}
.mobile-header .mobile-header-top .mobile-menu-close {
  margin-top: 0;
  cursor: pointer;
  background-color: transparent;
  border: none;
  width: 83px;
  height: 86px;
  border-left: 1px solid rgba(9, 30, 63, 0.3);
}
.mobile-header .mobile-header-top .mobile-menu-close span {
  font-size: 18px;
  color: #000;
  line-height: 1;
}
.mobile-header .mobile-header-top .mobile-header-menu > ul {
  list-style: none;
  /* nav level one */
  /* nav level two */
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li {
  position: relative;
  /*padding-right:45px;*/
  border-bottom: 1px solid rgba(9, 30, 63, 0.3);
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li:last-child, .mobile-header .mobile-header-top .mobile-header-menu > ul > li:only-child,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li:last-child,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li:only-child,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li:last-child,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li:only-child,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li:last-child,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li:only-child {
  padding-bottom: 0;
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li > a {
  /*display:inline-block;*/
  display: block;
  padding-right: 30px;
  padding-left: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: "Source Sans 3", sans-serif;
  text-decoration: none;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.72px;
  color: #091E3F;
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li.menu-item-has-children > .submenu-opener,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li.menu-item-has-children > .submenu-opener,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li.menu-item-has-children > .submenu-opener,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li.menu-item-has-children > .submenu-opener {
  position: absolute;
  top: -13px;
  right: -17px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-items: center;
  width: 45px;
  height: 45px;
  background-color: rgba(0, 0, 0, 0);
  text-align: center;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li.menu-item-has-children > .submenu-opener.opened,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li.menu-item-has-children > .submenu-opener.opened,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li.menu-item-has-children > .submenu-opener.opened,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li.menu-item-has-children > .submenu-opener.opened {
  transform: rotateX(180deg);
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li.current-menu-item > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li.current-menu-parent > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li.current-menu-ancestor > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li.current-menu-item > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li.current-menu-parent > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li.current-menu-ancestor > a > li > ul > li > ul > li.current-menu-item > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li.current-menu-parent > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li.current-menu-ancestor > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li.current-menu-item > a {
  color: #091E3F;
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li > a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.56px;
  color: #091E3F;
  padding: 18px 0;
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul {
  padding-top: 20px;
  padding-bottom: 6px;
  padding-left: 20px;
  display: none;
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li {
  border-top: 1px solid rgba(9, 30, 63, 0.3);
  border-bottom: none;
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li:first-child,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li:first-child,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li:first-child {
  border-top: none;
}
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li:first-child > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li:first-child > a,
.mobile-header .mobile-header-top .mobile-header-menu > ul > li > ul > li > ul > li > ul > li:first-child > a {
  padding-top: 0;
}
.mobile-header .mobile-header-top .mobile-header-menu > ul + ul > li:last-child,
.mobile-header .mobile-header-top .mobile-header-menu > ul + ul > li:only-child {
  text-transform: uppercase;
}

/* ====================== */
/* END OF MOBILE SIDR MENU */
/* ====================== */
/* ========================== */
/* START OF RESPONSIVE CSS */
/* ========================== */
/* EXTRA LARGE DESKTOP PART */
/* EXTRA LARGE DESKTOP PART */
/* LARGE DESKTOP PART */
/* DESKTOP PART */
/* TABLET LANDSCAPE PART */
@media only screen and (max-width: 991px) {
  .mobile-header-menu .menu li .clickD {
    height: 61px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    width: 100%;
  }
  .mobile-header-menu .menu li .clickD:after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #091E3F;
    top: 50%;
    right: 20px;
    left: auto;
  }
  .mobile-header-menu .menu li .clickD.toggled:after {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
  }
  .mobile-header-menu .menu li .sub-menu.show {
    display: block;
    position: static;
    padding-right: 30px;
    padding-left: 30px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .mobile-header-menu .menu li .sub-menu.show li {
    list-style: none;
    list-style-type: none;
  }
  .mobile-header-menu .menu li .sub-menu.show li.current-menu-item a {
    color: #4CDDD4;
  }
  .mobile-header-menu .menu > li.current-menu-item > ul.sub-menu > li.menu-item-type-custom > a {
    color: #000000;
    background-color: transparent;
  }
  .mobile-header-menu .menu > li.current-menu-item > ul.sub-menu > li.menu-item-type-custom.customMenu-active a {
    color: #091E3F;
    background-color: transparent;
  }
}
/* TABLET PROTRAIT PART */
/* HIGH DEFINITION PHONE PART */
/* SMART PHONE LANDSCAPE PART */
/* SMART PHONE LANDSCAPE PART */
/* ========================== */
/* END OF RESPONSIVE CSS */
/* ========================== */
:root {
  --nav-height: 80px;
}

::-moz-selection {
  background: #091E3F;
  color: #fff;
}

::selection {
  background: #091E3F;
  color: #fff;
}

* {
  outline: none !important;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: auto;
  }
}
.customScrollBar {
  scrollbar-face-color: rgba(0, 0, 0, 0.3);
  scrollbar-shadow-color: rgba(0, 0, 0, 0.1);
  scrollbar-highlight-color: rgba(0, 0, 0, 0.1);
  scrollbar-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.1);
  scrollbar-width: thin;
}
.customScrollBar::-webkit-scrollbar {
  width: 7px;
}
.customScrollBar::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.customScrollBar::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}
.customScrollBar::-webkit-scrollbar-button {
  background-color: rgba(0, 0, 0, 0.1);
}
.customScrollBar.noVisableScrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.customScrollBar.noVisableScrollbar::-webkit-scrollbar {
  width: 0;
  background: 0 0;
  display: none;
}

.noVisableScrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.noVisableScrollbar::-webkit-scrollbar {
  width: 0;
  background: 0 0;
  display: none;
}

.customScrollBar-light {
  scrollbar-face-color: rgba(255, 255, 255, 0.3);
  scrollbar-shadow-color: rgba(255, 255, 255, 0.1);
  scrollbar-highlight-color: rgba(255, 255, 255, 0.1);
  scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.1);
  scrollbar-width: thin;
}
.customScrollBar-light::-webkit-scrollbar {
  width: 7px;
}
.customScrollBar-light::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  background-clip: padding-box;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.customScrollBar-light::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}
.customScrollBar-light::-webkit-scrollbar-button {
  background-color: rgba(255, 255, 255, 0.1);
}
.customScrollBar-light.noVisableScrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.customScrollBar-light.noVisableScrollbar::-webkit-scrollbar {
  width: 0;
  background: 0 0;
  display: none;
}

a {
  color: #4CDDD4;
  text-decoration: none;
}
a:hover {
  color: #AB1E2D;
  text-decoration: none;
}

img {
  height: auto;
}

.flex01auto {
  flex: 0 1 auto;
  min-width: 0;
}

@media screen and (min-width: 1300px) {
  .container {
    max-width: 1240px;
  }
}
@media screen and (min-width: 768px) {
  .container.oneSideContainer {
    max-width: calc(720px + (100vw - 720px) / 2);
  }
}
@media screen and (min-width: 992px) {
  .container.oneSideContainer {
    max-width: calc(960px + (100vw - 960px) / 2);
  }
}
@media screen and (min-width: 1200px) {
  .container.oneSideContainer {
    max-width: calc(1140px + (100vw - 1140px) / 2);
  }
}
@media screen and (min-width: 1300px) {
  .container.oneSideContainer {
    max-width: calc(1240px + (100vw - 1240px) / 2);
  }
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  line-height: normal;
  font-family: "Source Sans 3", sans-serif;
}

h1 {
  font-size: 36px;
  line-height: 1.2;
}
@media screen and (min-width: 576px) {
  h1 {
    font-size: 46px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 56px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 992px) {
  h1 {
    font-size: 66px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1200px) {
  h1 {
    font-size: 76px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1400px) {
  h1 {
    font-size: 76px;
    line-height: 1.2;
  }
}

h2 {
  font-size: 30px;
  line-height: 1.1;
}
@media screen and (min-width: 576px) {
  h2 {
    font-size: 32px;
    line-height: 1.1;
  }
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 36px;
    line-height: 1.1;
  }
}
@media screen and (min-width: 992px) {
  h2 {
    font-size: 40px;
    line-height: 1.1;
  }
}
@media screen and (min-width: 1200px) {
  h2 {
    font-size: 44px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1400px) {
  h2 {
    font-size: 44px;
    line-height: 1.2;
  }
}

h3 {
  font-size: 18px;
  line-height: 1.2;
}
@media screen and (min-width: 576px) {
  h3 {
    font-size: 20px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  h3 {
    font-size: 23px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 992px) {
  h3 {
    font-size: 26px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1200px) {
  h3 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1400px) {
  h3 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1800px) {
  h3 {
    font-size: 44px;
    line-height: 1.2;
  }
}

h4 {
  font-size: 24px;
  line-height: 1.2;
}
@media screen and (min-width: 576px) {
  h4 {
    font-size: 24px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 768px) {
  h4 {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 992px) {
  h4 {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1200px) {
  h4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1400px) {
  h4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1800px) {
  h4 {
    font-size: 32px;
    line-height: 1.2;
  }
}

h5 {
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (min-width: 576px) {
  h5 {
    font-size: 16px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 768px) {
  h5 {
    font-size: 20px;
    line-height: 1.7;
  }
}
@media screen and (min-width: 992px) {
  h5 {
    font-size: 20px;
    line-height: 1.7;
  }
}
@media screen and (min-width: 1200px) {
  h5 {
    font-size: 24px;
    line-height: 1.7;
  }
}
@media screen and (min-width: 1400px) {
  h5 {
    font-size: 24px;
    line-height: 1.7;
  }
}
@media screen and (min-width: 1800px) {
  h5 {
    font-size: 24px;
    line-height: 1.7;
  }
}

h6 {
  font-size: 14px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  h6 {
    font-size: 15px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 992px) {
  h6 {
    font-size: 15px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1200px) {
  h6 {
    font-size: 16px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1400px) {
  h6 {
    font-size: 16px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1800px) {
  h6 {
    font-size: 20px;
    line-height: 1.3;
  }
}

.font-weight-300 {
  font-weight: 300;
}

.font-weight-400 {
  font-weight: 400;
}

.font-weight-500 {
  font-weight: 500;
}

.font-weight-600 {
  font-weight: 600;
}

.font-weight-700 {
  font-weight: 700;
}

.font-weight-800 {
  font-weight: 800;
}

.font-weight-900 {
  font-weight: 900;
}

.color-white {
  color: #ffffff !important;
}

.color-black {
  color: #000000 !important;
}

a {
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  -moz-transition: all ease-in-out 300ms;
  -ms-transition: all ease-in-out 300ms;
}
a:hover, a:focus {
  text-decoration: none;
}

.btn:hover {
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  -moz-transition: all ease-in-out 300ms;
  -ms-transition: all ease-in-out 300ms;
}

.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  -moz-transition: all ease-in-out 300ms;
  -ms-transition: all ease-in-out 300ms;
}

.primary-bg {
  background-color: #091E3F;
}

.black-bg {
  background-color: #000000;
}

body {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Source Sans 3", sans-serif;
  color: #484D55;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.8;
  }
}
@media screen and (min-width: 992px) {
  body {
    font-size: 16px;
    line-height: 1.8;
  }
}
@media screen and (min-width: 1200px) {
  body {
    font-size: 16px;
    line-height: 1.8;
  }
}
@media screen and (min-width: 1400px) {
  body {
    font-size: 16px;
    line-height: 1.8;
  }
}
@media screen and (min-width: 1800px) {
  body {
    font-size: 16px;
    line-height: 1.8;
  }
}
body.lockScroll {
  overflow: hidden;
}

body.compensate-for-scrollbar {
  padding-right: 0;
}

body .widget-visible {
  z-index: 889 !important;
}

.page-overlay {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
  transition: opacity 250ms linear;
  opacity: 0;
  visibility: hidden;
}
.page-overlay.show {
  z-index: 90;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  visibility: visible;
}
.page-overlay.nav-search-overlay {
  top: 70px;
}

.sec-heading-wrap .infoIcon-holder {
  width: 170px;
  height: 170px;
}
@media screen and (max-width: 767px) {
  .sec-heading-wrap .infoIcon-holder {
    width: 140px;
    height: 140px;
  }
}
.sec-heading-wrap .infoIcon-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.sec-heading-wrap.sec-heading-color-white .sec-heading-block .mainHeadingText {
  color: #ffffff;
}
.sec-heading-wrap.sec-heading-color-white .heading-dscText p {
  color: #ffffff;
}
.sec-heading-wrap.sec-heading-mb {
  margin-bottom: 35px;
}
@media screen and (max-width: 991px) {
  .sec-heading-wrap.sec-heading-mb {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .sec-heading-wrap.sec-heading-mb {
    margin-bottom: 20px;
  }
}
.sec-heading-wrap.mxWidth,
.sec-heading-wrap .mxWidth {
  max-width: 895px;
}
.sec-heading-wrap .sec-heading-block .mainHeadingText {
  font-size: 26px;
  line-height: 1.3;
  color: #091E3F;
  font-weight: 700;
}
@media screen and (min-width: 576px) {
  .sec-heading-wrap .sec-heading-block .mainHeadingText {
    font-size: 28px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .sec-heading-wrap .sec-heading-block .mainHeadingText {
    font-size: 30px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .sec-heading-wrap .sec-heading-block .mainHeadingText {
    font-size: 30px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1200px) {
  .sec-heading-wrap .sec-heading-block .mainHeadingText {
    font-size: 32px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1400px) {
  .sec-heading-wrap .sec-heading-block .mainHeadingText {
    font-size: 32px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1800px) {
  .sec-heading-wrap .sec-heading-block .mainHeadingText {
    font-size: 32px;
    line-height: 1.3;
  }
}
.sec-heading-wrap .heading-dscText p {
  margin: 0;
  color: #484D55;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
}
@media only screen and (max-width: 991px) {
  .sec-heading-wrap .heading-dscText p {
    font-size: 17px;
  }
}
.sec-heading-wrap .heading-dscText p a {
  color: #091E3F;
}
.sec-heading-wrap .heading-dscText p a:hover {
  color: #4CDDD4;
}
.sec-heading-wrap .heading-dscText p + p {
  margin-top: 10px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.comnStyle-swiper-button {
  height: auto;
  width: 100%;
}
.comnStyle-swiper-button .swiper-fraction {
  position: absolute;
  z-index: 2;
}
.comnStyle-swiper-button .swiper-button-next,
.comnStyle-swiper-button .swiper-button-prev {
  width: 45px;
  height: 45px;
  line-height: 45px;
  padding: 0;
  margin-top: 0;
  background-color: transparent;
  border: 1px solid #091E3F;
  border-radius: 0;
  color: #091E3F;
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  -moz-transition: all ease-in-out 300ms;
  -ms-transition: all ease-in-out 300ms;
  opacity: 1;
  position: relative;
  top: 0;
}
@media screen and (max-width: 767px) {
  .comnStyle-swiper-button .swiper-button-next,
  .comnStyle-swiper-button .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}
.comnStyle-swiper-button .swiper-button-next:after,
.comnStyle-swiper-button .swiper-button-prev:after {
  font-size: 18px;
}
.comnStyle-swiper-button .swiper-button-next:hover,
.comnStyle-swiper-button .swiper-button-prev:hover {
  color: #091E3F;
}
.comnStyle-swiper-button .swiper-button-next:not(.swiper-button-disabled),
.comnStyle-swiper-button .swiper-button-prev:not(.swiper-button-disabled) {
  color: #ffffff;
  background-color: #091E3F;
}
.comnStyle-swiper-button .swiper-button-next:not(.swiper-button-disabled):hover,
.comnStyle-swiper-button .swiper-button-prev:not(.swiper-button-disabled):hover {
  color: #ffffff;
  background-color: #030912;
}
.comnStyle-swiper-button .swiper-button-next {
  right: 1px;
  left: auto;
}
.comnStyle-swiper-button .swiper-button-next:after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.comnStyle-swiper-button .swiper-button-prev {
  right: auto;
  left: 0;
}
.comnStyle-swiper-button .swiper-button-prev:after {
  content: "\f104";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.comnStyle-swiper-button.button-center {
  margin: 0 auto;
  width: 125px;
}
@media screen and (max-width: 767px) {
  .comnStyle-swiper-button.button-center {
    width: 100px;
  }
}
.comnStyle-swiper-button.button-center .swiper-button-prev {
  left: calc(50% - 95px);
  bottom: 0;
  top: auto;
  transform: translateX(50%);
  right: auto;
}
@media screen and (max-width: 767px) {
  .comnStyle-swiper-button.button-center .swiper-button-prev {
    left: calc(50% - 75px);
  }
}
.comnStyle-swiper-button.button-center .swiper-button-next {
  right: calc(50% - 95px);
  bottom: 0;
  top: auto;
  transform: translateX(-50%);
  left: auto;
}
@media screen and (max-width: 767px) {
  .comnStyle-swiper-button.button-center .swiper-button-next {
    right: calc(50% - 75px);
  }
}

.comnStyle-swiper-pagination {
  position: relative;
  top: 0;
}
.comnStyle-swiper-pagination .swiper-pagination {
  position: relative;
  top: -1px;
  display: flex;
}
.comnStyle-swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #737373;
  opacity: 0.6;
}
.comnStyle-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #091E3F;
  opacity: 1;
}
.comnStyle-swiper-pagination.text-center .swiper-pagination {
  left: 0;
  right: 0;
  justify-content: center;
}

.dotStyle-swiper-pagination .swiper-pagination {
  height: 20px;
  width: 100%;
  left: auto;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dotStyle-swiper-pagination .swiper-pagination-bullet {
  width: 50px;
  height: 11px;
  border-radius: 0;
  position: relative;
  background-color: transparent;
  overflow: hidden;
  opacity: 1;
}
.dotStyle-swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #b3b3b3;
  border-radius: 3px;
  width: 10px;
  height: 10px;
}
.dotStyle-swiper-pagination .swiper-pagination-bullet .slideLine {
  width: 30px;
  height: 2px;
  display: inline-block;
  position: absolute;
  top: 4px;
  left: 17px;
  background-color: #b3b3b3;
}
.dotStyle-swiper-pagination .swiper-pagination-bullet .slideLine::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.dotStyle-swiper-pagination .swiper-pagination-bullet-active {
  background-color: transparent;
}
.dotStyle-swiper-pagination .swiper-pagination-bullet-active:after {
  background-color: #091E3F;
}
.dotStyle-swiper-pagination .swiper-pagination-bullet-active .slideLine::before {
  background-color: #091E3F;
  animation: slide-progress 2s cubic-bezier(0.3, 0, 0.3, 1) forwards;
}

.mainWrapper {
  padding-top: 82px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .mainWrapper {
    padding-top: 68px;
  }
}

.comn-sec-py {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  .comn-sec-py {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .comn-sec-py {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.comn-sec-py-sm {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 991px) {
  .comn-sec-py-sm {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .comn-sec-py-sm {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.loader {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  /* Safari */
  animation: spin 2s linear infinite;
  background: conic-gradient(from 0.5turn, #f7fbff, #091E3F 0.25turn, rgba(71, 47, 145, 0));
  border-image-slice: 1;
}
.loader:before {
  content: "";
  position: absolute;
  top: 2.6px;
  right: 2.6px;
  bottom: 2.6px;
  left: 2.6px;
  background: #fff;
  border-radius: 50%;
}

/* scrollup */
[data-color=dark] .arrowSideText {
  color: #091E3F;
}

[data-color=light] .arrowSideText {
  color: #ffffff;
}

[data-color=light].scrollup img {
  filter: brightness(0.1) invert(1);
}

.scrollup {
  position: fixed;
  bottom: -70px;
  right: 1%;
  width: auto;
  height: 140px;
  z-index: 1001;
  opacity: 0;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.scrollup.active {
  bottom: 100px;
  opacity: 1;
}
.scrollup i {
  font-size: 18px;
  color: #fff;
  line-height: 1;
}
.scrollup img {
  width: 7px;
}
.scrollup .arrowSideText {
  writing-mode: vertical-rl;
  transform: translate(-50%) rotate(180deg);
  -webkit-transform: translate(-50%) rotate(180deg);
  text-transform: uppercase;
  transform-origin: 76% 52%;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 2.31px;
}

/* images alignment for wordpress content pages */
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  float: none;
}

.comn-footer-sec {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 0;
  background-color: #091E3F;
  border-top: 2px solid #ffffff;
}
@media only screen and (max-width: 767px) {
  .comn-footer-sec {
    padding-top: 50px;
  }
}
.comn-footer-sec .comn-footer-top {
  width: 100%;
  padding-bottom: 50px;
  background-image: url(../images/footer-bg-pattern.svg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 98% auto;
}
@media screen and (min-width: 576px) {
  .comn-footer-sec .comn-footer-top {
    padding-bottom: 70px;
  }
}
@media screen and (min-width: 768px) {
  .comn-footer-sec .comn-footer-top {
    padding-bottom: 90px;
  }
}
@media screen and (min-width: 992px) {
  .comn-footer-sec .comn-footer-top {
    padding-bottom: 150px;
  }
}
.comn-footer-sec .footer-menu-dscContent-block {
  width: 100%;
}
.comn-footer-sec .footer-menu-dscContent-block .dscContent-holder .headingText {
  font-size: 34px;
  line-height: 1.2;
  color: #ffffff;
  font-weight: 700;
}
@media screen and (min-width: 576px) {
  .comn-footer-sec .footer-menu-dscContent-block .dscContent-holder .headingText {
    font-size: 36px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .comn-footer-sec .footer-menu-dscContent-block .dscContent-holder .headingText {
    font-size: 38px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .comn-footer-sec .footer-menu-dscContent-block .dscContent-holder .headingText {
    font-size: 44px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1200px) {
  .comn-footer-sec .footer-menu-dscContent-block .dscContent-holder .headingText {
    font-size: 48px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1400px) {
  .comn-footer-sec .footer-menu-dscContent-block .dscContent-holder .headingText {
    font-size: 48px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1800px) {
  .comn-footer-sec .footer-menu-dscContent-block .dscContent-holder .headingText {
    font-size: 48px;
    line-height: 1.3;
  }
}
.comn-footer-sec .footer-menu-dscContent-block .dscContent-holder .dscText {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .comn-footer-sec .footer-menu-dscContent-block .dscContent-holder .dscText {
    margin-top: 10px;
  }
}
.comn-footer-sec .footer-menu-dscContent-block .dscContent-holder .dscText p {
  color: #949EB0;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}
@media screen and (max-width: 575px) {
  .comn-footer-sec .footer-menu-dscContent-block .dscContent-holder .dscText p {
    font-size: 15px;
    line-height: 24px;
  }
}
.comn-footer-sec .footer-menu-block {
  width: 100%;
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .comn-footer-sec .footer-menu-block {
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) {
  .comn-footer-sec .footer-menu-block .footer-content-block {
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  .comn-footer-sec .footer-menu-block .footer-content-block .headingText::after {
    display: inline-block;
    vertical-align: top;
    margin-left: 5px;
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-size: 14px;
    top: 1px;
    position: absolute;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .comn-footer-sec .footer-menu-block .footer-content-block ul.menu {
    display: none;
    padding-bottom: 10px;
  }
}
.comn-footer-sec .footer-content-block .headingText {
  color: #4cddd4;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
  border-bottom: 1px solid #4CDDD4;
}
@media screen and (min-width: 768px) {
  .comn-footer-sec .footer-content-block.column2-menu-block ul.menu {
    -moz-column-count: 2;
    -moz-column-gap: 20px;
    -webkit-column-count: 2;
    -webkit-column-gap: 20px;
    column-count: 2;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
.comn-footer-sec .footer-content-block ul.menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.comn-footer-sec .footer-content-block ul.menu li {
  margin-bottom: 15px;
  position: relative;
  display: flex;
}
.comn-footer-sec .footer-content-block ul.menu li.current-menu-item a {
  color: #4CDDD4;
}
.comn-footer-sec .footer-content-block ul.menu li.current-menu-item a:hover {
  color: #ffffff;
}
.comn-footer-sec .footer-content-block ul.menu li a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #acacac;
  text-decoration: none;
}
@media screen and (max-width: 575px) {
  .comn-footer-sec .footer-content-block ul.menu li a {
    font-size: 15px;
  }
}
.comn-footer-sec .footer-content-block ul.menu li a:hover {
  color: #4CDDD4;
}
@media screen and (min-width: 576px) {
  .comn-footer-sec .footer-content-block.adds-content-block {
    width: auto;
    display: inline-block;
  }
}
.comn-footer-sec .footer-content-block.adds-content-block .adds-info-block {
  width: 100%;
  max-width: 180px;
}
.comn-footer-sec .footer-content-block.adds-content-block .adds-info-block p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #EFF0F0;
  margin-bottom: 10px;
}
.comn-footer-sec .footer-content-block.adds-content-block .adds-info-block p a {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #4CDDD4;
  text-decoration: underline;
}
.comn-footer-sec .footer-content-block.adds-content-block .adds-info-block p a:hover {
  color: #ffffff;
}
@media screen and (min-width: 576px) {
  .comn-footer-sec .footer-content-block.socialLink-content-block {
    width: auto;
    display: inline-block;
  }
}
.comn-footer-sec .footer-content-block.socialLink-content-block .social-link-holder {
  width: 100%;
}
.comn-footer-sec .footer-content-block.socialLink-content-block .social-link-holder ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.comn-footer-sec .footer-content-block.socialLink-content-block .social-link-holder ul li {
  display: flex;
  margin-bottom: 10px;
}
.comn-footer-sec .footer-content-block.socialLink-content-block .social-link-holder ul li.media-class a .icon-holder img {
  position: relative;
  z-index: 0;
  bottom: 3px;
}
.comn-footer-sec .footer-content-block.socialLink-content-block .social-link-holder ul li:before {
  display: none;
}
.comn-footer-sec .footer-content-block.socialLink-content-block .social-link-holder ul li:first-child {
  margin-left: 0;
}
.comn-footer-sec .footer-content-block.socialLink-content-block .social-link-holder ul li a {
  display: inline-flex;
  align-items: center;
  color: #EFF0F0;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
.comn-footer-sec .footer-content-block.socialLink-content-block .social-link-holder ul li a:hover {
  color: #4CDDD4;
}
.comn-footer-sec .footer-content-block.socialLink-content-block .social-link-holder ul li a .icon-holder {
  flex-shrink: 0;
  width: 26px;
}
.comn-footer-sec .footer-content-block.socialLink-content-block .social-link-holder ul li a .icon-holder img {
  width: 17px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
.comn-footer-sec .footer-content-block.socialLink-content-block .social-link-holder ul li a .linkInfoText {
  display: inline-flex;
}
.comn-footer-sec .comn-footer-bottom {
  padding-bottom: 25px;
  padding-top: 25px;
  width: 100%;
  border-top: 1px solid #004c51;
}
@media (max-width: 991.9px) {
  .comn-footer-sec .comn-footer-bottom > .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991.9px) {
  .comn-footer-sec .comn-footer-bottom > .row .col {
    flex: auto !important;
  }
}
.comn-footer-sec .comn-footer-bottom .footer-copyRight-text ul {
  display: inline-block;
}
.comn-footer-sec .comn-footer-bottom .footer-copyRight-text ul li {
  display: inline-block;
  padding-left: 10px;
  margin-left: 10px;
  position: relative;
  line-height: 1;
}
.comn-footer-sec .comn-footer-bottom .footer-copyRight-text ul li:after {
  content: "";
  width: 1px;
  height: 12px;
  background-color: #949EB0;
  position: absolute;
  left: 0;
  top: 6px;
}
.comn-footer-sec .comn-footer-bottom .footer-copyRight-text ul li:first-child {
  padding-left: 0px;
  margin-left: 0px;
}
.comn-footer-sec .comn-footer-bottom .footer-copyRight-text ul li:first-child:after {
  display: none;
}
.comn-footer-sec .comn-footer-bottom .footer-copyRight-text ul li a {
  color: #949EB0;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
}
.comn-footer-sec .comn-footer-bottom .footer-copyRight-text ul li a:hover {
  color: #4CDDD4;
}
.comn-footer-sec .comn-footer-bottom .footer-copyRight-text p {
  margin: 0;
  color: #949EB0;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
}
@media (max-width: 991.9px) {
  .comn-footer-sec .comn-footer-bottom .bottomLogo {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.comn-footer-sec .comn-footer-bottom .bottomLogo figure {
  margin-right: 36px;
}
@media (max-width: 1199.9px) {
  .comn-footer-sec .comn-footer-bottom .bottomLogo figure {
    margin-right: 25px;
  }
}
.comn-footer-sec .comn-footer-bottom .bottomLogo figure:last-child {
  margin-right: 0;
}
.comn-footer-sec .comn-footer-bottom .bottomLogo img {
  width: auto;
  max-height: 56px;
}
.comn-footer-sec .comn-footer-bottom .copyText {
  text-align: center;
}
@media (max-width: 991.9px) {
  .comn-footer-sec .comn-footer-bottom .copyText {
    width: 100%;
    margin-top: 15px;
  }
}
.comn-footer-sec .comn-footer-bottom .copyMenu {
  text-align: right;
}
@media (max-width: 991.9px) {
  .comn-footer-sec .comn-footer-bottom .copyMenu {
    width: 100%;
    text-align: center;
  }
}

.linkTextBtn {
  overflow: hidden;
}
.linkTextBtn .inText {
  font-size: 16px;
  font-weight: 700;
  line-height: 23px;
  color: #ffffff;
  margin-left: 8px;
  transition: all ease-in-out 500ms;
  -webkit-transition: all ease-in-out 500ms;
  -moz-transition: all ease-in-out 500ms;
  -ms-transition: all ease-in-out 500ms;
  display: inline-block;
}
.linkTextBtn .arrowIcon {
  display: flex;
  align-items: center;
}
.linkTextBtn .arrowIcon img {
  width: 27px;
  height: 16px;
}

.custom-radio label {
  display: inline-block;
  position: relative;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  cursor: pointer;
}

.custom-radio label .circle-box {
  display: inline-block;
  width: 22px;
  height: 22px;
  left: 0;
  border: none;
  border-radius: 100%;
  border: solid 1px #414244;
  position: relative;
}

.custom-radio input[type=radio] {
  opacity: 0;
  position: absolute;
}

.custom-radio input[type=radio]:checked + label .circle-box::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: #091E3F;
}

.custom-radio input[type=radio]:checked + label .circle-box {
  border: 1px solid #091E3F;
}

.custom-radio .labelText {
  color: #000000;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
}

.custom-radio input[type=radio]:checked + label .labelText {
  color: #000000;
}

.custom-checkbox label {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.custom-checkbox label .square-box {
  display: inline-block;
  width: 18px;
  height: 18px;
  left: 0;
  border: none;
  border-radius: 5px;
  border: 1px solid #000000;
  position: relative;
}

.custom-checkbox label .labelText {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
  color: #000000;
  margin-left: 8px;
}

.custom-checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
}

.custom-checkbox input[type=checkbox]:checked + label .square-box::after {
  content: "";
  color: #ffffff;
  position: absolute;
  left: 3px;
  transform-origin: 0 0;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 10px;
  height: 12px;
  border-radius: 100%;
  font-size: 8px;
}

.custom-checkbox input[type=checkbox]:checked + label .square-box {
  border: 1px solid #091E3F;
  background-color: #091E3F;
}

.responsive-tabs .nav-tabs {
  display: none;
}

.responsive-tabs.vertical-tabs .nav-pills .nav-item {
  margin-top: 30px;
}
@media only screen and (max-width: 991px) {
  .responsive-tabs.vertical-tabs .nav-pills .nav-item {
    margin-top: 10px;
  }
}
.responsive-tabs.vertical-tabs .nav-pills .nav-item:first-child {
  margin-top: 0;
}
.responsive-tabs.vertical-tabs .nav-pills .nav-link {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #091E3F;
  background-color: transparent;
  border-radius: 0;
  position: relative;
  display: inline-block;
  padding: 0;
  opacity: 0.4;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .responsive-tabs.vertical-tabs .nav-pills .nav-link {
    font-size: 17px;
  }
}
@media screen and (max-width: 767px) {
  .responsive-tabs.vertical-tabs .nav-pills .nav-link {
    font-size: 16px;
    text-align: left;
  }
}
.responsive-tabs.vertical-tabs .nav-pills .nav-link.active {
  opacity: 1;
  color: #091E3F;
}
.responsive-tabs.vertical-tabs .tab-content .card-body {
  background-color: transparent;
  padding: 0;
}
@media (min-width: 768px) {
  .responsive-tabs .nav-tabs {
    display: flex;
  }
  .responsive-tabs .card.tab-pane {
    border: none;
    background-color: transparent;
  }
  .responsive-tabs .card.tab-pane > .card-header {
    display: none;
  }
  .responsive-tabs .card.tab-pane > .collapse {
    display: block;
  }
}
@media (max-width: 767px) {
  .responsive-tabs .tab-pane {
    display: block !important;
    opacity: 1;
    background-color: #ffffff;
    border: none;
    border-top: 1px solid rgba(81, 81, 81, 0.2);
    border-radius: 0 !important;
  }
  .responsive-tabs .tab-pane:first-child {
    border-top: none;
  }
  .responsive-tabs .card-header {
    background-color: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
  }
  .responsive-tabs .card-header a {
    font-weight: 600;
    font-size: 16px;
    display: block;
    padding: 15px 0;
    position: relative;
    padding-right: 30px;
    color: #091E3F;
  }
  .responsive-tabs .card-header a:after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    background-image: none;
    font-size: 18px;
    top: 19px;
    bottom: auto;
    left: auto;
    width: 16px;
    height: 18px;
    color: #091E3F;
    position: absolute;
    right: 0;
    line-height: 1;
  }
  .responsive-tabs .card-header a:not(.collapsed) {
    color: #091E3F;
  }
  .responsive-tabs .card-header a:not(.collapsed):after {
    transform: rotateZ(180deg);
    transform-origin: center;
  }
}
.comn-form .row {
  margin-left: -8px;
  margin-right: -8px;
}
.comn-form .row > * {
  padding-left: 8px;
  padding-right: 8px;
}
.comn-form .form-select {
  font-size: 16px;
  font-weight: 400;
  line-height: 22.7px;
  color: #EFF0F0;
  height: 55px;
  border-radius: 6px;
  border: 1px solid #172C4E;
  background-color: #172C4E;
  padding: 14px 24px;
  font-family: "Source Sans 3", sans-serif;
}
.comn-form .form-select:focus {
  box-shadow: none;
  border: 1px solid #000000;
}
.comn-form .form-control {
  font-size: 16px;
  font-weight: 400;
  line-height: 22.7px;
  color: #EFF0F0;
  height: 55px;
  border-radius: 6px;
  border: 1px solid #172C4E;
  background-color: #172C4E;
  padding: 14px 24px;
  font-family: "Source Sans 3", sans-serif;
}
.comn-form .form-control::-moz-placeholder {
  color: #EFF0F0;
}
.comn-form .form-control::placeholder {
  color: #EFF0F0;
}
.comn-form .form-control:-ms-input-placeholder {
  color: #EFF0F0;
}
.comn-form .form-control::-ms-input-placeholder {
  color: #EFF0F0;
}
.comn-form .form-control:focus {
  box-shadow: none;
  border: 1px solid #000000;
}
@media screen and (max-width: 767px) {
  .comn-form .form-control {
    padding: 10px 13px;
    height: 40px;
    font-size: 14px;
  }
}
.comn-form textarea.form-control {
  height: 91px;
  resize: none;
}
.comn-form .custom-file-uploader-wrapper {
  width: auto;
  flex: 1 0 auto;
}
.comn-form .cForm-btn-holder {
  width: auto;
  position: relative;
  display: inline-block;
}
.comn-form .cForm-btn-holder p {
  margin: 0;
}
.comn-form .cForm-btn-holder .wpcf7-spinner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 5;
}
.comn-form .cForm-btn-holder .wpcf7-submit {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  z-index: 4;
}
.comn-form .cForm-btn-holder:hover .cForm-btn:before {
  opacity: 1;
  width: 116%;
}
.comn-form .cForm-btn-holder:hover .cForm-btn:after {
  opacity: 1;
  width: 120%;
}
.comn-form .wpcf7 form.invalid .wpcf7-response-output,
.comn-form .wpcf7 form.unaccepted .wpcf7-response-output,
.comn-form .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #dc3232;
  color: #dc3232;
  border-width: 1px;
  border-radius: 0;
  margin-left: 0;
  margin-right: 0;
}
.comn-form .wpcf7 form .wpcf7-response-output {
  margin: 20px 10px 10px;
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
}
.comn-form .wpcf7 form .wpcf7-response-output:last-child {
  margin-bottom: 0;
}
.comn-form .wpcf7-not-valid-tip {
  font-size: 14px;
  font-weight: 500;
}
.comn-form .wpcf7 form.sent .wpcf7-response-output {
  display: none !important;
}

.wraper-error-main {
  min-height: calc(100 * var(--vh));
  width: 100%;
}
.wraper-error-main .error-main .title {
  font-weight: 700;
  color: #000000;
  font-family: "Source Sans 3", sans-serif;
}
.wraper-error-main .error-main .action-area {
  max-width: 550px;
  margin: 0 auto;
}

.comn-modal.comn-modal-form .modal-dialog {
  max-width: 740px;
}
@media screen and (max-width: 991px) {
  .comn-modal.comn-modal-form .modal-dialog {
    width: 670px;
  }
}
@media screen and (max-width: 767px) {
  .comn-modal.comn-modal-form .modal-dialog {
    width: auto;
    max-width: 100%;
  }
}
.comn-modal.comn-modal-fullscreen .modal-dialog {
  margin: 0;
  max-width: 100%;
}
.comn-modal.comn-modal-fullscreen .modal-dialog .modal-content {
  border-radius: 0px;
  height: calc(100 * var(--vh));
  overflow: auto;
}
.comn-modal .modal-dialog .modal-content {
  background-color: #ffffff;
  border: none;
  border-radius: 0;
}
.comn-modal .modal-dialog .modal-content .modal-header {
  padding: 40px 40px 0;
  position: relative;
  border-bottom: none;
}
.comn-modal .modal-dialog .modal-content .modal-header .modal-title {
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
  color: #000000;
}
.comn-modal .modal-dialog .modal-content .comn-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 3;
  border: none;
  text-align: center;
  transition: all 0.3s ease-in;
  background-color: transparent;
  padding: 5px;
  font-size: 18px;
  box-sizing: border-box;
  --bs-btn-close-color: #fff;
  --bs-btn-close-bg: url(../images/close.svg);
  opacity: 1;
}
.comn-modal .modal-dialog .modal-content .comn-modal-close:hover {
  color: #091E3F;
}
@media screen and (max-width: 991px) {
  .comn-modal .modal-dialog .modal-content .comn-modal-close {
    top: 10px;
    right: 10px;
  }
}
.comn-modal .modal-dialog .modal-content .modal-body {
  padding: 30px;
}
@media screen and (max-width: 991px) {
  .comn-modal .modal-dialog .modal-content .modal-body {
    padding: 30px 25px;
  }
}
.comn-modal .modal-dialog .modal-content .modal-body .comn-modal-form-content .comn-form-heading {
  margin-bottom: 20px;
}
.comn-modal .modal-dialog .modal-content .modal-body .comn-modal-form-content .comn-form-heading .headingText {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  color: #000000;
}

.comn-modal.login-modal .modal-dialog .modal-content {
  background-image: url(../images/home/banner/banner-img.svg);
  background-size: cover;
  overflow: hidden;
  background-repeat: no-repeat;
}
.comn-modal.login-modal .modal-dialog .modal-content .modal-body .login-modal-body-inner {
  min-height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.comn-modal.login-modal .modal-dialog .modal-content .modal-body .login-modal-body-inner .login-modal-logo-holder {
  width: 290px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 767px) {
  .comn-modal.login-modal .modal-dialog .modal-content .modal-body .login-modal-body-inner .login-modal-logo-holder {
    width: 240px;
  }
}
.comn-modal.login-modal .modal-dialog .modal-content .modal-body .login-modal-body-inner .login-modal-logo-holder img {
  width: 100%;
}
.comn-modal.login-modal .modal-dialog .modal-content .modal-body .login-modal-body-inner .comn-form-infoText-holder p {
  margin: 0;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
}
.comn-modal.login-modal .modal-dialog .modal-content .modal-body .login-modal-body-inner .comn-form-infoText-holder p a {
  color: #4CDDD4;
}
.comn-modal.login-modal .modal-dialog .modal-content .modal-body .login-modal-body-inner .comn-form-infoText-holder p a:hover {
  color: #ffffff;
}
.comn-modal.login-modal .modal-dialog .modal-content .modal-body .login-modal-body-inner .login-modal-bottom {
  width: 100%;
  padding-top: 30px;
}
.comn-modal.login-modal .modal-dialog .modal-content .modal-body .login-modal-body-inner .login-modal-bottom p {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 400;
  color: #ffffff;
}
.comn-modal.login-modal .modal-dialog .modal-content .modal-body .login-modal-body-inner .login-modal-bottom p a {
  color: #4CDDD4;
}
.comn-modal.login-modal .modal-dialog .modal-content .modal-body .login-modal-body-inner .login-modal-bottom p a:hover {
  color: #ffffff;
}
.comn-modal .comn-form {
  max-width: 952px;
}
.comn-modal .comn-form.login-form {
  max-width: 450px;
}
.comn-modal .comn-form.register-form {
  max-width: 952px;
}
.comn-modal .comn-form.register-form .btn-lightGreen {
  max-width: 450px;
}

@media screen and (max-width: 575px) {
  .container,
  .container-fluid,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.ani-clip-in-trigger {
  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);
  display: inline-block;
  transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1), -webkit-clip-path 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.ani-clip-in-trigger.ani-clip-in {
  clip-path: inset(0) !important;
  -webkit-clip-path: inset(0) !important;
  transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1), -webkit-clip-path 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.ani-clip-in-trigger-v {
  clip-path: inset(0 0 100% 0);
  -webkit-clip-path: inset(0 0 100% 0);
  display: inline-block;
  transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1), -webkit-clip-path 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.ani-clip-in-trigger-v.ani-clip-v-in {
  clip-path: inset(0) !important;
  -webkit-clip-path: inset(0) !important;
  transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1), -webkit-clip-path 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.btn-holder-withLine .line {
  width: 100%;
  height: 1px;
  background-color: #acacac;
}

.rk_comn_table {
  width: 100%;
}
.rk_comn_table .rk_comn_table-row {
  padding: 0;
  position: relative;
}
.rk_comn_table .rk_comn_table-row:first-child {
  margin-top: 0;
}
.rk_comn_table .rk_comn_table-row.rk_comn_table-row-header {
  border-bottom: none;
  background-color: transparent;
  position: relative;
  margin: 0;
  border-top: none;
  box-shadow: none;
}
.rk_comn_table .rk_comn_table-row .rk_comn_table-cell {
  display: flex;
  flex-flow: row nowrap;
  flex-basis: 0;
  flex-grow: 1;
  align-items: center;
  overflow: hidden;
  list-style: none;
}
.rk_comn_table .rk_comn_table-row .rk_comn_table-cell .dataText {
  margin: 0;
}
.rk_comn_table .rk_comn_table-row .rk_comn_table-cell.flex-grow-0point9 {
  flex-grow: 0.9;
}
.rk_comn_table .rk_comn_table-row .rk_comn_table-cell.flex-grow-0point5 {
  flex-grow: 0.5;
}
.rk_comn_table .rk_comn_table-row .rk_comn_table-cell.flex-grow-two {
  flex-grow: 2;
}
.rk_comn_table .rk_comn_table-row .inner-wrap {
  position: relative;
}

.comn-wList {
  width: 100%;
}
.comn-wList ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.comn-wList ul li {
  padding-left: 25px;
  position: relative;
  min-height: 20px;
  margin-top: 15px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
}
.comn-wList ul li:after {
  content: "";
  background-image: url(../images/list-style-type-black.svg);
  background-repeat: no-repeat;
  background-size: 8px 12px;
  position: absolute;
  left: 0;
  top: 5px;
  background-size: contain;
  width: 10px;
  height: 16px;
}
.comn-wList ul li:first-child {
  margin-top: 0;
}
.comn-wList ul li p {
  margin: 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
}

.comn-dscText-holder .heading-block .headingText {
  font-size: 26px;
  line-height: 1.3;
  color: #091E3F;
  display: inline-block;
  font-weight: 700;
}
@media screen and (min-width: 576px) {
  .comn-dscText-holder .heading-block .headingText {
    font-size: 28px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .comn-dscText-holder .heading-block .headingText {
    font-size: 30px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .comn-dscText-holder .heading-block .headingText {
    font-size: 30px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1200px) {
  .comn-dscText-holder .heading-block .headingText {
    font-size: 32px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1400px) {
  .comn-dscText-holder .heading-block .headingText {
    font-size: 32px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1800px) {
  .comn-dscText-holder .heading-block .headingText {
    font-size: 32px;
    line-height: 1.3;
  }
}
.comn-dscText-holder .comn-dscText > *:last-child {
  margin-bottom: 0;
}
.comn-dscText-holder .comn-dscText p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
}
@media screen and (min-width: 1200px) {
  .comn-dscText-holder .comn-dscText p {
    font-size: 18px;
  }
}
.comn-dscText-holder .comn-dscText p a {
  color: #091E3F;
}
.comn-dscText-holder .comn-dscText ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.comn-dscText-holder .comn-dscText ul li {
  padding-left: 25px;
  position: relative;
  margin-top: 15px;
}
.comn-dscText-holder .comn-dscText ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  will-change: transform;
  background-color: #000000;
}
.comn-dscText-holder .comn-dscText ul li:first-child {
  margin-top: 0;
}
.comn-dscText-holder .comn-dscText ul li p {
  margin: 0;
  font-weight: 400;
}
.comn-dscText-holder.colorWhiteStyle .heading-block .headingText,
.comn-dscText-holder.colorWhiteStyle .heading-block .headingTextStyle2 {
  color: #ffffff;
}
.comn-dscText-holder.colorWhiteStyle .comn-dscText p {
  color: #ffffff;
}

.accordion.comn-accordion .accordion-item {
  border: none;
  background: #ffffff;
  border-radius: 20px;
  margin-bottom: 28px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .accordion.comn-accordion .accordion-item {
    border-radius: 10px;
    margin-bottom: 15px;
  }
}
.accordion.comn-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: #091E3F;
  padding-bottom: 15px;
}
.accordion.comn-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed):before {
  height: 100%;
  transition-delay: 0.4s;
}
.accordion.comn-accordion .accordion-item .accordion-header .accordion-button {
  background-color: transparent;
  border: none;
  padding: 30px 40px;
  box-shadow: none;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .accordion.comn-accordion .accordion-item .accordion-header .accordion-button {
    padding: 15px 25px;
  }
}
.accordion.comn-accordion .accordion-item .accordion-header .accordion-button .headingText {
  font-weight: 700;
  font-size: 20px;
  color: #000000;
  line-height: 1.4;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .accordion.comn-accordion .accordion-item .accordion-header .accordion-button .headingText {
    font-size: 17px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .accordion.comn-accordion .accordion-item .accordion-header .accordion-button .headingText {
    font-size: 16px;
  }
}
.accordion.comn-accordion .accordion-item .accordion-header .accordion-button .headingText::after {
  content: "";
  transition: all 0.2s ease-in-out;
  top: 10px;
  bottom: 100%;
}
.accordion.comn-accordion .accordion-item .accordion-header .accordion-button::after {
  background-image: none;
  content: "";
  font-size: 8px;
  text-align: right;
  height: 10px;
  line-height: 1;
  color: #000000;
  transform: translateY(0px);
  transform-origin: 14px top;
  position: absolute;
  right: 30px;
}
@media screen and (max-width: 767px) {
  .accordion.comn-accordion .accordion-item .accordion-header .accordion-button::after {
    right: 10px;
  }
}
.accordion.comn-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  transform: rotateZ(-180deg) translateY(-10px);
}
.accordion.comn-accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.accordion.comn-accordion .accordion-item .accordion-header.no-content .accordion-button::after {
  display: none;
}
.accordion.comn-accordion .accordion-item .accordion-collapse.collapsing .accordion-body {
  background-color: #091E3F;
}
.accordion.comn-accordion .accordion-item .accordion-collapse.show .accordion-body {
  background-color: #091E3F;
}
.accordion.comn-accordion .accordion-item .accordion-collapse.show .accordion-body:after {
  height: 100%;
  transition-delay: 0.2s;
}
.accordion.comn-accordion .accordion-item .accordion-collapse.show .accordion-body .dscText {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.accordion.comn-accordion .accordion-item .accordion-body {
  padding: 0 40px 25px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .accordion.comn-accordion .accordion-item .accordion-body {
    padding: 0 25px 20px;
  }
}
.accordion.comn-accordion .accordion-item .accordion-body .dscText > *:last-child {
  margin-bottom: 0;
}
.accordion.comn-accordion .accordion-item .accordion-body .dscText p {
  line-height: 1.6;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .accordion.comn-accordion .accordion-item .accordion-body .dscText p {
    font-size: 16px;
  }
}

.stickySidebar-wrap {
  will-change: min-height;
}
.stickySidebar-wrap .sidebar__inner {
  transform: translate(0, 0);
  /* For browsers don't support translate3d. */
  transform: translate3d(0, 0, 0);
  will-change: position, transform;
}

.default-general-content {
  font-weight: 400;
}
.default-general-content > *:last-child {
  margin-bottom: 0 !important;
}
.default-general-content ol {
  margin-bottom: 50px;
  padding-left: 22px;
  list-style: none;
}
.default-general-content ol:last-child {
  margin-bottom: 0;
}
.default-general-content ol li {
  margin-bottom: 8px;
  padding: 0;
  position: relative;
  z-index: 0;
  counter-increment: li;
}
.default-general-content ol li:before {
  content: counter(li);
  color: #000000;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.default-general-content ol li:last-child {
  margin-bottom: 0;
}
.default-general-content ul {
  margin-bottom: 50px;
  list-style: none;
}
.default-general-content ul:last-child {
  margin-bottom: 0;
}
.default-general-content ul li {
  margin-bottom: 8px;
  position: relative;
  z-index: 0;
  padding-left: 22px;
}
.default-general-content ul li:last-child {
  margin-bottom: 0;
}
.default-general-content ul li::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background: #000000;
  top: 10px;
}
.default-general-content ul li ul {
  padding-left: 20px;
}
.default-general-content p {
  margin-bottom: 35px;
}
.default-general-content p a {
  color: #091E3F;
  text-decoration: none;
}
.default-general-content p a:hover {
  color: #000000;
  text-decoration: none;
}
.default-general-content h2 {
  font-size: 32px;
  line-height: 1.4;
  color: #000000;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 15px;
}
@media screen and (min-width: 576px) {
  .default-general-content h2 {
    font-size: 32px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .default-general-content h2 {
    font-size: 34px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  .default-general-content h2 {
    font-size: 34px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1200px) {
  .default-general-content h2 {
    font-size: 36px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1400px) {
  .default-general-content h2 {
    font-size: 36px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .default-general-content h2 {
    margin-bottom: 10px;
    margin-top: 15px;
  }
}
.default-general-content h3 {
  font-size: 24px;
  line-height: 1.4;
  color: #000000;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 55px;
}
@media screen and (min-width: 576px) {
  .default-general-content h3 {
    font-size: 24px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .default-general-content h3 {
    font-size: 26px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  .default-general-content h3 {
    font-size: 26px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1200px) {
  .default-general-content h3 {
    font-size: 28px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1400px) {
  .default-general-content h3 {
    font-size: 28px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1800px) {
  .default-general-content h3 {
    font-size: 28px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .default-general-content h3 {
    margin-bottom: 10px;
    margin-top: 35px;
  }
}
.default-general-content h5 {
  font-size: 17px;
  line-height: 1.5;
  color: #000000;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 24px;
}
@media screen and (min-width: 576px) {
  .default-general-content h5 {
    font-size: 17px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 768px) {
  .default-general-content h5 {
    font-size: 19px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 992px) {
  .default-general-content h5 {
    font-size: 19px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  .default-general-content h5 {
    font-size: 20px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1400px) {
  .default-general-content h5 {
    font-size: 20px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1800px) {
  .default-general-content h5 {
    font-size: 20px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) {
  .default-general-content h5 {
    margin-bottom: 5px;
    margin-top: 18px;
  }
}
.default-general-content blockquote {
  padding: 16px 48px;
  margin-bottom: 50px;
  margin-top: 50px;
  background: #f2faf3;
}
@media screen and (max-width: 767px) {
  .default-general-content blockquote {
    padding: 16px 30px;
  }
}
.default-general-content blockquote p {
  margin: 0;
}
.default-general-content blockquote p + p {
  margin-top: 15px;
}
.default-general-content p,
.default-general-content ul,
.default-general-content ol {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 27px;
}
.default-general-content p:last-child,
.default-general-content ul:last-child,
.default-general-content ol:last-child {
  margin-bottom: 0;
}
.default-general-content p + h2,
.default-general-content ul + h2,
.default-general-content ol + h2 {
  padding-top: 8px;
}
.default-general-content img,
.default-general-content figure {
  margin-bottom: 27px;
}
.default-general-content img:last-child,
.default-general-content figure:last-child {
  margin-bottom: 0;
}
.default-general-content figure {
  margin-bottom: 20px;
}
.default-general-content figure img {
  width: 100%;
}
.default-general-content .alignleft {
  margin-right: 22px;
  float: left;
  max-width: 400px;
  margin-bottom: 0;
  max-width: 400px;
}
.default-general-content .alignleft:last-child {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 991px) {
  .default-general-content .alignleft {
    max-width: 250px;
  }
}
@media screen and (max-width: 767px) {
  .default-general-content .alignleft {
    max-width: inherit;
    float: none !important;
    margin-left: 0;
  }
}
.default-general-content .alignright {
  margin-left: 22px;
  float: left;
  max-width: 400px;
  margin-bottom: 0;
  max-width: 400px;
}
.default-general-content .alignright:last-child {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 991px) {
  .default-general-content .alignright {
    max-width: 250px;
  }
}
@media screen and (max-width: 767px) {
  .default-general-content .alignright {
    max-width: inherit;
    float: none !important;
    margin-left: 0;
  }
}

.alm-btn-wrap {
  padding: 0 !important;
  margin: 0 !important;
}

.ajax-load-more-wrap.infinite > .alm-btn-wrap .alm-load-more-btn {
  background-image: url(../images/alm-loader.png) !important;
  width: 50px !important;
  height: 50px;
  background-size: contain;
}

.not-found-data .image-box {
  width: 230px;
  margin: 0 auto 20px;
}
.not-found-data .image-box img {
  width: 100%;
}
.not-found-data .title {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
  color: #000000;
}
.not-found-data .dscContent p {
  font-size: 18px;
  line-height: 1.5;
  color: #000000;
}

.sec-bg-graphic-holder {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.sec-bg-graphic-holder:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.sec-bg-graphic-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-wrapper-sec {
  background-color: #ffffff;
}
.main-wrapper-sec.home-main-wrapper-sec {
  padding-bottom: 100px;
}

.innerPage-banner-sec {
  width: 100%;
  position: relative;
}
.innerPage-banner-sec.cad-banner {
  overflow: hidden;
}
@supports not (-webkit-touch-callout: none) {
  .innerPage-banner-sec.cad-banner .innerPage-banner-content {
    background-image: none !important;
  }
}
@supports (-webkit-touch-callout: none) {
  .innerPage-banner-sec.cad-banner .innerPage-banner-content {
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
  }
  .innerPage-banner-sec.cad-banner .innerPage-banner-content:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(9, 30, 63, 0.5);
    z-index: 2;
  }
}
.innerPage-banner-sec.cad-banner .innerPage-banner-content .banner-content-wrap .banner-dsc-content .headingText {
  max-width: 650px;
}
.innerPage-banner-sec.cad-banner .innerPage-banner-content .banner-content-wrap .banner-dsc-content .dscText {
  max-width: 475px;
}
.innerPage-banner-sec.ss-banner .innerPage-banner-content .banner-content-wrap .banner-dsc-content {
  max-width: 740px;
  padding: 140px 0 70px;
}
@media screen and (max-width: 991px) {
  .innerPage-banner-sec.ss-banner .innerPage-banner-content .banner-content-wrap .banner-dsc-content {
    padding: 120px 0 70px;
  }
}
.innerPage-banner-sec.faq-banner .innerPage-banner-content .banner-content-wrap .banner-dsc-content {
  max-width: 477px;
}
.innerPage-banner-sec.whoWeServe-banner .innerPage-banner-content .banner-content-wrap .banner-dsc-content {
  max-width: 477px;
}
.innerPage-banner-sec.pb-banner .innerPage-banner-content .banner-content-wrap .banner-dsc-content {
  max-width: 763px;
}
.innerPage-banner-sec.about-banner .innerPage-banner-content .banner-content-wrap .banner-dsc-content {
  max-width: 763px;
}
.innerPage-banner-sec .banner-sec-inr {
  width: 100%;
}
.innerPage-banner-sec .banner-image-wrap {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.innerPage-banner-sec .banner-image-wrap:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(9, 30, 63, 0.5);
  z-index: 2;
}
.innerPage-banner-sec .banner-image-wrap .banner-image-holder {
  width: 100%;
  height: 100%;
}
.innerPage-banner-sec .banner-image-wrap .banner-image-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.innerPage-banner-sec .banner-image-wrap video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.innerPage-banner-sec .banner-image-wrap iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.innerPage-banner-sec .banner-image-wrap.banner-vimeo-video {
  width: 239%;
  bottom: 0;
  top: 0;
  padding-bottom: 135%;
  transform: translateX(-50%) translateY(-25%);
  left: 50%;
}
@media screen and (min-width: 1200px) {
  .innerPage-banner-sec .banner-image-wrap.banner-vimeo-video {
    --video--width: 1100;
    --video--height: 618;
    padding-bottom: calc(var(--video--height) / var(--video--width) * 100%);
    overflow: hidden;
    width: 100%;
    bottom: 0;
    top: 0;
  }
}
@media screen and (min-width: 1500px) {
  .innerPage-banner-sec .banner-image-wrap.banner-vimeo-video {
    --video--width: 1100;
    --video--height: 618;
  }
}
.innerPage-banner-sec .banner-image-wrap.banner-vimeo-video iframe,
.innerPage-banner-sec .banner-image-wrap.banner-vimeo-video object,
.innerPage-banner-sec .banner-image-wrap.banner-vimeo-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
}
.innerPage-banner-sec .banner-image-wrap.banner-youtube-video {
  width: 239%;
  bottom: 0;
  top: 0;
  padding-bottom: 135%;
  transform: translateX(-50%) translateY(-25%);
  left: 50%;
}
@media screen and (min-width: 1200px) {
  .innerPage-banner-sec .banner-image-wrap.banner-youtube-video {
    --video--width: 1100;
    --video--height: 618;
    padding-bottom: calc(var(--video--height) / var(--video--width) * 100%);
    overflow: hidden;
    width: 100%;
    bottom: 0;
    top: 0;
  }
}
@media screen and (min-width: 1500px) {
  .innerPage-banner-sec .banner-image-wrap.banner-youtube-video {
    --video--width: 1100;
    --video--height: 618;
  }
}
.innerPage-banner-sec .banner-image-wrap.banner-youtube-video iframe,
.innerPage-banner-sec .banner-image-wrap.banner-youtube-video object,
.innerPage-banner-sec .banner-image-wrap.banner-youtube-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.innerPage-banner-sec .banner-image-height {
  position: relative;
  width: 0;
  min-height: 516px;
}
@media screen and (min-width: 1500px) {
  .innerPage-banner-sec .banner-image-height {
    min-height: 650px;
  }
}
@media screen and (max-width: 767px) {
  .innerPage-banner-sec .banner-image-height {
    min-height: auto;
  }
}
@media screen and (max-width: 575px) {
  .innerPage-banner-sec .banner-image-height {
    padding-top: 40%;
  }
}
.innerPage-banner-sec .innerPage-banner-content .banner-content-wrap {
  z-index: 2;
  position: relative;
  width: 100%;
}
.innerPage-banner-sec .innerPage-banner-content .banner-content-wrap .banner-dsc-content {
  width: 100%;
  padding: 140px 0 30px;
}
@media screen and (max-width: 991px) {
  .innerPage-banner-sec .innerPage-banner-content .banner-content-wrap .banner-dsc-content {
    padding: 120px 0 30px;
    max-width: 100%;
  }
}
.innerPage-banner-sec .innerPage-banner-content .banner-content-wrap .banner-dsc-content .headingText {
  font-size: 34px;
  line-height: 1.2;
  color: #ffffff;
  font-weight: 700;
  font-family: "Source Sans 3", sans-serif;
}
@media screen and (min-width: 576px) {
  .innerPage-banner-sec .innerPage-banner-content .banner-content-wrap .banner-dsc-content .headingText {
    font-size: 36px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .innerPage-banner-sec .innerPage-banner-content .banner-content-wrap .banner-dsc-content .headingText {
    font-size: 38px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .innerPage-banner-sec .innerPage-banner-content .banner-content-wrap .banner-dsc-content .headingText {
    font-size: 44px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1200px) {
  .innerPage-banner-sec .innerPage-banner-content .banner-content-wrap .banner-dsc-content .headingText {
    font-size: 48px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1400px) {
  .innerPage-banner-sec .innerPage-banner-content .banner-content-wrap .banner-dsc-content .headingText {
    font-size: 48px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1800px) {
  .innerPage-banner-sec .innerPage-banner-content .banner-content-wrap .banner-dsc-content .headingText {
    font-size: 48px;
    line-height: 1.3;
  }
}
.innerPage-banner-sec .innerPage-banner-content .banner-content-wrap .banner-dsc-content .dscText {
  max-width: 765px;
}
.innerPage-banner-sec .innerPage-banner-content .banner-content-wrap .banner-dsc-content .dscText > *:last-child {
  margin-bottom: 0;
}
.innerPage-banner-sec .innerPage-banner-content .banner-content-wrap .banner-dsc-content .dscText p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #ffffff;
}
@media screen and (max-width: 991px) {
  .innerPage-banner-sec .innerPage-banner-content .banner-content-wrap .banner-dsc-content .dscText p {
    font-size: 17px;
  }
}
@media screen and (max-width: 575px) {
  .innerPage-banner-sec .innerPage-banner-content .banner-content-wrap .banner-dsc-content .dscText p {
    font-size: 16px;
  }
}
.innerPage-banner-sec .innerPage-banner-content .banner-content-wrap .banner-dsc-content .dscText ul {
  margin: 0;
  padding-left: 18px;
}
.innerPage-banner-sec .innerPage-banner-content .banner-content-wrap .banner-dsc-content .dscText ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  color: #EFF0F0;
}
.innerPage-banner-sec .innerPage-banner-content .banner-content-wrap .banner-dsc-content .dscText ol {
  margin: 0;
  padding-left: 18px;
}
.innerPage-banner-sec .innerPage-banner-content .banner-content-wrap .banner-dsc-content .dscText ol li {
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  color: #EFF0F0;
}
.innerPage-banner-sec .innerPage-banner-content .banner-content-wrap .banner-dsc-content .btn-holder {
  margin-top: 20px;
}
@media screen and (min-width: 992px) {
  .innerPage-banner-sec .innerPage-banner-content .banner-content-wrap .banner-dsc-content .btn-holder {
    margin-top: 30px;
  }
}
.innerPage-banner-sec .innerPage-banner-breadcrumb {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  top: 120px;
}
@media screen and (max-width: 991px) {
  .innerPage-banner-sec .innerPage-banner-breadcrumb {
    top: 95px;
  }
}
.innerPage-banner-sec .innerPage-banner-breadcrumb .page-breadcrumb-holder.breadcrumb {
  margin: 0;
}
.innerPage-banner-sec .innerPage-banner-breadcrumb .page-breadcrumb-holder .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  font-size: 12px;
  font-weight: 400;
  color: #949EB0;
}
.innerPage-banner-sec .innerPage-banner-breadcrumb .page-breadcrumb-holder .breadcrumb-item {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
  color: #949EB0;
}
.innerPage-banner-sec .innerPage-banner-breadcrumb .page-breadcrumb-holder .breadcrumb-item a {
  color: #949EB0;
}
.innerPage-banner-sec .innerPage-banner-breadcrumb .page-breadcrumb-holder .breadcrumb-item.active {
  color: #4CDDD4;
}

.goBackLink-holder {
  background-color: #ab1e2d;
  width: 50px;
  padding: 10px 5px;
  position: fixed;
  top: 50%;
  left: 0;
  z-index: 9;
}
.goBackLink-holder img {
  width: 12px;
}
.goBackLink-holder .goBackLink {
  display: flex;
  flex-direction: column;
}
.goBackLink-holder .goBackLink .goBackLinkText {
  color: #ffffff;
  font-size: 11px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0.21em;
  display: inline-block;
  margin-top: 5px;
}

.learnMore-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #4CDDD4;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 1.2px;
  padding-top: 5px;
  padding-bottom: 5px;
  background: transparent;
  border-width: 0 0 1px 0;
  padding-left: 0;
  padding-right: 0;
}
.learnMore-link::after {
  content: "";
  display: block;
  background-color: #4CDDD4;
  width: 0%;
  transform-origin: bottom right;
  height: 2px;
  position: absolute;
  opacity: 1;
  bottom: 0;
  transition: all 0.3s ease-in-out;
  right: 0;
  left: 0;
  top: auto;
}
.learnMore-link:hover {
  text-decoration: none;
  color: #ffffff;
}
.learnMore-link:hover::after {
  width: 100%;
}

.pageTop-sec {
  padding-top: 50px;
  padding-bottom: 0;
}
.pageTop-sec .breadcrumb {
  margin-bottom: 0;
}
.pageTop-sec .page-breadcrumb-holder .breadcrumb-item + .breadcrumb-item::before {
  content: "\f0da";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 9px;
  color: #737373;
  line-height: 1;
  top: 2px;
  position: relative;
}
.pageTop-sec .page-breadcrumb-holder .breadcrumb-item {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: #091E3F;
  margin-top: 5px;
  margin-bottom: 5px;
}
.pageTop-sec .page-breadcrumb-holder .breadcrumb-item a {
  color: #091E3F;
}
.pageTop-sec .page-breadcrumb-holder .breadcrumb-item.active {
  color: #091E3F;
}
.pageTop-sec .heading-info-content .headingText {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  line-height: 1.3;
  color: #000000;
}
@media screen and (min-width: 576px) {
  .pageTop-sec .heading-info-content .headingText {
    font-size: 36px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .pageTop-sec .heading-info-content .headingText {
    font-size: 38px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .pageTop-sec .heading-info-content .headingText {
    font-size: 44px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1200px) {
  .pageTop-sec .heading-info-content .headingText {
    font-size: 48px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1400px) {
  .pageTop-sec .heading-info-content .headingText {
    font-size: 48px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1800px) {
  .pageTop-sec .heading-info-content .headingText {
    font-size: 48px;
    line-height: 1.3;
  }
}
.pageTop-sec .heading-info-content .infoText {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}
.pageTop-sec .heading-info-content .infoText strong {
  color: #000000;
}

.nodata-content-wrap .nodata-content .nodata-img-holder {
  width: 220px;
  height: 220px;
  background-color: rgba(27, 31, 73, 0.3);
  border-radius: 100%;
  padding: 50px;
}
.nodata-content-wrap .nodata-content .nodata-img-holder img {
  width: 100%;
}
.nodata-content-wrap .nodata-content .nodata-content-holder {
  padding-left: 50px;
}
.nodata-content-wrap .nodata-content .nodata-content-holder .headingText {
  color: #ffffff;
  line-height: 1.3;
  font-size: 40px;
  font-weight: 400;
}
.nodata-content-wrap .nodata-content .nodata-content-holder .text1 {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  margin: 0;
}
.nodata-content-wrap .nodata-content .nodata-content-holder p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 300;
  margin: 0;
}

.fp-watermark {
  display: none !important;
}

.alamLoader-holder img {
  width: 80px;
}

.splitAniText {
  opacity: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.splitAniText .char {
  transform: translateY(115px);
  transition: transform 0.5s;
  opacity: 0;
}
.splitAniText .word {
  transform: translateY(115px);
  transition: transform 0.5s;
  opacity: 0;
}

.liveChat-box {
  bottom: 53px;
  right: 2%;
  z-index: 2;
  cursor: pointer;
}
.liveChat-box img {
  filter: brightness(0.3) invert(1);
}

.fancybox__footer {
  display: none;
}

.cta-sec {
  background-image: url("../images/whoWeServe/cta-bg.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
}
.cta-sec:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(9, 30, 63, 0.6);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
}
.cta-sec.darkOverlay:after {
  background-color: rgba(9, 30, 63, 0.8);
}
.cta-sec .cta-content-wrap {
  width: 100%;
  position: relative;
  z-index: 2;
}
.cta-sec .cta-content-wrap .cta-content-holder {
  width: 100%;
}
.cta-sec .cta-content-wrap .cta-content-holder .sec-heading-wrap {
  max-width: 100%;
}

.afterHeader {
  height: 100px;
  background: linear-gradient(180deg, #091e3f, transparent 100%);
}

.page404 {
  padding: 60px 0 90px !important;
  background-size: 100% auto;
  font-weight: 400;
}
@media (max-width: 991.5px) {
  .page404 {
    padding: 60px 0 70px !important;
  }
}
.page404 h1 {
  font-size: 26px;
  line-height: 1.3;
  color: #091E3F;
  font-weight: 700;
  margin-bottom: 15px;
}
@media screen and (min-width: 576px) {
  .page404 h1 {
    font-size: 28px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .page404 h1 {
    font-size: 30px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .page404 h1 {
    font-size: 30px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1200px) {
  .page404 h1 {
    font-size: 32px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1400px) {
  .page404 h1 {
    font-size: 32px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1800px) {
  .page404 h1 {
    font-size: 32px;
    line-height: 1.3;
  }
}
.page404 .content404 {
  width: 560px;
  max-width: 100%;
  margin: 0 auto;
  padding: 30px 30px;
  border-radius: 10px;
  border: 2px solid #AB1E2D;
}
.page404 .content404 p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 25px;
}
.page404 .titleBox {
  padding: 35px 40px 42px;
  width: 800px;
  width: 100%;
  margin: 0 auto;
  border: 3px solid #AB1E2D;
  border-radius: 12px;
  background-color: #ffffff;
}
@media (max-width: 575.5px) {
  .page404 .titleBox {
    padding: 21px 25px 27px;
  }
}
.page404 .titleBox .btn {
  margin-top: 10px;
}
@media (max-width: 991.5px) {
  .page404 .titleBox .btn {
    margin-top: 0;
  }
}

.thankYou .thankyouPage {
  padding: 35px 40px 42px;
  max-width: 800px;
  margin: 0 auto;
  border: 3px solid #026b02;
  border-radius: 12px;
  text-align: center;
}
@media (max-width: 1199.5px) {
  .thankYou .thankyouPage {
    max-width: 730px;
  }
}
@media (max-width: 575.5px) {
  .thankYou .thankyouPage {
    padding: 21px 25px 27px;
  }
}
.thankYou .thankyouPage figure {
  margin-bottom: 25px;
}
.thankYou .thankyouPage p {
  font-size: 17px;
  line-height: 28px;
}

.coverimg img {
  -o-object-fit: cover !important;
  object-fit: cover !important;
}

.newSlideWrap .swiper-pagination-bullets.swiper-pagination-horizontal {
  position: static !important;
  height: auto;
  line-height: 1;
  margin: 10px 0 -20px 0;
}
@media (max-width: 1199.8px) {
  .newSlideWrap .swiper-pagination-bullets.swiper-pagination-horizontal {
    margin-bottom: 10px;
  }
}

.wpcf7-form-control-wrap[data-name=Termofuse] .wpcf7-not-valid-tip {
  display: none;
}

.page-template-default .default-general-content .wp-block-columns .wp-block-column .wp-block-image {
  position: relative;
  padding: 66.6666666667% 0 0 0;
  margin-bottom: 50px;
  /*&:hover{
    img{
      transform: scale3d(1.1, 1.1, 1.1);
    }
  }*/
}
.page-template-default .default-general-content .wp-block-columns .wp-block-column .wp-block-image img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  margin: 0;
}
.page-template-default .default-general-content .wp-block-columns .wp-block-column .wp-block-image figcaption {
  font-size: 14px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 40px;
  height: auto;
  z-index: 1;
  margin: 0;
  padding: 10px 0px;
  color: #000000;
}

.blockImg-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.blockImg-wrap .blockImg-holder {
  position: relative;
  overflow: hidden;
}
.blockImg-wrap .blockImg-holder img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.banner-sec {
  width: 100%;
  position: relative;
  background-color: #091E3F;
  overflow: hidden;
}
.banner-sec .banner-sec-inr {
  width: 100%;
}
.banner-sec .banner-image-height {
  position: relative;
  width: 0;
  height: 100vh;
  min-height: 500px;
}
@media screen and (max-width: 991px) {
  .banner-sec .banner-image-height {
    min-height: 500px;
    height: auto;
  }
}
.banner-sec .bannerSwiper {
  height: calc(100% - 80px);
  width: 100%;
}
.banner-sec .bannerSwiper .swiper-slide {
  justify-content: flex-start;
}
.banner-sec .bannerSwiperThumb {
  height: 80px;
  box-sizing: border-box;
  padding: 0 10px;
}
.banner-sec .bannerSwiperThumb .swiper-slide {
  width: 20%;
  height: 100%;
  opacity: 1;
  align-items: flex-start;
  cursor: pointer;
}
.banner-sec .bannerSwiperThumb .swiper-slide .bannerSwiperThumb-slide-item {
  width: 100%;
  padding: 0 20px;
  position: relative;
}
.banner-sec .bannerSwiperThumb .swiper-slide .bannerSwiperThumb-slide-item:before, .banner-sec .bannerSwiperThumb .swiper-slide .bannerSwiperThumb-slide-item:after {
  content: "";
  background-color: #EFF0F0;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 0;
}
.banner-sec .bannerSwiperThumb .swiper-slide .bannerSwiperThumb-slide-item:before {
  left: -4px;
}
.banner-sec .bannerSwiperThumb .swiper-slide .bannerSwiperThumb-slide-item:after {
  right: -4px;
}
.banner-sec .bannerSwiperThumb .swiper-slide .bannerSwiperThumb-slide-item .itemText {
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  text-align: center;
  color: #ffffff;
  width: 100%;
  position: relative;
  padding: 18px 0 15px;
}
@media screen and (min-width: 992px) {
  .banner-sec .bannerSwiperThumb .swiper-slide .bannerSwiperThumb-slide-item .itemText {
    font-size: 14px;
    line-height: 20px;
  }
}
.banner-sec .bannerSwiperThumb .swiper-slide .bannerSwiperThumb-slide-item .itemText:before {
  content: "";
  border: 1px dashed #ffffff;
  left: 0;
  right: 0;
  position: absolute;
  top: 4px;
}
.banner-sec .bannerSwiperThumb .swiper-slide-thumb-active .bannerSwiperThumb-slide-item:before {
  background-color: #4CDDD4;
}
.banner-sec .bannerSwiperThumb .swiper-slide-thumb-active .bannerSwiperThumb-slide-item .itemText {
  color: #4CDDD4;
}
.banner-sec .bannerSwiperThumb .swiper-slide-thumb-active .bannerSwiperThumb-slide-item .itemText:before {
  border: 1px dashed #4CDDD4;
}
@supports not (-webkit-touch-callout: none) {
  .banner-sec .banner-content-holder {
    background-image: none !important;
  }
}
@supports (-webkit-touch-callout: none) {
  .banner-sec .banner-content-holder {
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
  }
  .banner-sec .banner-content-holder:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(9, 30, 63, 0.5);
    z-index: 2;
  }
}
.banner-sec .banner-image-wrap {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.banner-sec .banner-image-wrap:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(9, 30, 63, 0.5);
  z-index: 2;
}
.banner-sec .banner-image-wrap .banner-image-holder {
  width: 100%;
  height: 100%;
}
.banner-sec .banner-image-wrap .banner-image-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right;
     object-position: right;
}
.banner-sec .banner-image-wrap video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}
.banner-sec .banner-image-wrap iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}
.banner-sec .banner-image-wrap.banner-vimeo-video {
  width: 100%;
  bottom: 0;
  top: 0;
  padding-bottom: 0;
  transform: translateX(0%) translateY(0%);
  left: 0;
  padding-bottom: calc(var(--video--height) / var(--video--width) * 100%);
  overflow: hidden;
  max-width: 100%;
  bottom: 0;
  top: 0;
}
@media screen and (min-width: 1200px) {
  .banner-sec .banner-image-wrap.banner-vimeo-video {
    --video--width: 1100;
    --video--height: 618;
    width: 100%;
    bottom: 0;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    left: 50%;
    height: 100%;
  }
}
@media screen and (min-width: 1500px) {
  .banner-sec .banner-image-wrap.banner-vimeo-video {
    --video--width: 1100;
    --video--height: 618;
  }
}
.banner-sec .banner-image-wrap.banner-vimeo-video iframe,
.banner-sec .banner-image-wrap.banner-vimeo-video object,
.banner-sec .banner-image-wrap.banner-vimeo-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
}
.banner-sec .banner-image-wrap.banner-youtube-video {
  width: 100%;
  bottom: 0;
  top: 0;
  padding-bottom: 0;
  transform: translateX(0%) translateY(0%);
  left: 0;
}
@media screen and (min-width: 1200px) {
  .banner-sec .banner-image-wrap.banner-youtube-video {
    --video--width: 1100;
    --video--height: 618;
    padding-bottom: calc(var(--video--height) / var(--video--width) * 100%);
    overflow: hidden;
    width: 100%;
    bottom: 0;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    left: 50%;
    height: 100%;
  }
}
@media screen and (min-width: 1500px) {
  .banner-sec .banner-image-wrap.banner-youtube-video {
    --video--width: 1100;
    --video--height: 618;
  }
}
.banner-sec .banner-image-wrap.banner-youtube-video iframe,
.banner-sec .banner-image-wrap.banner-youtube-video object,
.banner-sec .banner-image-wrap.banner-youtube-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-sec .banner-content-wrap {
  z-index: 2;
  position: relative;
  width: 100%;
  padding-top: 96px;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .banner-sec .banner-content-wrap {
    padding-top: 58px;
  }
}
.banner-sec .banner-content-wrap .banner-dsc-content {
  width: 100%;
  padding: 30px 0;
  max-width: 670px;
}
@media screen and (max-width: 991px) {
  .banner-sec .banner-content-wrap .banner-dsc-content {
    margin: 0 auto;
  }
}
.banner-sec .banner-content-wrap .banner-dsc-content .headingText {
  font-size: 34px;
  line-height: 1.2;
  color: #ffffff;
  font-weight: 700;
}
@media screen and (min-width: 576px) {
  .banner-sec .banner-content-wrap .banner-dsc-content .headingText {
    font-size: 36px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .banner-sec .banner-content-wrap .banner-dsc-content .headingText {
    font-size: 38px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .banner-sec .banner-content-wrap .banner-dsc-content .headingText {
    font-size: 44px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1200px) {
  .banner-sec .banner-content-wrap .banner-dsc-content .headingText {
    font-size: 48px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1400px) {
  .banner-sec .banner-content-wrap .banner-dsc-content .headingText {
    font-size: 48px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1800px) {
  .banner-sec .banner-content-wrap .banner-dsc-content .headingText {
    font-size: 48px;
    line-height: 1.3;
  }
}
.banner-sec .banner-content-wrap .banner-dsc-content .dscText {
  max-width: 475px;
}
.banner-sec .banner-content-wrap .banner-dsc-content .dscText > *:last-child {
  margin-bottom: 0;
}
.banner-sec .banner-content-wrap .banner-dsc-content .dscText p {
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  text-align: left;
  color: #EFF0F0;
  margin-bottom: 10px;
}
@media screen and (max-width: 991px) {
  .banner-sec .banner-content-wrap .banner-dsc-content .dscText p {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .banner-sec .banner-content-wrap .banner-dsc-content .dscText p {
    font-size: 15px;
  }
}
.banner-sec .banner-content-wrap .banner-dsc-content .dscText ul {
  margin: 0;
  padding-left: 18px;
}
.banner-sec .banner-content-wrap .banner-dsc-content .dscText ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  color: #EFF0F0;
}
.banner-sec .banner-content-wrap .banner-dsc-content .btn-holder {
  margin-top: 30px;
}
@media screen and (min-width: 992px) {
  .banner-sec .banner-content-wrap .banner-dsc-content .btn-holder {
    margin-top: 40px;
  }
}

.bannerBottom-counter-sec {
  width: 100%;
  padding: 40px 0;
  background: linear-gradient(180.82deg, #abc4b7 0.32%, #ffffff 89.21%);
}
.bannerBottom-counter-sec .bannerBottom-counter-content {
  max-width: 1150px;
  margin: 0 auto;
}
.bannerBottom-counter-sec .counter-content-block-holder {
  width: 180px;
  min-height: 179px;
  background-color: #ffffff;
  margin: 0 auto;
  padding: 25px 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  height: 100%;
}
@media screen and (min-width: 1200px) {
  .bannerBottom-counter-sec .counter-content-block-holder {
    padding: 25px 15px;
    width: 190px;
  }
}
@media screen and (max-width: 767px) {
  .bannerBottom-counter-sec .counter-content-block-holder {
    padding: 15px 15px;
    width: 100%;
    min-height: auto;
  }
}
.bannerBottom-counter-sec .counter-content-block-holder .counter-content-block {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .bannerBottom-counter-sec .counter-content-block-holder .counter-content-block {
    width: 100%;
  }
}
.bannerBottom-counter-sec .counter-content-block-holder .counter-content-block .counter-content {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .bannerBottom-counter-sec .counter-content-block-holder .counter-content-block .counter-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }
}
.bannerBottom-counter-sec .counter-content-block-holder .counter-content-block .counter-content .icon-holder {
  width: 100%;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .bannerBottom-counter-sec .counter-content-block-holder .counter-content-block .counter-content .icon-holder {
    flex: 0 1 auto;
    width: auto;
    margin: 0;
    flex-shrink: 0;
  }
}
.bannerBottom-counter-sec .counter-content-block-holder .counter-content-block .counter-content .icon-holder img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .bannerBottom-counter-sec .counter-content-block-holder .counter-content-block .counter-content .icon-holder img {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .bannerBottom-counter-sec .counter-content-block-holder .counter-content-block .counter-content .counter-infoText {
    flex: 0 1 auto;
    min-width: 0;
    width: 100%;
    text-align: left;
    padding-left: 10px;
    padding-right: 5px;
  }
}
.bannerBottom-counter-sec .counter-content-block-holder .counter-content-block .counter-content .counter-infoText p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #091E3F;
  margin: 0;
}
@media screen and (max-width: 575px) {
  .bannerBottom-counter-sec .counter-content-block-holder .counter-content-block .counter-content .counter-infoText p {
    font-size: 16px;
    line-height: 20px;
  }
}
.bannerBottom-counter-sec .counter-content-block-holder .counter-content-block .counter-content .counter-number {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .bannerBottom-counter-sec .counter-content-block-holder .counter-content-block .counter-content .counter-number {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .bannerBottom-counter-sec .counter-content-block-holder .counter-content-block .counter-content .counter-number {
    font-size: 26px;
    flex: 0 1 auto;
  }
}

.ourServices-sec {
  width: 100%;
  position: relative;
}
.ourServices-sec .bgPattern-holder {
  width: 400px;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 991px) {
  .ourServices-sec .bgPattern-holder {
    width: 280px;
  }
}
@media screen and (max-width: 767px) {
  .ourServices-sec .bgPattern-holder {
    width: 175px;
  }
}
.ourServices-sec .bgPattern-holder img {
  width: 100%;
  height: auto;
}
.ourServices-sec .sec-heading-wrap {
  max-width: 960px;
  position: relative;
}
.ourServices-sec .ourServices-content-wrap .ourServices-card-group {
  padding: 0;
  margin: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group {
    height: 450px;
    display: flex;
    overflow: hidden;
    border-radius: 10px;
  }
}
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card {
  display: block;
  background-size: cover;
  background-position: 50%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card {
    width: 33.33%;
    height: 450px;
  }
}
@media screen and (max-width: 767px) {
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card {
    margin-top: 30px;
    background-image: none !important;
  }
}
@media screen and (min-width: 768px) {
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .ourServices-card-backgroundImg {
    width: 33.33%;
    height: 450px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
    transition: width 0.4s linear, transform 0.5s linear;
  }
}
@media screen and (max-width: 767px) {
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .ourServices-card-backgroundImg {
    padding-top: 37.3134328358%;
    position: relative;
    background-size: cover;
  }
}
@media screen and (min-width: 768px) {
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card:nth-child(1) .card-body-holder {
    left: 0;
  }
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card:nth-child(1) .ourServices-card-backgroundImg {
    left: 0;
    right: auto;
    background-position: left;
  }
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card:nth-child(2) .card-body-holder {
    left: 33.33%;
  }
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card:nth-child(2) .ourServices-card-backgroundImg {
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card:nth-child(3) .card-body-holder {
    left: 66.66%;
  }
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card:nth-child(3) .ourServices-card-backgroundImg {
    left: auto;
    right: 0;
    background-position: right;
  }
}
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-body-holder {
  padding: 30px 25px 25px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 3;
  position: relative;
}
@media screen and (min-width: 768px) {
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-body-holder {
    padding: 20px 25px 15px;
    position: absolute;
    z-index: 3;
    top: 0;
    bottom: 0;
    right: 0;
    width: 33.33%;
  }
}
@media screen and (min-width: 1200px) {
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-body-holder {
    padding: 40px 45px 35px;
  }
}
@media screen and (max-width: 767px) {
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-body-holder {
    padding: 15px 0 0;
    background-color: rgba(0, 0, 0, 0);
  }
}
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-body-holder .ourServices-card-link {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-body-holder .service-heading-content {
  width: 100%;
  margin-bottom: 10px;
}
@media screen and (min-width: 1200px) {
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-body-holder .service-heading-content {
    margin-bottom: 15px;
  }
}
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-body-holder .service-heading-content .service-title {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 17px;
  color: #ABC4B7;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-body-holder .service-heading-content .service-title {
    color: #091E3F;
  }
}
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-body-holder .service-heading-content .service-headingText {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  color: #ffffff;
  transition: all ease-in-out 500ms;
  -webkit-transition: all ease-in-out 500ms;
  -moz-transition: all ease-in-out 500ms;
  -ms-transition: all ease-in-out 500ms;
}
@media screen and (min-width: 768px) {
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-body-holder .service-heading-content .service-headingText {
    font-size: 20px;
    line-height: 26px;
  }
}
@media screen and (min-width: 1200px) {
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-body-holder .service-heading-content .service-headingText {
    color: #949EB0;
    font-size: 24px;
    line-height: 34px;
  }
}
@media screen and (max-width: 767px) {
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-body-holder .service-heading-content .service-headingText {
    color: #091E3F;
  }
}
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-body-holder .service-dsc-content-holder {
  transition: all ease-in-out 500ms;
  -webkit-transition: all ease-in-out 500ms;
  -moz-transition: all ease-in-out 500ms;
  -ms-transition: all ease-in-out 500ms;
  flex: 1 1 0;
  overflow: auto;
}
@media screen and (min-width: 768px) {
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-body-holder .service-dsc-content-holder {
    max-height: 255px;
  }
}
@media screen and (min-width: 1200px) {
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-body-holder .service-dsc-content-holder {
    opacity: 0;
    transform: translateY(100px);
  }
}
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-body-holder .service-dsc-content-holder .dscText p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #EFF0F0;
  margin-bottom: 12px;
}
@media screen and (max-width: 991px) {
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-body-holder .service-dsc-content-holder .dscText p {
    font-size: 14px;
  }
}
@media screen and (max-width: 575px) {
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-body-holder .service-dsc-content-holder .dscText p {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-body-holder .service-dsc-content-holder .dscText p {
    color: #484D55;
  }
}
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-body-holder .service-dsc-content-holder .dscText ul {
  list-style-type: square;
}
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-body-holder .service-dsc-content-holder .dscText ul,
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-body-holder .service-dsc-content-holder .dscText ol {
  margin: 0;
  padding-left: 18px;
}
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-body-holder .service-dsc-content-holder .dscText ul li,
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-body-holder .service-dsc-content-holder .dscText ol li {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #EFF0F0;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-body-holder .service-dsc-content-holder .dscText ul li,
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-body-holder .service-dsc-content-holder .dscText ol li {
    color: #484D55;
  }
}
@media screen and (max-width: 767px) {
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-footer {
    margin-top: 15px;
  }
}
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-footer .linkBtn {
  display: flex;
  overflow: hidden;
}
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-footer .linkBtn .inText {
  font-size: 16px;
  font-weight: 700;
  line-height: 23px;
  color: #ffffff;
  margin-left: 8px;
  transition: all ease-in-out 500ms;
  -webkit-transition: all ease-in-out 500ms;
  -moz-transition: all ease-in-out 500ms;
  -ms-transition: all ease-in-out 500ms;
  display: inline-block;
  transform-origin: left;
}
@media screen and (min-width: 1200px) {
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-footer .linkBtn .inText {
    transform: translateX(-100%);
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-footer .linkBtn .inText {
    color: #091E3F;
  }
}
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-footer .linkBtn .arrowIcon {
  display: flex;
}
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-footer .linkBtn .arrowIcon img {
  width: 32px;
  height: 22px;
}
@media screen and (max-width: 767px) {
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card .card-footer .linkBtn .arrowIcon img {
    filter: brightness(1) invert(1);
  }
}
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card:not(:last-child) .card-body-holder {
  border-top: none;
}
@media screen and (min-width: 768px) {
  .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card:not(:last-child) .card-body-holder {
    border-right: 1px solid rgba(239, 240, 240, 0.5);
  }
}
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card:hover .ourServices-card-backgroundImg, .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card.firstTimeHovered .ourServices-card-backgroundImg {
  width: 100%;
  transform: translateX(0);
}
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card:hover .card-footer .linkBtn .inText, .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card.firstTimeHovered .card-footer .linkBtn .inText {
  transform: translateX(0);
  opacity: 1;
}
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card:hover .service-heading-content .service-headingText, .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card.firstTimeHovered .service-heading-content .service-headingText {
  color: #ffffff;
}
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card:hover .card-body-holder .service-dsc-content-holder, .ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card.firstTimeHovered .card-body-holder .service-dsc-content-holder {
  opacity: 1;
  transform: translateY(0);
}
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card:nth-child(2):hover ~ .ourServices-card:nth-child(1) .ourServices-card-backgroundImg {
  transform: translateX(-100%);
  transition-delay: 0.2s;
}
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card:nth-child(2):hover ~ .ourServices-card:nth-child(3) .ourServices-card-backgroundImg {
  transform: translateX(100%);
  transition-delay: 0.2s;
}
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card:nth-child(1):hover ~ .ourServices-card:nth-child(3) .ourServices-card-backgroundImg {
  transform: translateX(100%);
  transition-delay: 0.2s;
  z-index: 1;
}
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card:nth-child(1):hover ~ .ourServices-card:nth-child(2) .ourServices-card-backgroundImg {
  transform: translateX(100%);
  transition-delay: 0.1s;
  z-index: 1;
}
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card:nth-child(3):hover ~ .ourServices-card:nth-child(1) .ourServices-card-backgroundImg {
  transform: translateX(-100%);
  transition-delay: 0.2s;
}
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card:nth-child(3):hover ~ .ourServices-card:nth-child(2) .ourServices-card-backgroundImg {
  transform: translateX(-100%);
  transition-delay: 0.2s;
}
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card:nth-child(1):hover,
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card:nth-child(1).firstTimeHovered {
  z-index: 2;
  transition-delay: 0s;
}
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card:nth-child(2) {
  transition-delay: 0s;
}
.ourServices-sec .ourServices-content-wrap .ourServices-card-group .ourServices-card:nth-child(3):hover {
  transition-delay: 0s;
}

.successStoriesAndClient-sec {
  width: 100%;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #abc4b7 100%);
}
.successStoriesAndClient-sec .patternBg-img-holder {
  width: 88.5%;
  left: -1%;
  bottom: -5%;
  position: absolute;
  max-width: 1100px;
}
.successStoriesAndClient-sec .patternBg-img-holder img {
  width: 100%;
  height: auto;
}
.successStoriesAndClient-sec .successStories-content-wrap {
  width: 100%;
  position: relative;
  z-index: 1;
}
.successStoriesAndClient-sec .successStories-content-wrap .successStoriesSwiperButtonHolder-container {
  width: 100%;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .successStoriesAndClient-sec .successStories-content-wrap .successStoriesSwiperButtonHolder-container {
    padding-right: calc((100vw - 720px) / 2);
  }
}
@media screen and (min-width: 992px) {
  .successStoriesAndClient-sec .successStories-content-wrap .successStoriesSwiperButtonHolder-container {
    padding-right: calc((100vw - 960px) / 2);
  }
}
@media screen and (min-width: 1200px) {
  .successStoriesAndClient-sec .successStories-content-wrap .successStoriesSwiperButtonHolder-container {
    padding-right: calc((100vw - 1140px) / 2);
  }
}
@media screen and (min-width: 1300px) {
  .successStoriesAndClient-sec .successStories-content-wrap .successStoriesSwiperButtonHolder-container {
    padding-right: calc((100vw - 1240px) / 2);
  }
}
.successStoriesAndClient-sec .successStories-content-wrap .comnStyle-swiper-button {
  display: flex;
  justify-content: flex-end;
  padding: 10px 0;
}
@media screen and (max-width: 767px) {
  .successStoriesAndClient-sec .successStories-content-wrap .comnStyle-swiper-button {
    position: relative;
    bottom: 0;
    right: 0;
    margin-left: auto;
    margin-right: 0;
    padding: 0;
  }
}

.successStories-slide-item {
  width: 100%;
}
.successStories-slide-item .inner-block {
  padding: 15px;
  background-color: #ffffff;
  border-radius: 10px;
}
.successStories-slide-item .inner-block .blockImg-wrap .blockImg-holder {
  padding-top: 56.1764705882%;
  border-radius: 10px;
}
.successStories-slide-item .inner-block .blockImg-wrap .blockImg-holder::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.successStories-slide-item .inner-block .blockImg-wrap .videoPopup-btn-holder {
  width: 62px;
  height: 62px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  border-radius: 100%;
  position: absolute;
  z-index: 3;
}
.successStories-slide-item .inner-block .blockImg-wrap .videoPopup-btn-holder .video-play-btn {
  width: 62px;
  height: 62px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in-out;
  border: 6px solid rgba(255, 255, 255, 0);
}
.successStories-slide-item .inner-block .blockImg-wrap .videoPopup-btn-holder .video-play-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.successStories-slide-item .inner-block .blockImg-wrap .videoPopup-btn-holder .video-play-btn:hover {
  box-shadow: 0px 1px 15px 0px rgba(0, 0, 0, 0.3);
  border: 6px solid rgba(255, 255, 255, 0.4);
}
.successStories-slide-item .inner-block .desInfo-content {
  width: 100%;
  text-align: center;
  padding-top: 15px;
}
.successStories-slide-item .inner-block .desInfo-content .titleText {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 0;
  color: #091E3F;
}
.successStories-slide-item .inner-block .desInfo-content .dsc-text ul.smInfoList {
  list-style: none;
  margin: 5px 0 0;
  padding: 0;
}
.successStories-slide-item .inner-block .desInfo-content .dsc-text ul.smInfoList li {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: #737373;
  padding: 0 10px;
  position: relative;
  width: 100%;
  margin-top: 2px;
}
.successStories-slide-item .inner-block .desInfo-content .dsc-text ul.smInfoList li:first-child {
  margin-top: 0;
}

.ourClients-content-sec {
  width: 100%;
  position: relative;
  z-index: 1;
}
.ourClients-content-sec .ourClients-content-wrap {
  padding: 38px 0;
  width: 100%;
  border-radius: 10px;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .ourClients-content-sec .ourClients-content-wrap {
    padding: 25px 0;
  }
}
.ourClients-content-sec .ourClients-content-wrap .swiper .swiper-slide {
  width: auto;
  max-width: 150px;
}
.ourClients-content-sec .ourClients-content-wrap .ourClients-slider-holder {
  width: 100%;
  overflow: hidden;
}
.ourClients-content-sec .ourClients-content-wrap .ourClients-slider-holder .ourClients-logoImg-wrap {
  height: 34px;
  padding: 0 10px;
  max-width: 200px;
}
.ourClients-content-sec .ourClients-content-wrap .ourClients-slider-holder .ourClients-logoImg-wrap .image-holder {
  width: 100%;
  height: 34px;
  display: flex;
  align-items: center;
}
.ourClients-content-sec .ourClients-content-wrap .ourClients-slider-holder .ourClients-logoImg-wrap .image-holder img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.whyChoose-sec {
  width: 100%;
  position: relative;
}
.whyChoose-sec .bgPattern-holder {
  width: 320px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.whyChoose-sec .bgPattern-holder img {
  width: 100%;
  height: auto;
}
.whyChoose-sec .whyChoose-content-wrap .blockImg-wrap {
  border-radius: 10px;
}
.whyChoose-sec .whyChoose-content-wrap .blockImg-wrap .blockImg-holder {
  padding-top: 125.641025641%;
  border-radius: 10px;
}
.whyChoose-sec .whyChoose-content-wrap .whyChoose-iconDscTextBox-holder {
  row-gap: 18px;
}
@media screen and (min-width: 1200px) {
  .whyChoose-sec .whyChoose-content-wrap .whyChoose-iconDscTextBox-holder {
    row-gap: 25px;
  }
}
.whyChoose-sec .whyChoose-content-wrap .whyChoose-iconDscTextBox-holder .iconDscTextBox-item .box-inner .icon-holder {
  width: 30px;
  height: 38px;
  flex-shrink: 0;
  margin-top: 4px;
}
.whyChoose-sec .whyChoose-content-wrap .whyChoose-iconDscTextBox-holder .iconDscTextBox-item .box-inner .icon-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.whyChoose-sec .whyChoose-content-wrap .whyChoose-iconDscTextBox-holder .iconDscTextBox-item .box-inner .dscContent-holder {
  flex: 0 1 auto;
}
.whyChoose-sec .whyChoose-content-wrap .whyChoose-iconDscTextBox-holder .iconDscTextBox-item .box-inner .dscContent-holder .headingText {
  color: #091E3F;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 5px;
}
@media screen and (max-width: 1199px) {
  .whyChoose-sec .whyChoose-content-wrap .whyChoose-iconDscTextBox-holder .iconDscTextBox-item .box-inner .dscContent-holder .headingText {
    font-size: 16px;
  }
}
.whyChoose-sec .whyChoose-content-wrap .whyChoose-iconDscTextBox-holder .iconDscTextBox-item .box-inner .dscContent-holder .dscText p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #091E3F;
  margin: 0;
}

.recentEvents-sec {
  width: 100%;
  background-color: #EFF0F0;
}
.recentEvents-sec .recentEvents-content-wrap {
  width: 100%;
}
.recentEvents-sec .recentEvents-content-wrap .recentEventsSwiperButtonHolder {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .recentEvents-sec .recentEvents-content-wrap .recentEventsSwiperButtonHolder {
    width: 625px;
    margin-top: -46px;
  }
}
@media screen and (min-width: 1200px) {
  .recentEvents-sec .recentEvents-content-wrap .recentEventsSwiperButtonHolder {
    width: 790px;
  }
}
.recentEvents-sec .recentEvents-content-wrap .recentEvents-slider-holder {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .recentEvents-sec .recentEvents-content-wrap .recentEvents-slider-holder {
    min-height: 290px;
  }
}
@media screen and (min-width: 1200px) {
  .recentEvents-sec .recentEvents-content-wrap .recentEvents-slider-holder {
    min-height: 375px;
  }
}
.recentEvents-sec .recentEvents-content-wrap .recentEvents-slider-holder .swiper-slide {
  transition: all 0.4s ease-in-out;
}
@media screen and (min-width: 768px) {
  .recentEvents-sec .recentEvents-content-wrap .recentEvents-slider-holder .swiper-slide.swiper-slide-active {
    transform: scale(1);
    width: 500px !important;
  }
  .recentEvents-sec .recentEvents-content-wrap .recentEvents-slider-holder .swiper-slide.swiper-slide-active .recentEvents-slide-item .inner-block .desInfo-content-wrap {
    opacity: 1;
  }
  .recentEvents-sec .recentEvents-content-wrap .recentEvents-slider-holder .swiper-slide.swiper-slide-active .recentEvents-slide-item .inner-block .desInfo-content-wrap .topInfo-content {
    transform: translateX(0px);
  }
  .recentEvents-sec .recentEvents-content-wrap .recentEvents-slider-holder .swiper-slide.swiper-slide-active .recentEvents-slide-item .inner-block .desInfo-content-wrap .desInfo-content .headingText {
    transform: translateY(0px);
  }
}
@media screen and (min-width: 1200px) {
  .recentEvents-sec .recentEvents-content-wrap .recentEvents-slider-holder .swiper-slide.swiper-slide-active {
    width: 652px !important;
  }
}
.recentEvents-sec .recentEvents-content-wrap .recentEvents-slider-holder .swiper-slide .recentEvents-slide-item {
  width: 100%;
}
.recentEvents-sec .recentEvents-content-wrap .recentEvents-slider-holder .swiper-slide .recentEvents-slide-item .inner-block {
  width: 100%;
  position: relative;
}
.recentEvents-sec .recentEvents-content-wrap .recentEvents-slider-holder .swiper-slide .recentEvents-slide-item .inner-block .blockImg-wrap .blockImg-holder {
  padding-top: 57.5153374233%;
  border-radius: 10px;
}
.recentEvents-sec .recentEvents-content-wrap .recentEvents-slider-holder .swiper-slide .recentEvents-slide-item .inner-block .desInfo-content-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s linear;
  transition-delay: 0.2s;
}
@media screen and (min-width: 768px) {
  .recentEvents-sec .recentEvents-content-wrap .recentEvents-slider-holder .swiper-slide .recentEvents-slide-item .inner-block .desInfo-content-wrap {
    opacity: 0;
  }
}
.recentEvents-sec .recentEvents-content-wrap .recentEvents-slider-holder .swiper-slide .recentEvents-slide-item .inner-block .desInfo-content-wrap .topInfo-content {
  display: flex;
  width: 100%;
  padding: 20px;
  transition: all 0.4s linear;
  transition-delay: 0.3s;
}
@media screen and (min-width: 576px) {
  .recentEvents-sec .recentEvents-content-wrap .recentEvents-slider-holder .swiper-slide .recentEvents-slide-item .inner-block .desInfo-content-wrap .topInfo-content {
    padding: 30px;
  }
}
@media screen and (min-width: 768px) {
  .recentEvents-sec .recentEvents-content-wrap .recentEvents-slider-holder .swiper-slide .recentEvents-slide-item .inner-block .desInfo-content-wrap .topInfo-content {
    transform: translateX(-100px);
  }
}
.recentEvents-sec .recentEvents-content-wrap .recentEvents-slider-holder .swiper-slide .recentEvents-slide-item .inner-block .desInfo-content-wrap .topInfo-content .dateTextTag {
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  background: rgba(0, 0, 0, 0.3);
  padding: 3px 14px;
  border-radius: 5px;
  border: 1px solid #ffffff;
  display: inline-block;
  color: #ffffff;
}
.recentEvents-sec .recentEvents-content-wrap .recentEvents-slider-holder .swiper-slide .recentEvents-slide-item .inner-block .desInfo-content-wrap .desInfo-content {
  width: 100%;
  min-height: 100px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 15px 20px;
}
@media screen and (min-width: 576px) {
  .recentEvents-sec .recentEvents-content-wrap .recentEvents-slider-holder .swiper-slide .recentEvents-slide-item .inner-block .desInfo-content-wrap .desInfo-content {
    padding: 20px 30px;
  }
}
@media screen and (min-width: 768px) {
  .recentEvents-sec .recentEvents-content-wrap .recentEvents-slider-holder .swiper-slide .recentEvents-slide-item .inner-block .desInfo-content-wrap .desInfo-content {
    padding: 30px;
  }
}
.recentEvents-sec .recentEvents-content-wrap .recentEvents-slider-holder .swiper-slide .recentEvents-slide-item .inner-block .desInfo-content-wrap .desInfo-content::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 47.32%);
}
.recentEvents-sec .recentEvents-content-wrap .recentEvents-slider-holder .swiper-slide .recentEvents-slide-item .inner-block .desInfo-content-wrap .desInfo-content .headingText {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  position: relative;
  z-index: 1;
  transition: all 0.4s linear;
  transition-delay: 0.3s;
}
@media screen and (min-width: 576px) {
  .recentEvents-sec .recentEvents-content-wrap .recentEvents-slider-holder .swiper-slide .recentEvents-slide-item .inner-block .desInfo-content-wrap .desInfo-content .headingText {
    font-size: 22px;
    line-height: 30px;
  }
}
@media screen and (min-width: 768px) {
  .recentEvents-sec .recentEvents-content-wrap .recentEvents-slider-holder .swiper-slide .recentEvents-slide-item .inner-block .desInfo-content-wrap .desInfo-content .headingText {
    transform: translateY(100px);
    font-size: 26px;
    line-height: 35px;
  }
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
  margin-left: 2px !important;
}

.marqueeSec {
  background-color: #091E3F;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
  padding: 10px 0;
}
.marqueeSec p {
  margin-bottom: 0 !important;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.marqueeSec .swiper-slide {
  visibility: hidden;
  opacity: 0;
}
.marqueeSec .swiper-slide.swiper-slide-active {
  visibility: visible;
  opacity: 1;
}
.marqueeSec .swiper-slide a {
  color: #ffffff;
}
.marqueeSec .swiper-slide a:hover {
  color: #4cddd4;
}

.marquee {
  --marquee--repeat-count: 5;
  --marquee--base-duration: .8s;
  --marquee--repeat-size: calc(100% / var(--marquee--repeat-count));
  --marquee--double-size: calc(var(--marquee--repeat-size) * 2);
  --marquee--duration: calc(
  	var(--marquee--base-duration) * var(--char-count, 20)
  );
  --marquee--direction: -1;
  overflow: hidden;
  width: 100%;
  background-color: #091E3F;
  color: #ffffff;
  font-size: 26px;
  line-height: 1.2;
  padding: 17px 0;
}
.marquee p {
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 0;
}

.marquee--inner {
  width: -moz-max-content;
  width: max-content;
  display: flex;
}
@media (prefers-reduced-motion: no-preference) {
  .marquee--inner {
    animation: marquee var(--marquee--duration) infinite linear, reduce-marquee var(--marquee--duration) infinite linear paused;
    animation-composition: add;
  }
  .marquee--inner:hover {
    animation-play-state: running;
  }
}

@keyframes marquee {
  from {
    transform: translateX(calc(-1 * var(--marquee--double-size) - var(--marquee--double-size) * var(--marquee--direction, 1)));
  }
  to {
    transform: translateX(calc(var(--marquee--double-size) * -1));
  }
}
@keyframes reduce-marquee {
  from {
    transform: translateX(calc(var(--marquee--repeat-size) * var(--marquee--direction, 1)));
  }
  to {
    transfrom: translateX(calc(var(--marquee--double-size) * -1));
  }
}
.cadTab-sec {
  width: 100%;
}
.cadTab-sec .cadTab-nav-wrap {
  background-color: #ABC4B7;
}
.cadTab-sec .cadTab-nav-wrap .cadTab-nav-container-inner .cadTab-nav-headingHolder {
  flex-shrink: 0;
  min-width: 200px;
}
@media screen and (min-width: 992px) {
  .cadTab-sec .cadTab-nav-wrap .cadTab-nav-container-inner .cadTab-nav-headingHolder {
    min-width: 260px;
  }
}
.cadTab-sec .cadTab-nav-wrap .cadTab-nav-container-inner .cadTab-nav-headingHolder .headingText {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  color: #091E3F;
}
.cadTab-sec .cadTab-nav-wrap .cadTab-nav-container-inner .cadTab-nav-holder {
  flex: 0 1 auto;
  min-width: 0;
  overflow: auto;
  scrollbar-face-color: rgba(0, 0, 0, 0.3);
  scrollbar-shadow-color: rgba(0, 0, 0, 0.1);
  scrollbar-highlight-color: rgba(0, 0, 0, 0.1);
  scrollbar-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.1);
  scrollbar-width: thin;
}
.cadTab-sec .cadTab-nav-wrap .cadTab-nav-container-inner .cadTab-nav-holder::-webkit-scrollbar {
  width: 7px;
}
.cadTab-sec .cadTab-nav-wrap .cadTab-nav-container-inner .cadTab-nav-holder::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.cadTab-sec .cadTab-nav-wrap .cadTab-nav-container-inner .cadTab-nav-holder::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}
.cadTab-sec .cadTab-nav-wrap .cadTab-nav-container-inner .cadTab-nav-holder::-webkit-scrollbar-button {
  background-color: rgba(0, 0, 0, 0.1);
}
.cadTab-sec .cadTab-nav-wrap .cadTab-nav-container-inner .cadTab-nav-holder .nav-pills {
  white-space: nowrap;
  flex-wrap: nowrap;
}
@media screen and (max-width: 575px) {
  .cadTab-sec .cadTab-nav-wrap .cadTab-nav-container-inner .cadTab-nav-holder .nav-pills li:first-child .nav-link {
    border-left: none;
  }
}
.cadTab-sec .cadTab-nav-wrap .cadTab-nav-container-inner .cadTab-nav-holder .nav-pills .nav-link {
  padding: 20px 25px;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  color: #ffffff;
  border-radius: 0;
  border-left: 1px solid #C9E0D4;
}
@media screen and (min-width: 1200px) {
  .cadTab-sec .cadTab-nav-wrap .cadTab-nav-container-inner .cadTab-nav-holder .nav-pills .nav-link {
    padding: 20px 50px;
    font-size: 18px;
  }
}
@media screen and (max-width: 575px) {
  .cadTab-sec .cadTab-nav-wrap .cadTab-nav-container-inner .cadTab-nav-holder .nav-pills .nav-link {
    padding: 15px 15px;
  }
}
.cadTab-sec .cadTab-nav-wrap .cadTab-nav-container-inner .cadTab-nav-holder .nav-pills .nav-link.active,
.cadTab-sec .cadTab-nav-wrap .cadTab-nav-container-inner .cadTab-nav-holder .nav-pills .show > .nav-link {
  background-color: #091E3F;
}
.cadTab-sec .cadTab-content {
  width: 100%;
}
.cadTab-sec .cadTab-content .tab-pane.show .tab-dscContent-holder {
  max-height: 600px;
  transition: max-height 0.5s linear;
  transition-delay: 0.2s;
}
.cadTab-sec .cadTab-content .tab-dscContent-holder {
  width: 100%;
  max-height: 0;
  transition: max-height 0.5s linear;
  background-color: #091E3F;
  transition-delay: 0.3s;
  overflow: hidden;
  position: relative;
}
.cadTab-sec .cadTab-content .tab-dscContent-holder .cadTab-close-btn {
  color: #ffffff;
  font-size: 26px;
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: transparent;
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  z-index: 2;
  background-color: #091E3F;
}
@media screen and (min-width: 1200px) {
  .cadTab-sec .cadTab-content .tab-dscContent-holder .cadTab-close-btn {
    top: 30px;
    right: 30px;
  }
}
.cadTab-sec .cadTab-content .tab-dscContent-holder .blockImg-wrap .blockImg-holder {
  padding-top: 46.6119096509%;
}
.cadTab-sec .cadTab-content .tab-dscContent-holder .comn-dscText-holder .heading-block .headingText {
  color: #ffffff;
}
.cadTab-sec .cadTab-content .tab-dscContent-holder .comn-dscText-holder .comn-dscText p {
  color: #ffffff;
}
.cadTab-sec .cadTab-content .tab-dscContent-holder .container {
  padding-top: 40px;
  padding-bottom: 40px;
}

.cadBss-sec {
  width: 100%;
  position: relative;
}
.cadBss-sec:before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #ffffff 16.74%, #abc4b7 123.09%), 30%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0.5;
}
.cadBss-sec .cadBss-sec-left-col .sec-heading-wrap {
  position: sticky;
  top: 100px;
}
.cadBss-sec .latestUpdates-list-wrap {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .cadBss-sec .latestUpdates-list-wrap {
    padding-left: 40px;
  }
}
.cadBss-sec .venues-img-wrap {
  width: 182px;
  height: 215px;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
  border-radius: 0;
  z-index: 2;
  transform: translateX(-100%);
}
@media screen and (max-width: 1199px) {
  .cadBss-sec .venues-img-wrap {
    visibility: hidden !important;
    opacity: 0 !important;
  }
}
.cadBss-sec .venues-img-wrap .venues-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  border-radius: 0;
}
.cadBss-sec .latestUpdates-list-item {
  width: 100%;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #a3a3a3;
}
.cadBss-sec .latestUpdates-list-item .imageBoxNew {
  position: absolute;
  right: 20px;
  top: -13px;
  width: 182px;
  height: 215px;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  border-radius: 0;
  z-index: 1;
  display: none;
}
@media (max-width: 1199.9px) {
  .cadBss-sec .latestUpdates-list-item .imageBoxNew {
    top: -56px;
  }
}
@media (min-width: 991.9px) {
  .cadBss-sec .latestUpdates-list-item .imageBoxNew {
    display: block;
  }
}
.cadBss-sec .latestUpdates-list-item .imageBoxNew img {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  border-radius: 0;
}
.cadBss-sec .latestUpdates-list-item:last-child .imageBoxNew {
  top: -54px;
}
@media (max-width: 1199.9px) {
  .cadBss-sec .latestUpdates-list-item:last-child .imageBoxNew {
    top: -76px;
  }
}
.cadBss-sec .latestUpdates-list-item:hover {
  z-index: 2;
}
.cadBss-sec .latestUpdates-list-item:hover .imageBoxNew {
  visibility: visible;
  opacity: 1;
}
.cadBss-sec .latestUpdates-list-item:not(.currentActive) {
  pointer-events: none;
}
.cadBss-sec .latestUpdates-list-item.currentActive .latestUpdates-list-item-link:hover {
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .cadBss-sec .latestUpdates-list-item.currentActive .latestUpdates-list-item-link:hover .latestUpdates-list-item-inner .headingText_holder .headingText {
    font-weight: 700;
    color: #AB1E2D;
  }
  .cadBss-sec .latestUpdates-list-item.currentActive .latestUpdates-list-item-link:hover .latestUpdates-list-item-inner .headingText_holder:after {
    filter: none;
  }
}
.cadBss-sec .latestUpdates-list-item .latestUpdates-list-item-link {
  padding: 20px 0;
  display: block;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 576px) {
  .cadBss-sec .latestUpdates-list-item .latestUpdates-list-item-link {
    padding: 24px 0;
  }
}
@media screen and (min-width: 1200px) {
  .cadBss-sec .latestUpdates-list-item .latestUpdates-list-item-link {
    padding: 32px 0;
  }
}
.cadBss-sec .latestUpdates-list-item .latestUpdates-list-item-link .latestUpdates-list-item-inner .headingText_holder {
  width: 100%;
  position: relative;
  padding-right: 30px;
}
.cadBss-sec .latestUpdates-list-item .latestUpdates-list-item-link .latestUpdates-list-item-inner .headingText_holder:after {
  background-image: url(../images/icons/arrow-right-red.svg);
  content: "";
  position: absolute;
  right: 0;
  background-size: 18px auto;
  width: 18px;
  height: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  filter: brightness(0) invert(0);
}
.cadBss-sec .latestUpdates-list-item .latestUpdates-list-item-link .latestUpdates-list-item-inner .headingText_holder .headingText {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #000000;
  transition: all 0.3s linear;
}
@media screen and (min-width: 576px) {
  .cadBss-sec .latestUpdates-list-item .latestUpdates-list-item-link .latestUpdates-list-item-inner .headingText_holder .headingText {
    font-size: 22px;
  }
}
@media screen and (min-width: 1200px) {
  .cadBss-sec .latestUpdates-list-item .latestUpdates-list-item-link .latestUpdates-list-item-inner .headingText_holder .headingText {
    font-size: 26px;
  }
}

.cadServices-sec .cadServices-sec-left-col .sec-heading-wrap {
  max-width: 290px;
  position: sticky;
  top: 100px;
}
.cadServices-sec .cadServices-main-content-wrap .cadService-item-block .numberText-holder {
  width: 100%;
  padding-bottom: 15px;
  border-bottom: 1px solid #091E3F;
}
@media screen and (min-width: 768px) {
  .cadServices-sec .cadServices-main-content-wrap .cadService-item-block .numberText-holder {
    padding-bottom: 25px;
  }
}
.cadServices-sec .cadServices-main-content-wrap .cadService-item-block .numberText-holder .numberText {
  color: #091E3F;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}
.cadServices-sec .cadServices-main-content-wrap .cadService-item-block .dscText-holder {
  padding-top: 15px;
}
@media screen and (min-width: 768px) {
  .cadServices-sec .cadServices-main-content-wrap .cadService-item-block .dscText-holder {
    padding-top: 25px;
  }
}
.cadServices-sec .cadServices-main-content-wrap .cadService-item-block .dscText-holder .headingText {
  color: #091E3F;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  color: #091E3F;
}
@media screen and (min-width: 1200px) {
  .cadServices-sec .cadServices-main-content-wrap .cadService-item-block .dscText-holder .headingText {
    font-size: 24px;
  }
}
.cadServices-sec .cadServices-main-content-wrap .cadService-item-block .dscText-holder .dscText {
  width: 100%;
  margin-top: 10px;
}
@media screen and (min-width: 1200px) {
  .cadServices-sec .cadServices-main-content-wrap .cadService-item-block .dscText-holder .dscText {
    margin-top: 18px;
  }
}
.cadServices-sec .cadServices-main-content-wrap .cadService-item-block .dscText-holder .dscText p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.cadSlider-sec {
  width: 100%;
}
.cadSlider-sec .cadSlider-holder {
  width: 100%;
}
.cadSlider-sec .cadSlider-holder .cadSliderSwiper {
  background-color: #091E3F;
}
.cadSlider-sec .cadSlider-holder .cadSlider-blockImg-wrap {
  width: 100%;
}
.cadSlider-sec .cadSlider-holder .cadSlider-blockImg-wrap .cadSlider-blockImg-holder {
  padding-top: 71.7171717172%;
  position: relative;
  overflow: hidden;
}
.cadSlider-sec .cadSlider-holder .cadSlider-blockImg-wrap .cadSlider-blockImg-holder img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.cadSlider-sec .cadSlider-holder .cadSlider-dscContent-holder {
  width: 100%;
  padding: 40px;
  height: 100%;
  max-height: 400px;
  overflow: auto;
}
@media screen and (min-width: 992px) {
  .cadSlider-sec .cadSlider-holder .cadSlider-dscContent-holder {
    max-height: 300px;
  }
}
@media screen and (min-width: 1200px) {
  .cadSlider-sec .cadSlider-holder .cadSlider-dscContent-holder {
    padding: 65px;
    max-height: 430px;
  }
}
.cadSlider-sec .cadSlider-holder .cadSlider-dscContent-holder .comn-dscText-holder .heading-block .headingText {
  color: #ffffff;
}
.cadSlider-sec .cadSlider-holder .cadSlider-dscContent-holder .comn-dscText-holder .comn-dscText p {
  color: #ffffff;
}
.cadSlider-sec .cadSlider-holder .comnStyle-swiper-button {
  margin-bottom: -45px;
  margin-top: 0 !important;
}
@media screen and (min-width: 1200px) {
  .cadSlider-sec .cadSlider-holder .comnStyle-swiper-button {
    margin-top: -65px !important;
    margin-bottom: 0;
  }
}
.cadSlider-sec .cadSlider-holder .comnStyle-swiper-button .swiper-button-next,
.cadSlider-sec .cadSlider-holder .comnStyle-swiper-button .swiper-button-prev {
  background-color: #8190a7;
  border: none;
  color: #ffffff;
}
@media screen and (min-width: 1200px) {
  .cadSlider-sec .cadSlider-holder .comnStyle-swiper-button .swiper-button-next,
  .cadSlider-sec .cadSlider-holder .comnStyle-swiper-button .swiper-button-prev {
    width: 65px;
    height: 65px;
  }
}
.cadSlider-sec .cadSlider-holder .comnStyle-swiper-button .swiper-button-next.swiper-button-disabled,
.cadSlider-sec .cadSlider-holder .comnStyle-swiper-button .swiper-button-prev.swiper-button-disabled {
  opacity: 0.4;
}
.cadSlider-sec .cadSlider-holder .comnStyle-swiper-button .swiper-button-next:not(.swiper-button-disabled),
.cadSlider-sec .cadSlider-holder .comnStyle-swiper-button .swiper-button-prev:not(.swiper-button-disabled) {
  color: #ffffff;
}
.cadSlider-sec .cadSlider-holder .comnStyle-swiper-button .swiper-button-next:after, .cadSlider-sec .cadSlider-holder .comnStyle-swiper-button .swiper-button-prev:after {
  font-size: 22px;
}

.cad-cta-sec {
  padding: 60px 0;
  background-image: url("../images/cad/cadCta-bg.png");
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 992px) {
  .cad-cta-sec {
    padding: 90px 0;
  }
}
.cad-cta-sec .cta-content-wrap {
  width: 100%;
}
.cad-cta-sec .cta-content-wrap .cta-content-holder {
  width: 100%;
}
.cad-cta-sec .cta-content-wrap .cta-content-holder .sec-heading-wrap {
  max-width: 800px;
}

.career-banner .banner-dsc-content {
  max-width: 536px;
}

.scrollPyMenu {
  background-color: #ABC4B7;
  z-index: 1000;
  position: sticky;
  top: 60px;
  transition: visibility 0.3s linear, opacity 0.3s linear;
}
@media (max-width: 991.5px) {
  .scrollPyMenu {
    display: none;
  }
}
.scrollPyMenu.notVisible {
  visibility: hidden;
  opacity: 0;
}
.scrollPyMenu .menuWrap {
  overflow: auto;
}
.scrollPyMenu .menuWrap ul {
  list-style: none;
  white-space: nowrap;
  display: flex;
  min-width: 100%;
  justify-content: space-between;
}
@media (max-width: 991.5px) {
  .scrollPyMenu .menuWrap ul {
    display: block;
    justify-content: baseline;
  }
}
.scrollPyMenu .menuWrap ul li {
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  color: #ffffff;
  display: inline-block;
  position: relative;
  z-index: 0;
}
@media (max-width: 1199.5px) {
  .scrollPyMenu .menuWrap ul li {
    font-size: 16px;
    font-weight: 500;
  }
}
@media (max-width: 991.5px) {
  .scrollPyMenu .menuWrap ul li {
    margin-right: 30px;
  }
}
.scrollPyMenu .menuWrap ul li:last-child {
  margin-right: 0;
}
.scrollPyMenu .menuWrap ul li a {
  display: block;
  color: #ffffff;
  padding: 20px 0px;
}
.scrollPyMenu .menuWrap ul li a:hover {
  color: #091E3F;
}
.scrollPyMenu .menuWrap ul li a:after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.3s;
  height: 2px;
  margin: auto;
  width: 0;
  background-color: #091E3F;
}
.scrollPyMenu .menuWrap ul li.active a {
  color: #091E3F;
}
.scrollPyMenu .menuWrap ul li.active a:after {
  width: 100%;
}

.lifeAtDin {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(171, 196, 183, 0.5) 100%);
}
.lifeAtDin .bgimg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 782px;
  max-width: 50%;
  opacity: 0.04;
}
.lifeAtDin .bgimg img {
  width: 100%;
  height: auto;
}
.lifeAtDin .container {
  position: relative;
  z-index: 1;
}
.lifeAtDin .sec-heading-wrap {
  max-width: 657px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.lifeAtDin .lifeAtSlideWrap .listInner figure {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: #ffffff;
}
.lifeAtDin .lifeAtSlideWrap .listInner figure img {
  display: block;
  margin: auto;
  max-width: 90%;
}
.lifeAtDin .lifeAtSlideWrap .listInner .textBox {
  width: calc(100% - 56px);
  padding-left: 16px;
}
.lifeAtDin .lifeAtSlideWrap .listInner .textBox h3 {
  font-size: 16px;
  line-height: 22.7px;
  margin-bottom: 8px;
  color: #091E3F;
}
.lifeAtDin .lifeAtSlideWrap .listInner .textBox p {
  line-height: 22.7px;
  font-weight: 400;
}
.lifeAtDin .lifeAtSlideWrap .listInner .textBox p:last-child {
  margin-bottom: 0 !important;
}
.lifeAtDin .sectionButton {
  margin-top: 57px;
}
@media (max-width: 991.5px) {
  .lifeAtDin .sectionButton {
    margin-top: 30px;
  }
}

.workPlay {
  overflow: hidden;
}
.workPlay .gridWrap {
  margin-left: -2px;
  margin-right: -2px;
  margin-top: -2px;
  background: #ffffff;
  position: relative;
  z-index: 0;
}
.workPlay .gridWrap:after {
  content: "";
  display: table;
  clear: both;
}
.workPlay .gridWrap .grid {
  padding: 2px;
  float: left;
  padding: 2px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.workPlay .gridWrap .grid .contentBox {
  position: absolute;
  z-index: 1;
  bottom: 50px;
  left: 80px;
  right: 80px;
  max-width: 457px;
  margin: auto;
  color: #ffffff;
}
@media (max-width: 1199.5px) {
  .workPlay .gridWrap .grid .contentBox {
    left: 40px;
    right: 40px;
    bottom: 40px;
    max-width: 100%;
    overflow: auto;
    max-height: calc(100% - 80px);
  }
}
@media (max-width: 575.5px) {
  .workPlay .gridWrap .grid .contentBox {
    left: 30px;
    bottom: 30px;
    right: 30px;
    max-height: calc(100% - 60px);
  }
}
.workPlay .gridWrap .grid .contentBox h2 {
  font-size: 32px;
  line-height: 45.5px;
  margin-bottom: 16px;
}
@media (max-width: 991.5px) {
  .workPlay .gridWrap .grid .contentBox h2 {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media (max-width: 767.5px) {
  .workPlay .gridWrap .grid .contentBox h2 {
    font-size: 28px;
  }
}
@media (max-width: 575.5px) {
  .workPlay .gridWrap .grid .contentBox h2 {
    font-size: 26px;
  }
}
.workPlay .gridWrap .grid .contentBox p {
  font-size: 18px;
  line-height: 25.6px;
  font-weight: 400;
  margin-bottom: 0;
}
.workPlay .gridWrap .grid .contentBox .icon {
  margin-bottom: 34px;
}
@media (max-width: 575.5px) {
  .workPlay .gridWrap .grid .contentBox .icon {
    margin-bottom: 20px;
  }
}
.workPlay .gridWrap .grid figure {
  position: relative;
  z-index: 0;
  width: 100%;
}
.workPlay .gridWrap .grid figure img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.workPlay .gridWrap .grid:nth-child(1) {
  width: 50%;
}
@media (max-width: 991.5px) {
  .workPlay .gridWrap .grid:nth-child(1) {
    width: 100%;
  }
}
.workPlay .gridWrap .grid:nth-child(1) figure {
  padding-top: 71.5959004392%;
}
@media (max-width: 991.5px) {
  .workPlay .gridWrap .grid:nth-child(1) figure {
    padding-top: 50%;
  }
}
@media (max-width: 767.5px) {
  .workPlay .gridWrap .grid:nth-child(1) figure {
    padding-top: 58.8235294118%;
  }
}
@media (max-width: 575.5px) {
  .workPlay .gridWrap .grid:nth-child(1) figure {
    padding-top: 71.4285714286%;
  }
}
@media (max-width: 479.5px) {
  .workPlay .gridWrap .grid:nth-child(1) figure {
    padding-top: 90.9090909091%;
  }
}
@media (max-width: 375.5px) {
  .workPlay .gridWrap .grid:nth-child(1) figure {
    padding-top: 111.1111111111%;
  }
}
.workPlay .gridWrap .grid:nth-child(2) {
  width: 25%;
}
@media (max-width: 575.5px) {
  .workPlay .gridWrap .grid:nth-child(2) {
    width: 50%;
  }
}
.workPlay .gridWrap .grid:nth-child(2) figure {
  padding-top: 71.3017751479%;
}
.workPlay .gridWrap .grid:nth-child(3) {
  width: 25%;
}
@media (max-width: 575.5px) {
  .workPlay .gridWrap .grid:nth-child(3) {
    width: 50%;
  }
}
.workPlay .gridWrap .grid:nth-child(3) figure {
  padding-top: 71.3017751479%;
}
.workPlay .gridWrap .grid:nth-child(4) {
  width: 25%;
}
@media (max-width: 575.5px) {
  .workPlay .gridWrap .grid:nth-child(4) {
    width: 50%;
  }
}
.workPlay .gridWrap .grid:nth-child(4) figure {
  padding-top: 143.7869822485%;
}
@media (max-width: 575.5px) {
  .workPlay .gridWrap .grid:nth-child(4) figure {
    padding-top: 144.674556213%;
  }
}
.workPlay .gridWrap .grid:nth-child(5) {
  width: 25%;
}
@media (max-width: 575.5px) {
  .workPlay .gridWrap .grid:nth-child(5) {
    width: 50%;
  }
}
.workPlay .gridWrap .grid:nth-child(5) figure {
  padding-top: 71.3017751479%;
}
.workPlay .gridWrap .grid:nth-child(6) {
  width: 25%;
}
@media (max-width: 575.5px) {
  .workPlay .gridWrap .grid:nth-child(6) {
    width: 50%;
  }
}
.workPlay .gridWrap .grid:nth-child(6) figure {
  padding-top: 71.3017751479%;
}
.workPlay .gridWrap .grid:nth-child(7) {
  width: 25%;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 575.5px) {
  .workPlay .gridWrap .grid:nth-child(7) {
    width: 50%;
  }
}
.workPlay .gridWrap .grid:nth-child(7) figure {
  padding-top: 71.3017751479%;
}
.workPlay .gridWrap .grid:nth-child(8) {
  width: 25%;
  position: absolute;
  left: 25%;
  bottom: 0;
}
@media (max-width: 575.5px) {
  .workPlay .gridWrap .grid:nth-child(8) {
    width: 50%;
    position: static;
    float: right;
  }
}
.workPlay .gridWrap .grid:nth-child(8) figure {
  padding-top: 71.3017751479%;
}

.stockOption {
  background-color: #091E3F;
  color: #ffffff;
  font-weight: 400;
}
.stockOption .image figure {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 71.7171717172%;
}
.stockOption .image figure img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.stockOption .sec-heading-wrap .sec-heading-block .mainHeadingText {
  color: #ffffff;
}
.stockOption .contentBox {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 991.5px) {
  .stockOption .contentBox {
    max-width: 100%;
    padding: 30px 12px;
  }
}
.stockOption .contentBox p {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 22px;
}
.stockOption .contentBox p:last-child {
  margin-bottom: 0;
}
.stockOption .contentBox ul {
  list-style: none;
  font-size: 18px;
  line-height: 24px;
}
.stockOption .contentBox ul li {
  background: url("../images/icons/check_circle_red.svg") no-repeat 0 2px;
  padding-left: 32px;
  margin-bottom: 14px;
}
.stockOption .contentBox ul li:last-child {
  margin-bottom: 0;
}

.thePeople {
  background: url("../images/career/peoplebg.jpg") no-repeat center center;
  background-size: cover;
  color: #ffffff;
}
.thePeople .sec-heading-wrap {
  margin-bottom: 40px;
  max-width: 636px;
}
.thePeople .sec-heading-wrap .sec-heading-block .mainHeadingText {
  color: #ffffff;
}
.thePeople .sec-heading-wrap p {
  font-weight: 400;
  font-size: 18px;
  line-height: 25.6px;
  margin-bottom: 0;
}
.thePeople .swiper--top {
  margin-bottom: 24px;
}
.thePeople .swiper--top:last-child {
  margin-bottom: 0;
}
.thePeople .swiper-wrapper {
  transition-timing-function: linear !important;
  position: relative;
}
.thePeople .swiper-wrapper .swiper-slide {
  width: 120px;
}
.thePeople .swiper-wrapper .swiper-slide figure {
  border-radius: 15px;
  overflow: hidden;
  height: 120px;
}
.thePeople .swiper-wrapper .swiper-slide figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.currentOpening .no-results {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: #AB1E2D;
  margin: 30px 0 0 0;
}
.currentOpening .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100% !important;
}
.currentOpening .bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  line-height: 48px;
}
.currentOpening .sec-heading-wrap {
  max-width: 530px;
}
.currentOpening .sec-heading-wrap .sec-heading-block .mainHeadingText {
  color: #000000;
}
.currentOpening .sec-heading-wrap p {
  font-weight: 400;
  font-size: 18px;
  line-height: 25.6px;
  margin-bottom: 0;
}
@media (max-width: 991.5px) {
  .currentOpening .filterSec {
    justify-content: inherit !important;
    margin-top: 20px;
  }
}
.currentOpening .filterSec .bottom-infoText {
  font-size: 14px;
  margin: 8px 0 0;
  font-weight: 500;
}
.currentOpening .filterSec .bottom-infoText img {
  width: 60px;
}
.currentOpening .filterSec .alm-filters-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-bottom: 0;
}
@media (max-width: 575.5px) {
  .currentOpening .filterSec .alm-filters-container {
    width: 100%;
  }
}
.currentOpening .filterSec .alm-filters-container .alm-filters--submit {
  margin: 0;
}
@media (max-width: 575.5px) {
  .currentOpening .filterSec .alm-filters-container .alm-filters--submit {
    margin-top: 12px;
  }
}
.currentOpening .filterSec .alm-filters-container .alm-filters--controls {
  margin-bottom: 0;
  position: relative;
  z-index: 0;
  width: auto;
}
@media (max-width: 575.5px) {
  .currentOpening .filterSec .alm-filters-container .alm-filters--controls {
    position: static;
  }
}
.currentOpening .filterSec .alm-filters-container .alm-filters--controls button[type=reset] {
  padding: 0;
  color: #AB1E2D;
  position: absolute;
  left: 100%;
  font-size: 20px;
  margin-left: 8px;
  top: 8px;
  line-height: 1;
  z-index: 1;
}
@media (max-width: 575.5px) {
  .currentOpening .filterSec .alm-filters-container .alm-filters--controls button[type=reset] {
    left: auto;
    margin-left: 0;
    top: 9px;
    right: 12px;
  }
}
.currentOpening .filterSec .alm-filters-container .alm-filters--controls .alm-filters--submit {
  margin-left: 12px;
}
.currentOpening .filterSec .alm-filters-container .alm-filters--controls .alm-filters--submit button[type=button] {
  padding: 0 10px !important;
  height: 48px;
  border-radius: 8px;
  width: 48px;
  background: #091E3F;
}
.currentOpening .filterSec .alm-filters-container .alm-filters--controls .alm-filters--submit button[type=button]:hover {
  background: #949EB0;
}
.currentOpening .filterSec .alm-filters-container .alm-filters--controls .alm-filters--submit button[type=button]:after {
  font-family: "Font Awesome 6 Free";
  content: "\f002";
}
.currentOpening .filterSec .alm-filters-container .alm-filters--controls .alm-filters--submit button[type=button] span {
  display: none !important;
}
.currentOpening .filterSec .alm-filters-container .alm-filter--inner {
  padding: 0;
}
.currentOpening .filterSec .alm-filters-container .alm-filter--search {
  width: 277px;
  margin-right: 12px;
}
@media (max-width: 1199.5px) {
  .currentOpening .filterSec .alm-filters-container .alm-filter--search {
    width: 190px;
  }
}
@media (max-width: 575.5px) {
  .currentOpening .filterSec .alm-filters-container .alm-filter--search {
    width: 100%;
    margin-right: 0;
  }
}
.currentOpening .filterSec .alm-filters-container .alm-filter--search .alm-filter--text-wrap.has-button input[type=text] {
  border: 1px solid #949EB0;
  height: 48px;
  border-radius: 8px !important;
  background-color: #ffffff;
  color: #949EB0 !important;
  font-weight: 400;
  font-size: 16px;
  width: 100%;
  padding: 0 24px;
}
.currentOpening .filterSec .alm-filters-container .alm-filter--search .alm-filter--text-wrap.has-button button {
  display: none !important;
}
.currentOpening .filterSec .alm-filters-container .alm-filter--taxonomy {
  width: 193px;
}
@media (max-width: 575.5px) {
  .currentOpening .filterSec .alm-filters-container .alm-filter--taxonomy {
    width: calc(100% - 60px);
    margin-top: 15px;
  }
}
.currentOpening .filterSec .alm-filters-container .alm-filter--select button[type=button] {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  color: #737373;
  padding: 0 24px;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("../images/icons/select-arrow.svg") no-repeat center right 20px #EFF0F0;
}
.currentOpening .filterSec .alm-filters-container .alm-filter--select button[type=button] ::-ms-expand {
  display: none;
}
.currentOpening .filterSec .searchBox {
  width: 277px;
  margin-right: 12px;
}
@media (max-width: 1199.5px) {
  .currentOpening .filterSec .searchBox {
    width: 240px;
  }
}
@media (max-width: 575.5px) {
  .currentOpening .filterSec .searchBox {
    width: 100%;
    margin-right: 0;
  }
}
.currentOpening .filterSec .searchBox input {
  border: 1px solid #949EB0;
  height: 48px;
  border-radius: 8px;
  background-color: #ffffff;
  color: #949EB0;
  font-weight: 400;
  font-size: 16px;
  width: 100%;
  padding: 0 24px;
}
.currentOpening .filterSec .selectBox {
  width: 193px;
}
@media (max-width: 575.5px) {
  .currentOpening .filterSec .selectBox {
    width: 100%;
    margin-top: 15px;
  }
}
.currentOpening .filterSec .selectBox select {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  color: #737373;
  padding: 0 24px;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("../images/icons/select-arrow.svg") no-repeat center right 20px #EFF0F0;
}
.currentOpening .filterSec .selectBox select ::-ms-expand {
  display: none;
}
.currentOpening .jobWrap {
  margin-top: 40px;
  border-top: 1px solid #EFF0F0;
}
.currentOpening .jobWrap .jobList {
  justify-content: space-between;
  border-bottom: 1px solid #EFF0F0;
  padding-top: 32px;
  padding-bottom: 32px;
  width: 100%;
}
.currentOpening .jobWrap .jobList .leftPan {
  max-width: calc(100% - 150px);
}
@media (max-width: 575.5px) {
  .currentOpening .jobWrap .jobList .leftPan {
    max-width: 100%;
    width: 100%;
  }
}
.currentOpening .jobWrap .jobList .leftPan h3 {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 6px;
}
.currentOpening .jobWrap .jobList .leftPan p {
  font-weight: 600;
  line-height: 22.7px;
  margin-bottom: 0;
}
.currentOpening .jobWrap .jobList .leftPan .jobDesc {
  margin-top: 12px;
  margin-bottom: -10px;
}
.currentOpening .jobWrap .jobList .leftPan .jobDesc span {
  display: inline-block;
  vertical-align: top;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  border-radius: 37px;
  border: 1px solid #949EB0;
  margin-right: 4px;
  color: #737373;
  padding: 8px 16px;
  margin-bottom: 10px;
}
.currentOpening .jobWrap .jobList .leftPan .jobDesc span strong {
  font-weight: 600;
}
.currentOpening .jobWrap .jobList .buttonBox {
  width: 90px;
  margin-left: auto;
}
@media (max-width: 575.5px) {
  .currentOpening .jobWrap .jobList .buttonBox {
    margin-top: 20px;
    width: 120px;
  }
}
.currentOpening .jobWrap .jobList .buttonBox .btn {
  min-width: 100%;
  padding: 14px 15px;
}
.currentOpening .jobWrap .jobList .buttonBox .btn i {
  position: relative;
  top: 2px;
}

.whyUsSec .sec-heading-wrap {
  max-width: 610px;
}
.whyUsSec .workWithUsAcc {
  margin-right: 60px;
}
@media (max-width: 1199.5px) {
  .whyUsSec .workWithUsAcc {
    margin-right: 0;
  }
}
.whyUsSec .accordion-button {
  padding: 0 0;
  box-shadow: none !important;
  outline: none !important;
  background-color: transparent !important;
  display: flex;
  width: auto;
  align-items: flex-start;
}
.whyUsSec .accordion-button:focus {
  box-shadow: none !important;
}
.whyUsSec .accordion-button:not(.collapsed) {
  background-color: transparent;
}
.whyUsSec .accordion-button:not(.collapsed) .headingText {
  font-weight: 600 !important;
}
.whyUsSec .accordion-button:after {
  content: none;
}
.whyUsSec .accordion-item {
  border: none;
  margin-bottom: 40px;
  padding-left: 32px;
  overflow: hidden;
  position: relative;
  z-index: 0;
  background-color: transparent;
}
@media (max-width: 991.5px) {
  .whyUsSec .accordion-item {
    padding-left: 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767.5px) {
  .whyUsSec .accordion-item {
    padding-left: 10px;
    margin-bottom: 20px;
  }
}
.whyUsSec .accordion-item:last-child {
  margin-bottom: 0;
}
.whyUsSec .accordion-item .accordion-header .headingIcon {
  width: 48px;
}
@media (max-width: 767.5px) {
  .whyUsSec .accordion-item .accordion-header .headingIcon {
    width: 40px;
  }
}
.whyUsSec .accordion-item .accordion-header .headingIcon img {
  width: auto;
  max-width: 30px;
}
.whyUsSec .accordion-item .accordion-header .headingText {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
}
@media (max-width: 991.5px) {
  .whyUsSec .accordion-item .accordion-header .headingText {
    font-size: 22px;
  }
}
@media (max-width: 575.5px) {
  .whyUsSec .accordion-item .accordion-header .headingText {
    font-size: 20px;
  }
}
.whyUsSec .accordion-body {
  padding: 6px 0 0 48px;
}
@media (max-width: 767.5px) {
  .whyUsSec .accordion-body {
    padding-top: 15px;
    padding-left: 33px;
  }
}
.whyUsSec .accordion-body:after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #091E3F;
}
.whyUsSec .accordion-body p {
  line-height: 22.7px;
  font-weight: 400;
}
.whyUsSec .accordion-body p:last-child {
  margin-bottom: 0;
}
.whyUsSec .accordion-body .blockImg-holder {
  position: relative;
  z-index: 0;
  height: 0;
  overflow: hidden;
  padding-top: 61.9289340102%;
  border-radius: 12px;
  margin-bottom: 15px;
}
.whyUsSec .accordion-body .blockImg-holder img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.whyUsSec .whyUsImage-wrap {
  margin-left: 5px;
}
.whyUsSec .whyUsImage-wrap .workWithImg:not(.active-show) {
  display: none;
}
.whyUsSec .whyUsImage-wrap .workWithImg .blockImg-holder {
  position: relative;
  z-index: 0;
  height: 0;
  overflow: hidden;
  padding-top: 61.9289340102%;
  border-radius: 12px;
}
.whyUsSec .whyUsImage-wrap .workWithImg .blockImg-holder img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.wws001-sec {
  width: 100%;
  position: relative;
  background: linear-gradient(180deg, #abc4b7 -39.57%, #ffffff 49.54%, #abc4b7 113.51%);
}
.wws001-sec .patternBg-img-holder {
  width: 88.5%;
  left: -1%;
  bottom: -5%;
  position: absolute;
  max-width: 1100px;
}
.wws001-sec .patternBg-img-holder img {
  width: 100%;
  height: auto;
}
.wws001-sec .sec-heading-wrap {
  position: sticky;
  top: 100px;
}
.wws001-sec .wws001-content-wrap .blockImg-wrap {
  border-radius: 10px;
  position: sticky;
  top: 110px;
}
@media (min-width: 1200px) {
  .wws001-sec .wws001-content-wrap .blockImg-wrap {
    top: 195px;
  }
}
.wws001-sec .wws001-content-wrap .blockImg-wrap .blockImg-holder {
  padding-top: 102.842377261%;
  border-radius: 10px;
}
.wws001-sec .wws001-content-wrap .wws001-iconDscTextBox-holder {
  row-gap: 17px;
}
@media screen and (min-width: 1200px) {
  .wws001-sec .wws001-content-wrap .wws001-iconDscTextBox-holder {
    row-gap: 24px;
  }
}
.wws001-sec .wws001-content-wrap .wws001-iconDscTextBox-holder .iconDscTextBox-item .box-inner .icon-holder {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  margin-top: 4px;
}
.wws001-sec .wws001-content-wrap .wws001-iconDscTextBox-holder .iconDscTextBox-item .box-inner .icon-holder img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.wws001-sec .wws001-content-wrap .wws001-iconDscTextBox-holder .iconDscTextBox-item .box-inner .dscContent-holder {
  flex: 0 1 auto;
}
.wws001-sec .wws001-content-wrap .wws001-iconDscTextBox-holder .iconDscTextBox-item .box-inner .dscContent-holder .headingText {
  color: #091E3F;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 5px;
}
@media screen and (max-width: 1199px) {
  .wws001-sec .wws001-content-wrap .wws001-iconDscTextBox-holder .iconDscTextBox-item .box-inner .dscContent-holder .headingText {
    font-size: 16px;
  }
}
.wws001-sec .wws001-content-wrap .wws001-iconDscTextBox-holder .iconDscTextBox-item .box-inner .dscContent-holder .dscText p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #737373;
  margin: 0;
}

.wwsServiceAreas-sec {
  width: 100%;
  position: relative;
  background-color: #ffffff;
}
.wwsServiceAreas-sec .patternBg-img-holder {
  width: 427px;
  left: 0;
  bottom: auto;
  top: 100px;
  position: absolute;
}
.wwsServiceAreas-sec .patternBg-img-holder img {
  width: 100%;
  height: auto;
}
.wwsServiceAreas-sec .wwsServiceAreas-sec-left-col .sec-heading-wrap {
  max-width: 380px;
  position: sticky;
  top: 100px;
}
@media (max-width: 767.5px) {
  .wwsServiceAreas-sec .wwsServiceAreas-sec-left-col .sec-heading-wrap {
    max-width: 100%;
  }
}
.wwsServiceAreas-sec .wwsServiceAreas-item {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid #a3a3a3;
}
.wwsServiceAreas-sec .wwsServiceAreas-item:first-child {
  border-top: none;
  padding-top: 0;
}
.wwsServiceAreas-sec .wwsServiceAreas-item .dscText-holder .headingText {
  color: #091E3F;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: #091E3F;
}
@media screen and (min-width: 768px) {
  .wwsServiceAreas-sec .wwsServiceAreas-item .dscText-holder .headingText {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .wwsServiceAreas-sec .wwsServiceAreas-item .dscText-holder .headingText {
    font-size: 26px;
  }
}
.wwsServiceAreas-sec .wwsServiceAreas-item .dscText-holder .dscText {
  width: 100%;
  margin-top: 10px;
}
@media screen and (min-width: 1200px) {
  .wwsServiceAreas-sec .wwsServiceAreas-item .dscText-holder .dscText {
    margin-top: 18px;
  }
}
.wwsServiceAreas-sec .wwsServiceAreas-item .dscText-holder .dscText p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}

.ourUsps-sec {
  width: 100%;
  position: relative;
}
.ourUsps-sec .sec-heading-wrap {
  max-width: 750px;
}
.ourUsps-sec .ourUsps-content-wrap {
  width: 100%;
  margin-top: 40px;
}
.ourUsps-sec .ourUsps-content-wrap .ourUsps-slider-holder .comnStyle-swiper-button .swiper-button-next,
.ourUsps-sec .ourUsps-content-wrap .ourUsps-slider-holder .comnStyle-swiper-button .swiper-button-prev {
  background-color: #8190a7;
  border: none;
}
.ourUsps-sec .ourUsps-content-wrap .ourUsps-slider-holder .comnStyle-swiper-button .swiper-button-next.swiper-button-disabled,
.ourUsps-sec .ourUsps-content-wrap .ourUsps-slider-holder .comnStyle-swiper-button .swiper-button-prev.swiper-button-disabled {
  opacity: 0.5;
}
.ourUsps-sec .ourUsps-content-wrap .ourUsps-slider-holder .comnStyle-swiper-button .swiper-button-next:not(.swiper-button-disabled),
.ourUsps-sec .ourUsps-content-wrap .ourUsps-slider-holder .comnStyle-swiper-button .swiper-button-prev:not(.swiper-button-disabled) {
  color: #091E3F;
}

.ourUsps-slide-item {
  width: 100%;
}
.ourUsps-slide-item .icon-circleBox {
  width: 56px;
  height: 56px;
  padding: 6px;
  background-color: #ffffff;
  border-radius: 100%;
  margin-bottom: 20px;
  overflow: hidden;
}
.ourUsps-slide-item .icon-circleBox .icon-holder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ourUsps-slide-item .icon-circleBox .icon-holder img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
.ourUsps-slide-item .dscText-holder .headingText {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .ourUsps-slide-item .dscText-holder .headingText {
    font-size: 18px;
  }
}
@media screen and (min-width: 1200px) {
  .ourUsps-slide-item .dscText-holder .headingText {
    font-size: 20px;
  }
}
.ourUsps-slide-item .dscText-holder .dscText {
  width: 100%;
  margin-top: 5px;
}
@media screen and (min-width: 1200px) {
  .ourUsps-slide-item .dscText-holder .dscText {
    margin-top: 8px;
  }
}
.ourUsps-slide-item .dscText-holder .dscText p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  color: #ffffff;
}

.ourIndustry-content-wrap {
  width: 100%;
  margin-top: 35px;
}
.ourIndustry-content-wrap .ourIndustry-slider-holder {
  width: 100%;
}
.ourIndustry-content-wrap .ourIndustry-slider-holder .ourIndustry-slide-item {
  width: 100%;
}
.ourIndustry-content-wrap .ourIndustry-slider-holder .ourIndustry-slide-item .inner-block {
  width: 100%;
  position: relative;
}
.ourIndustry-content-wrap .ourIndustry-slider-holder .ourIndustry-slide-item .inner-block:hover .blockImg-wrap .blockImg-holder img {
  transform: scale(1.1);
}
.ourIndustry-content-wrap .ourIndustry-slider-holder .ourIndustry-slide-item .inner-block .linkBtn {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: transparent;
  font-size: 0;
  line-height: 0;
}
.ourIndustry-content-wrap .ourIndustry-slider-holder .ourIndustry-slide-item .inner-block .blockImg-wrap .blockImg-holder {
  padding-top: 48.8059701493%;
}
@media (max-width: 479.5px) {
  .ourIndustry-content-wrap .ourIndustry-slider-holder .ourIndustry-slide-item .inner-block .blockImg-wrap .blockImg-holder {
    min-height: 200px;
  }
}
.ourIndustry-content-wrap .ourIndustry-slider-holder .ourIndustry-slide-item .inner-block .blockImg-wrap .blockImg-holder img {
  transition: 0.3s;
  transform: scale(1);
}
.ourIndustry-content-wrap .ourIndustry-slider-holder .ourIndustry-slide-item .inner-block .desInfo-content-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.ourIndustry-content-wrap .ourIndustry-slider-holder .ourIndustry-slide-item .inner-block .desInfo-content-wrap::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(9, 30, 63, 0.33);
}
.ourIndustry-content-wrap .ourIndustry-slider-holder .ourIndustry-slide-item .inner-block .desInfo-content-wrap .desInfo-content {
  width: 100%;
  min-height: 100px;
  position: relative;
  z-index: 2;
  padding: 15px 20px;
  max-height: 180px;
  overflow: auto;
}
@media screen and (min-width: 576px) {
  .ourIndustry-content-wrap .ourIndustry-slider-holder .ourIndustry-slide-item .inner-block .desInfo-content-wrap .desInfo-content {
    padding: 20px 30px;
    max-height: 250px;
  }
}
@media screen and (min-width: 768px) {
  .ourIndustry-content-wrap .ourIndustry-slider-holder .ourIndustry-slide-item .inner-block .desInfo-content-wrap .desInfo-content {
    padding: 30px;
    max-height: 300px;
  }
}
.ourIndustry-content-wrap .ourIndustry-slider-holder .ourIndustry-slide-item .inner-block .desInfo-content-wrap .desInfo-content .headingText {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .ourIndustry-content-wrap .ourIndustry-slider-holder .ourIndustry-slide-item .inner-block .desInfo-content-wrap .desInfo-content .headingText {
    font-size: 24px;
  }
}
.ourIndustry-content-wrap .ourIndustry-slider-holder .ourIndustry-slide-item .inner-block .desInfo-content-wrap .desInfo-content .dscText {
  margin-top: 5px;
}
.ourIndustry-content-wrap .ourIndustry-slider-holder .ourIndustry-slide-item .inner-block .desInfo-content-wrap .desInfo-content .dscText p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}

.innerPage-banner-sec.contact-banner .banner-image-wrap:before {
  background-color: #091E3F;
  opacity: 0.65;
}
@media (min-width: 1200px) {
  .innerPage-banner-sec.contact-banner .banner-image-height {
    min-height: 624px;
  }
}
.innerPage-banner-sec.contact-banner .banner-dsc-content {
  max-width: 551px;
}
.innerPage-banner-sec.contact-banner .banner-dsc-content p a {
  color: #ffffff;
  font-weight: 700;
}
.innerPage-banner-sec.contact-banner .banner-dsc-content p a:hover {
  color: #4CDDD4;
}

.formSec {
  margin-bottom: 120px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1199.5px) {
  .formSec {
    padding-top: 60px;
    margin-bottom: 0;
  }
}
@media (max-width: 991.5px) {
  .formSec {
    padding-top: 50px;
  }
}
@media (max-width: 767.5px) {
  .formSec {
    padding-top: 40px;
  }
}
.formSec:has(.invalid) {
  margin-bottom: 250px;
}
.formSec h3 {
  font-size: 20px;
  line-height: 28.4px;
  margin-bottom: 4px;
  font-weight: 700;
  color: #4CDDD4;
}
.formSec p {
  font-weight: 40px;
  color: #949EB0;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 19.8px;
}
.formSec .formMain {
  position: absolute;
  z-index: 1;
  right: 0;
  top: -500px;
  width: 536px;
  background-color: #091E3F;
  padding: 30px 36px;
  border-radius: 12px;
  color: #ffffff;
}
@media (max-width: 1199.5px) {
  .formSec .formMain {
    position: static;
    width: 600px;
    max-width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 479.5px) {
  .formSec .formMain {
    padding: 20px 15px;
  }
}
@media (max-width: 767.5px) {
  .formSec .formMain .uploadText {
    font-size: 14px;
  }
}
@media (max-width: 479.5px) {
  .formSec .formMain .uploadText {
    font-size: 0;
    line-height: 0;
  }
  .formSec .formMain .uploadText:after {
    content: "Attachment";
    font-size: 14px;
    line-height: 1;
  }
}
.formSec .privacyText {
  margin-bottom: 0;
  color: #949EB0;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  position: relative;
}
.formSec .privacyText:has(.wpcf7-not-valid) {
  margin-bottom: 12px;
}
.formSec .privacyText .customText {
  padding-left: 30px;
  padding-bottom: 4px;
  display: block;
  margin-top: -22px;
}
.formSec .privacyText .wpcf7-not-valid-tip {
  position: absolute;
  z-index: 0;
  left: 0;
  width: 100%;
  top: 100%;
}
.formSec .privacyText .wpcf7-list-item {
  margin: 0;
}
.formSec .privacyText .wpcf7-form-control-wrap {
  position: static;
  display: inline;
}
.formSec .privacyText .wpcf7-form-control-wrap input {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
}
.formSec .privacyText .wpcf7-form-control-wrap .wpcf7-list-item-label {
  display: none;
}
.formSec .privacyText a {
  font-weight: 600;
  color: #949EB0;
}
.formSec .privacyText a:hover {
  color: #ffffff;
}

.uploadGroup:has(.wpcf7-not-valid) .uploadFileName {
  display: none !important;
}
.uploadGroup .uploadFileName {
  display: none;
  padding-top: 5px;
}
.uploadGroup .uploadNameText {
  position: relative;
  z-index: 0;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: calc(100% - 23px);
  overflow: hidden;
}
.uploadGroup .cancelIcon {
  display: inline-block;
  vertical-align: top;
  width: 10px;
  top: -2px;
  margin-left: 5px;
  position: relative;
  cursor: pointer;
}
.uploadGroup .uploadBtnWrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 450px) {
  .uploadGroup .uploadBtnWrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
.uploadGroup .uploadBtnWrap .uploadLabel {
  font-size: 16px;
  cursor: pointer;
  position: relative;
  line-height: 22.7px;
  display: flex;
  padding-top: 0;
  padding-bottom: 0;
  align-items: center;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.uploadGroup .uploadBtnWrap .uploadLabel:has(.wpcf7-not-valid) {
  margin-bottom: 18px;
}
.uploadGroup .uploadBtnWrap .uploadLabel .wpcf7-form-control-wrap {
  position: static;
}
.uploadGroup .uploadBtnWrap .uploadLabel .wpcf7-not-valid-tip {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 100%;
  margin-top: 1px;
  width: 100%;
}
.uploadGroup .uploadBtnWrap .uploadLabel .tooltipText {
  margin-left: 5px;
  margin-top: -2px;
}
.uploadGroup .uploadBtnWrap .uploadLabel em {
  font-style: normal;
  display: flex;
  align-items: center;
  font-weight: 600;
  margin-left: auto;
}
@media (max-width: 479.5px) {
  .uploadGroup .uploadBtnWrap .uploadLabel em {
    font-size: 14px;
  }
}
.uploadGroup .uploadBtnWrap .uploadLabel em img {
  margin-right: 8px;
}
.uploadGroup .uploadBtnWrap .uploadLabel input {
  position: absolute;
  width: 0;
  height: 0;
  z-index: 0;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.uploadGroup .uploadBtnWrap .uploadLabel .upload {
  position: relative;
  top: 2px;
}

@media (max-width: 991.5px) {
  .happyClients .container.oneSideContainer {
    margin: 0 auto !important;
    max-width: 720px;
    padding: 0 12px !important;
  }
}
@media (max-width: 767.5px) {
  .happyClients .container.oneSideContainer {
    max-width: 540px;
  }
}
@media (max-width: 575.5px) {
  .happyClients .container.oneSideContainer {
    max-width: 100%;
    width: 100%;
  }
}
.happyClients .comnStyle-swiper-button .swiper-button-next,
.happyClients .comnStyle-swiper-button .swiper-button-prev {
  top: 0;
}
.happyClients .leftPan {
  width: 287px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991.5px) {
  .happyClients .leftPan {
    width: 100%;
    margin-bottom: 30px;
  }
}
.happyClients .leftPan .comnStyle-swiper-button {
  padding-top: 15px;
  margin-top: auto;
}
.happyClients .rightPan {
  width: calc(100% - 287px);
  padding-left: 123px;
}
@media (max-width: 1199.5px) {
  .happyClients .rightPan {
    padding-left: 70px;
  }
}
@media (max-width: 991.5px) {
  .happyClients .rightPan {
    width: 100%;
    padding-left: 0;
  }
}
.happyClients .rightPan .clientSlider {
  padding-left: 20px;
}
@media (max-width: 991.5px) {
  .happyClients .rightPan .clientSlider {
    padding-right: 20px;
  }
}
@media (max-width: 767.5px) {
  .happyClients .rightPan .clientSlider {
    padding-left: 0;
    padding-right: 0;
  }
}
.happyClients .rightPan .swiper-slide .listItem .listTop {
  box-shadow: -4px 16px 20px 0px rgba(0, 0, 0, 0.078);
  border-radius: 12px;
  padding: 36px 26px 24px;
  margin-bottom: 32px;
}
@media (max-width: 767.5px) {
  .happyClients .rightPan .swiper-slide .listItem .listTop {
    border: 1px solid rgba(0, 0, 0, 0.078);
    box-shadow: none;
  }
}
.happyClients .rightPan .swiper-slide .listItem .listTop p {
  font-weight: 400;
  position: relative;
  padding-top: 25px;
  min-height: 225px;
}
.happyClients .rightPan .swiper-slide .listItem .listTop p:last-child {
  margin-bottom: 0;
}
.happyClients .rightPan .swiper-slide .listItem .listTop p::before {
  content: url("../images/icons/quote.svg");
  line-height: 1;
  position: absolute;
  top: 0;
}
.happyClients .rightPan .swiper-slide .listItem .listBottom {
  margin-bottom: 20px;
}
.happyClients .rightPan .swiper-slide .listItem .listBottom figure {
  width: 53px;
  height: 53px;
  border-radius: 50%;
  overflow: hidden;
}
.happyClients .rightPan .swiper-slide .listItem .listBottom figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.happyClients .rightPan .swiper-slide .listItem .listBottom .descBox {
  width: calc(100% - 53px);
  padding-left: 16px;
}
.happyClients .rightPan .swiper-slide .listItem .listBottom .descBox h3 {
  font-size: 16px;
  line-height: 22.7px;
  font-weight: 600;
  margin-bottom: 2px;
}
.happyClients .rightPan .swiper-slide .listItem .listBottom .descBox p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  padding-top: 0;
  min-height: auto;
}
.happyClients .rightPan .swiper-slide .listItem .listBottom .descBox p::before {
  display: none;
}

.getInTouch .leftPan {
  width: 388px;
}
@media (max-width: 1199.5px) {
  .getInTouch .leftPan {
    width: 335px;
  }
}
@media (max-width: 991.5px) {
  .getInTouch .leftPan {
    width: 100%;
    margin-bottom: 30px;
  }
}
.getInTouch .leftPan .locationWrap {
  margin-top: 40px;
}
@media (max-width: 991.5px) {
  .getInTouch .leftPan .locationWrap {
    margin-top: 15px;
  }
}
.getInTouch .leftPan .locationWrap .locationList {
  padding: 24px 24px 24px;
  border: 1px solid transparent;
  transition: 0.3s;
  border-radius: 12px;
  cursor: pointer;
}
@media (max-width: 991.5px) {
  .getInTouch .leftPan .locationWrap .locationList {
    padding: 15px 15px 15px;
  }
}
.getInTouch .leftPan .locationWrap .locationList h3 {
  font-size: 20px;
  line-height: 28.4px;
  font-weight: 600;
  color: #ACACAC;
  margin-bottom: 8px;
  transition: 0.3s;
}
.getInTouch .leftPan .locationWrap .locationList p {
  font-size: 18px;
  line-height: 25.6px;
  font-weight: 600;
  margin-bottom: 0;
  color: #ACACAC;
  transition: 0.3s;
}
.getInTouch .leftPan .locationWrap .locationList.active {
  border: 1px solid #AB1E2D;
}
.getInTouch .leftPan .locationWrap .locationList.active h3 {
  color: #000000;
}
.getInTouch .leftPan .locationWrap .locationList.active p {
  color: #737373;
}
.getInTouch .leftPan .locationWrap .locationList:hover h3 {
  color: #000000;
}
.getInTouch .leftPan .locationWrap .locationList:hover p {
  color: #737373;
}
.getInTouch .rightPan {
  width: calc(100% - 388px);
  padding-left: 46px;
}
@media (max-width: 1199.5px) {
  .getInTouch .rightPan {
    width: calc(100% - 335px);
  }
}
@media (max-width: 991.5px) {
  .getInTouch .rightPan {
    width: 100%;
    padding-left: 0;
  }
}
.getInTouch .rightPan .boxInner {
  position: relative;
  z-index: 0;
  background-color: rgba(230, 230, 230, 0.3);
  border-radius: 16px;
  overflow: hidden;
}
.getInTouch .rightPan .boxInner .mapBox {
  width: 100%;
  height: 0;
  overflow: hidden;
  position: relative;
  z-index: 0;
  padding-top: 71.4681440443%;
}
.getInTouch .rightPan .boxInner .mapBox iframe {
  display: block;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.getInTouch .rightPan .boxInner .addressBox {
  position: absolute;
  z-index: 1;
  bottom: 24px;
  left: 24px;
  box-shadow: -2px 6px 17.3999996185px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 8px;
  background: #ffffff;
  padding: 24px 32px;
  width: 317px;
}
@media (max-width: 479.5px) {
  .getInTouch .rightPan .boxInner .addressBox {
    padding: 15px 15px;
    bottom: 15px;
    left: 15px;
    width: 235px;
  }
}
.getInTouch .rightPan .boxInner .addressBox h3 {
  font-size: 20px;
  line-height: 28.4px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 12px;
}
@media (max-width: 479.5px) {
  .getInTouch .rightPan .boxInner .addressBox h3 {
    margin-bottom: 6px;
    font-size: 18px;
    line-height: 24.4px;
  }
}
.getInTouch .rightPan .boxInner .addressBox p {
  font-size: 18px;
  line-height: 25.6px;
  font-weight: 600;
  margin-bottom: 0;
  color: #737373;
}
@media (max-width: 479.5px) {
  .getInTouch .rightPan .boxInner .addressBox p {
    font-size: 16px;
    line-height: 21.6px;
  }
}

.iconTextSec {
  background: #EFF0F0;
}
.iconTextSec .sectionMain {
  margin-left: -55px;
  margin-right: -55px;
}
@media (max-width: 1199.5px) {
  .iconTextSec .sectionMain {
    margin-left: -12px;
    margin-right: -12px;
  }
}
.iconTextSec p {
  font-weight: 400;
  line-height: 22.7px;
}
.iconTextSec p:last-child {
  margin-bottom: 0;
}
.iconTextSec .listItem {
  position: relative;
  z-index: 0;
}
@media (max-width: 767.5px) {
  .iconTextSec .listItem {
    margin-bottom: 35px;
  }
}
.iconTextSec .listItem:last-child {
  margin-bottom: 0;
}
.iconTextSec .listItem:after {
  content: "";
  top: 0;
  bottom: 0;
  right: 10px;
  position: absolute;
  z-index: 0;
  border-right: 1px solid #ACACAC;
}
@media (max-width: 991.5px) {
  .iconTextSec .listItem:after {
    right: 13px;
  }
}
@media (max-width: 767.5px) {
  .iconTextSec .listItem:after {
    content: normal;
  }
}
.iconTextSec .listItem:last-child:after {
  content: normal;
}
.iconTextSec .listItem .listInner {
  max-width: 295px;
  margin: auto;
}
@media (max-width: 767.5px) {
  .iconTextSec .listItem .listInner {
    max-width: 100%;
  }
}
.iconTextSec .listItem .listInner figure {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0px 4px 17px 0px rgba(0, 0, 0, 0.0392156863);
  display: flex;
  align-items: center;
  background-color: #ffffff;
  margin-bottom: 32px;
}
@media (max-width: 991.5px) {
  .iconTextSec .listItem .listInner figure {
    margin-bottom: 18px;
  }
}
.iconTextSec .listItem .listInner figure img {
  max-width: 90%;
  margin: auto;
}
.iconTextSec .listItem .listInner h3 {
  font-size: 20px;
  line-height: 28.4px;
  margin-bottom: 10px;
}

.contact-form.comn-form .mathCaptcha {
  display: flex;
  align-items: center;
  position: relative;
}
.contact-form.comn-form .mathCaptcha:has(.wpcf7-not-valid) {
  padding-bottom: 18px;
}
.contact-form.comn-form .mathCaptcha .wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
}
.contact-form.comn-form .mathCaptcha .whatis {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
}
.contact-form.comn-form .mathCaptcha .wpcf7-quiz-label {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
}
.contact-form.comn-form .mathCaptcha .wpcf7-form-control-wrap {
  width: 100%;
  flex: 0 1 auto;
  padding-left: 5px;
  position: static;
}
.contact-form.comn-form .mathCaptcha .wpcf7-form-control {
  font-size: 16px;
  font-weight: 400;
  line-height: 22.7px;
  color: #EFF0F0;
  height: 45px;
  border-radius: 6px;
  border: 1px solid #172C4E;
  background-color: #172C4E;
  padding: 10px 13px;
  font-family: "Source Sans 3", sans-serif;
  width: 100px;
  margin-left: 3px;
}
@media screen and (max-width: 767px) {
  .contact-form.comn-form .mathCaptcha .wpcf7-form-control {
    padding: 10px 13px;
    height: 40px;
    font-size: 14px;
    line-height: 1.3;
  }
}
.contact-form.comn-form .mathCaptcha .wpcf7-form-control::-moz-placeholder {
  color: #EFF0F0;
}
.contact-form.comn-form .mathCaptcha .wpcf7-form-control::placeholder {
  color: #EFF0F0;
}
.contact-form.comn-form .mathCaptcha .wpcf7-form-control:-ms-input-placeholder {
  color: #EFF0F0;
}
.contact-form.comn-form .mathCaptcha .wpcf7-form-control::-ms-input-placeholder {
  color: #EFF0F0;
}
.contact-form.comn-form .mathCaptcha .wpcf7-form-control:focus {
  box-shadow: none;
  border: 1px solid #000000;
}

.scrollBlue {
  scrollbar-width: thin;
}
.scrollBlue::-webkit-scrollbar {
  width: 7px;
}
.scrollBlue::-webkit-scrollbar-thumb {
  background-color: #5fe0d8;
}
.scrollBlue::-webkit-scrollbar-track {
  background-color: #c6cdda;
}

.wpcf7-not-valid-tip {
  display: none;
}
.wpcf7-not-valid-tip:last-child {
  display: block;
}

.wpcf7-form-control-wrap[data-name=Termofuse] .wpcf7-not-valid-tip {
  display: none;
}

.oneSideContainer .clientArrow {
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .oneSideContainer .clientArrow {
    padding-right: 40px;
  }
}

.happyClients {
  padding: 90px 0;
}

.getInTouch {
  padding-bottom: 90px;
}

.successStories-bannerBottom-counter-sec {
  width: 100%;
  margin-top: -60px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .successStories-bannerBottom-counter-sec {
    margin-top: -40px;
  }
}
.successStories-bannerBottom-counter-sec .bannerBottom-counter-content {
  width: 100%;
  padding: 20px 0;
  box-shadow: 0px 4px 11px 0px rgba(213, 223, 218, 0.3294117647);
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .successStories-bannerBottom-counter-sec .bannerBottom-counter-content {
    padding: 0;
  }
}
.successStories-bannerBottom-counter-sec .counter-content-block-holder {
  width: 100%;
  min-height: auto;
}
@media screen and (max-width: 767px) {
  .successStories-bannerBottom-counter-sec .counter-content-block-holder {
    margin-top: -1px;
  }
}
@media screen and (min-width: 768px) {
  .successStories-bannerBottom-counter-sec .counter-content-block-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 84px;
    margin-left: -1px;
  }
}
.successStories-bannerBottom-counter-sec .counter-content-block-holder .counter-content-block {
  width: 100%;
  display: flex;
  padding-left: 22px;
  padding-right: 22px;
}
@media screen and (min-width: 768px) {
  .successStories-bannerBottom-counter-sec .counter-content-block-holder .counter-content-block {
    justify-content: center;
    align-items: center;
    margin-left: -1px;
    position: relative;
  }
  .successStories-bannerBottom-counter-sec .counter-content-block-holder .counter-content-block::before {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    background-color: #ABC4B7;
  }
}
@media screen and (max-width: 767px) {
  .successStories-bannerBottom-counter-sec .counter-content-block-holder .counter-content-block {
    width: 100%;
    padding: 10px 20px;
    border-top: 1px solid #ABC4B7;
  }
}
@media screen and (max-width: 767px) {
  .successStories-bannerBottom-counter-sec .counter-content-block-holder .counter-content-block .counter-content {
    width: 100%;
  }
}
.successStories-bannerBottom-counter-sec .counter-content-block-holder .counter-content-block .counter-content .counter-infoText {
  padding-left: 15px;
}
.successStories-bannerBottom-counter-sec .counter-content-block-holder .counter-content-block .counter-content .counter-infoText p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #091E3F;
  margin: 0;
}
@media screen and (max-width: 575px) {
  .successStories-bannerBottom-counter-sec .counter-content-block-holder .counter-content-block .counter-content .counter-infoText p {
    font-size: 16px;
    line-height: 20px;
  }
}
.successStories-bannerBottom-counter-sec .counter-content-block-holder .counter-content-block .counter-content .counter-number {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #091E3F;
  max-width: 105px;
}
@media screen and (min-width: 1200px) {
  .successStories-bannerBottom-counter-sec .counter-content-block-holder .counter-content-block .counter-content .counter-number {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .successStories-bannerBottom-counter-sec .counter-content-block-holder .counter-content-block .counter-content .counter-number {
    text-align: left;
    width: 80px;
  }
}

.latestProjects-sec {
  width: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #abc4b7 100%);
}
.latestProjects-sec .latestProjects-list-wrap {
  width: 100%;
  margin-top: 35px;
}
.latestProjects-sec .alm-btn-wrap {
  margin-top: 30px !important;
}
.latestProjects-sec .alm-load-more-btn {
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  padding: 14px 20px !important;
  cursor: pointer !important;
  border-radius: 0 !important;
  transition: all ease-in-out 300ms !important;
  position: relative !important;
  min-width: 120px !important;
  overflow: hidden !important;
  color: #091e3f !important;
  border: 2px solid #091e3f !important;
  background-color: transparent !important;
  height: auto !important;
}
.latestProjects-sec .alm-load-more-btn:before {
  content: "";
  width: 0% !important;
  height: 100% !important;
  display: block;
  position: absolute;
  left: -10%;
  opacity: 1;
  top: 0;
  z-index: 2;
  transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  background-color: #091E3F !important;
}
.latestProjects-sec .alm-load-more-btn:after {
  content: "";
  width: 0%;
  height: 100%;
  display: block;
  position: absolute;
  left: -10%;
  opacity: 0;
  top: 0;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  background-color: #091E3F !important;
}
.latestProjects-sec .alm-load-more-btn:hover {
  background-color: #091E3F !important;
  color: #ffffff !important;
}
.latestProjects-sec .alm-load-more-btn:hover:before {
  opacity: 1 !important;
  width: 0 !important;
}

.projectList-infoBlock-item {
  width: 100%;
}
.projectList-infoBlock-item .projectList-infoBlock-inner {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: block;
}
.projectList-infoBlock-item .projectList-infoBlock-inner .tagBox-holder {
  position: absolute;
  right: 10px;
  top: 16px;
  z-index: 2;
}
.projectList-infoBlock-item .projectList-infoBlock-inner .tagBox-holder .tagBox {
  font-size: 12px;
  font-weight: 700;
  padding: 8px 20px;
  display: inline-block;
  border-radius: 8px;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.1;
  letter-spacing: 1px;
}
.projectList-infoBlock-item .projectList-infoBlock-inner .image-holder {
  padding-top: 112.2762148338%;
  position: relative;
  overflow: hidden;
}
.projectList-infoBlock-item .projectList-infoBlock-inner .image-holder img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: scale, opacity;
  transition: transform 0.5s ease-in-out;
}
.projectList-infoBlock-item .projectList-infoBlock-inner .projectList-dscContent-holder {
  width: 100%;
  background: linear-gradient(180deg, rgba(9, 30, 63, 0) 0%, #091e3f 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
}
.projectList-infoBlock-item .projectList-infoBlock-inner .projectList-dscContent-holder .dscContent-body {
  width: 100%;
  padding: 15px 15px;
  transition: transform 0.5s ease;
}
@media screen and (min-width: 1200px) {
  .projectList-infoBlock-item .projectList-infoBlock-inner .projectList-dscContent-holder .dscContent-body {
    transform: translateY(52px);
    padding: 25px 20px;
  }
}
.projectList-infoBlock-item .projectList-infoBlock-inner .projectList-dscContent-holder .dscContent-body .headingText {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .projectList-infoBlock-item .projectList-infoBlock-inner .projectList-dscContent-holder .dscContent-body .headingText {
    font-size: 22px;
  }
}
.projectList-infoBlock-item .projectList-infoBlock-inner .projectList-dscContent-holder .dscContent-body .btn-holder {
  transition: all 0.5s linear;
  padding-top: 12px;
}
@media screen and (min-width: 1200px) {
  .projectList-infoBlock-item .projectList-infoBlock-inner .projectList-dscContent-holder .dscContent-body .btn-holder {
    padding-top: 20px;
    transform: translateY(100px);
    opacity: 0;
  }
}
@media screen and (min-width: 1200px) {
  .projectList-infoBlock-item .projectList-infoBlock-inner:hover .image-holder img {
    transform: scale3d(1.1, 1.1, 1);
  }
  .projectList-infoBlock-item .projectList-infoBlock-inner:hover .projectList-dscContent-holder .dscContent-body {
    transform: translateY(0);
  }
  .projectList-infoBlock-item .projectList-infoBlock-inner:hover .projectList-dscContent-holder .dscContent-body .btn-holder {
    transform: translateY(0);
    opacity: 1;
  }
}

.cta2-sec {
  width: 100%;
}
.cta2-sec .cta-content-wrap {
  width: 100%;
  position: relative;
  background-image: url("../images/successStories/cta2-bg-img.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  padding: 30px 25px;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .cta2-sec .cta-content-wrap {
    padding: 40px 35px;
  }
}
@media screen and (min-width: 1200px) {
  .cta2-sec .cta-content-wrap {
    padding: 60px 55px;
  }
}
.cta2-sec .cta-content-wrap:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(159, 163, 173, 0.6);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
}
.cta2-sec .cta-content-wrap .cta-content-holder {
  width: 100%;
  position: relative;
  z-index: 2;
}
.cta2-sec .cta-content-wrap .cta-content-holder .sec-heading-wrap {
  max-width: 100%;
}
.cta2-sec .cta-content-wrap .btn-holder {
  position: relative;
  z-index: 2;
}

.clientSay-sec {
  width: 100%;
}
.clientSay-sec .clientSay-content-wrap {
  width: 100%;
  margin-top: 30px;
}
@media screen and (min-width: 992px) {
  .clientSay-sec .clientSay-content-wrap {
    margin-top: 45px;
  }
}
.clientSay-sec .clientSay-content-wrap .clientSay-slider-holder .successStories-slide-item .inner-block {
  padding: 0;
}

@media screen and (max-width: 767px) {
  .faq-side-navBar {
    display: none;
  }
}
.faq-side-navBar .faq-side-navBar-inner {
  width: 100%;
  padding-left: 25px;
  border-left: 1px solid #cbd3e0;
}
.faq-side-navBar .faqSideNavBarTitleText {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #091E3F;
  margin-bottom: 25px;
}

.faq-sec .responsive-tabs.vertical-tabs .faq-side-navBar .nav-pills .nav-link .iconBox {
  width: 24px;
  height: 24px;
}
.faq-sec .responsive-tabs.vertical-tabs .faq-side-navBar .nav-pills .nav-link .iconBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.faq-sec .responsive-tabs.vertical-tabs .faq-side-navBar .nav-pills .nav-link .linkText {
  flex: 0 1 auto;
  padding-left: 12px;
}
.faq-sec .responsive-tabs.vertical-tabs .faq-side-navBar .nav-pills .sideNavBarDsc-tab-pane {
  padding-top: 10px;
  padding-left: 36px;
  width: 100%;
}
.faq-sec .responsive-tabs.vertical-tabs .faq-side-navBar .nav-pills .sideNavBarDsc-tab-pane .inner-content {
  max-width: 270px;
}
.faq-sec .responsive-tabs.vertical-tabs .faq-side-navBar .nav-pills .sideNavBarDsc-tab-pane .inner-content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
}
.faq-sec .responsive-tabs.vertical-tabs .tab-content .faq-tab-content .inner-content .accordion .accordion-item {
  border-color: #949EB0;
}
.faq-sec .responsive-tabs.vertical-tabs .tab-content .faq-tab-content .inner-content .accordion .accordion-item .accordion-header .accordion-button {
  padding-left: 0;
  padding-right: 0;
  padding-top: 34px;
  padding-bottom: 34px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #091E3F;
}
@media screen and (max-width: 767px) {
  .faq-sec .responsive-tabs.vertical-tabs .tab-content .faq-tab-content .inner-content .accordion .accordion-item .accordion-header .accordion-button {
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 17px;
  }
}
.faq-sec .responsive-tabs.vertical-tabs .tab-content .faq-tab-content .inner-content .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.faq-sec .responsive-tabs.vertical-tabs .tab-content .faq-tab-content .inner-content .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  padding-bottom: 20px;
  color: #AB1E2D;
}
@media screen and (max-width: 767px) {
  .faq-sec .responsive-tabs.vertical-tabs .tab-content .faq-tab-content .inner-content .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    padding-bottom: 10px;
  }
}
.faq-sec .responsive-tabs.vertical-tabs .tab-content .faq-tab-content .inner-content .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url(../images/faq/icons/remove.svg);
  transform-origin: 11px 4px;
}
.faq-sec .responsive-tabs.vertical-tabs .tab-content .faq-tab-content .inner-content .accordion .accordion-item .accordion-header .accordion-button::after {
  background-image: url(../images/faq/icons/add.svg);
  background-size: 14px auto;
}
.faq-sec .responsive-tabs.vertical-tabs .tab-content .faq-tab-content .inner-content .accordion .accordion-item .accordion-body {
  padding: 0 0 30px;
}
.faq-sec .responsive-tabs.vertical-tabs .tab-content .faq-tab-content .inner-content .accordion .accordion-item .accordion-body .accordion-body-inner > *:last-child {
  margin-bottom: 0;
}
.faq-sec .responsive-tabs.vertical-tabs .tab-content .faq-tab-content .inner-content .accordion .accordion-item .accordion-body .accordion-body-inner p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .faq-sec .responsive-tabs.vertical-tabs .tab-content .faq-tab-content .inner-content .accordion .accordion-item .accordion-body .accordion-body-inner p {
    font-size: 16px;
  }
}
.faq-sec .responsive-tabs.vertical-tabs .tab-content .faq-tab-content .inner-content .accordion .accordion-item .accordion-body .accordion-body-inner ul {
  list-style: none;
  margin: 0 0 25px;
  padding: 0;
}
.faq-sec .responsive-tabs.vertical-tabs .tab-content .faq-tab-content .inner-content .accordion .accordion-item .accordion-body .accordion-body-inner ul li {
  padding-left: 25px;
  position: relative;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .faq-sec .responsive-tabs.vertical-tabs .tab-content .faq-tab-content .inner-content .accordion .accordion-item .accordion-body .accordion-body-inner ul li {
    font-size: 16px;
  }
}
.faq-sec .responsive-tabs.vertical-tabs .tab-content .faq-tab-content .inner-content .accordion .accordion-item .accordion-body .accordion-body-inner ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  will-change: transform;
  background-color: #000000;
}
.faq-sec .responsive-tabs.vertical-tabs .tab-content .faq-tab-content .inner-content .accordion .accordion-item .accordion-body .accordion-body-inner ul li:first-child {
  margin-top: 0;
}
.faq-sec .responsive-tabs.vertical-tabs .tab-content .faq-tab-content .inner-content .accordion .accordion-item .accordion-body .accordion-body-inner ul li p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .faq-sec .responsive-tabs.vertical-tabs .tab-content .faq-tab-content .inner-content .accordion .accordion-item .accordion-body .accordion-body-inner ul li p {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .faq-sec .responsive-tabs .card-header a .headerDsc-content {
    display: none;
    padding-top: 5px;
    padding-left: 40px;
    width: 100%;
  }
  .faq-sec .responsive-tabs .card-header a .headerDsc-content .inner-content {
    max-width: 270px;
  }
  .faq-sec .responsive-tabs .card-header a .headerDsc-content .inner-content p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
  }
  .faq-sec .responsive-tabs .card-header a .iconBox {
    width: 26px;
    height: 26px;
  }
  .faq-sec .responsive-tabs .card-header a .iconBox img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .faq-sec .responsive-tabs .card-header a .linkText {
    flex: 0 1 auto;
    padding-left: 15px;
    font-size: 18px;
  }
  .faq-sec .responsive-tabs .card-header a:not(.collapsed) .headerDsc-content {
    display: block;
  }
}

.innerPage-banner-sec.blog-details-banner {
  padding-top: 25px;
}
@media (max-width: 991.8px) {
  .innerPage-banner-sec.blog-details-banner {
    padding-top: 25px;
  }
}
.innerPage-banner-sec.blog-details-banner .banner-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 767.8px) {
  .innerPage-banner-sec.blog-details-banner .banner-image-wrap {
    border-radius: 10px;
  }
}
.innerPage-banner-sec.blog-details-banner .banner-image-wrap:before {
  background: none;
}
.innerPage-banner-sec.blog-details-banner .banner-image-wrap .banner-image-holder {
  position: relative;
  z-index: 0;
  height: 0;
  width: 100%;
  padding-top: 45.0625%;
}
.innerPage-banner-sec.blog-details-banner .banner-image-wrap .banner-image-holder img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.innerPage-banner-sec.blog-details-banner .innerPage-banner-breadcrumb {
  position: static;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .innerPage-banner-sec.blog-details-banner .banner-image-height {
    min-height: 330px;
  }
}

.blogTitleSec {
  position: relative;
  z-index: 2;
}
.blogTitleSec .secInner {
  position: relative;
  z-index: 0;
}
.blogTitleSec .secInner .textBox {
  position: absolute;
  z-index: 1;
  bottom: -30px;
  left: 0;
  width: 671px;
  padding: 32px 80px 0 0;
  background-color: #ffffff;
  border-radius: 0 12px 0 0;
}
@media (max-width: 1199.5px) {
  .blogTitleSec .secInner .textBox {
    width: 100%;
    position: static;
    padding: 40px 0 0 0;
  }
}
.blogTitleSec .secInner .textBox:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -50vw;
  right: 50%;
  top: 0;
  bottom: 0;
  background-color: #ffffff;
}
.blogTitleSec .secInner .textBox h1 {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 700;
  color: #091E3F;
  margin-bottom: 20px;
}
@media screen and (min-width: 576px) {
  .blogTitleSec .secInner .textBox h1 {
    font-size: 28px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .blogTitleSec .secInner .textBox h1 {
    font-size: 30px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .blogTitleSec .secInner .textBox h1 {
    font-size: 30px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1200px) {
  .blogTitleSec .secInner .textBox h1 {
    font-size: 32px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1400px) {
  .blogTitleSec .secInner .textBox h1 {
    font-size: 32px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1800px) {
  .blogTitleSec .secInner .textBox h1 {
    font-size: 32px;
    line-height: 1.3;
  }
}
.blogTitleSec .secInner .textBox .postDate {
  display: block;
  color: #737373;
  background: url("../images/icons/event.svg") no-repeat left center;
  background-size: 20px 20px;
  padding-left: 33px;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.blogDetailsMain .sectionInner:after {
  content: "";
  display: table;
  clear: both;
}
.blogDetailsMain .sectionInner .leftPan {
  float: left;
  width: calc(100% - 248px);
  padding-right: 25px;
  font-weight: 400;
}
@media (max-width: 991.5px) {
  .blogDetailsMain .sectionInner .leftPan {
    padding-right: 0;
    width: 100%;
  }
}
.blogDetailsMain .sectionInner .leftPan h2 {
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  color: #091E3F;
  margin-bottom: 18px;
}
.blogDetailsMain .sectionInner .leftPan p,
.blogDetailsMain .sectionInner .leftPan ul,
.blogDetailsMain .sectionInner .leftPan ol {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 27px;
}
.blogDetailsMain .sectionInner .leftPan p:last-child,
.blogDetailsMain .sectionInner .leftPan ul:last-child,
.blogDetailsMain .sectionInner .leftPan ol:last-child {
  margin-bottom: 0;
}
.blogDetailsMain .sectionInner .leftPan p + h2,
.blogDetailsMain .sectionInner .leftPan ul + h2,
.blogDetailsMain .sectionInner .leftPan ol + h2 {
  padding-top: 8px;
}
.blogDetailsMain .sectionInner .leftPan ul,
.blogDetailsMain .sectionInner .leftPan ol {
  padding-left: 15px;
}
.blogDetailsMain .sectionInner .leftPan ul li,
.blogDetailsMain .sectionInner .leftPan ol li {
  margin-top: 10px;
}
.blogDetailsMain .sectionInner .leftPan ul li:first-child,
.blogDetailsMain .sectionInner .leftPan ol li:first-child {
  margin-top: 0;
}
.blogDetailsMain .sectionInner .leftPan img,
.blogDetailsMain .sectionInner .leftPan figure {
  margin-bottom: 27px;
}
.blogDetailsMain .sectionInner .leftPan img:last-child,
.blogDetailsMain .sectionInner .leftPan figure:last-child {
  margin-bottom: 0;
}
.blogDetailsMain .sectionInner .rightPan {
  float: right;
  width: 248px;
  position: sticky;
  top: 100px;
}
@media (max-width: 991.5px) {
  .blogDetailsMain .sectionInner .rightPan {
    position: static;
    width: 100%;
  }
}
.blogDetailsMain .sectionInner .rightPan .socialShare {
  display: flex;
  align-items: center;
}
@media (max-width: 991.5px) {
  .blogDetailsMain .sectionInner .rightPan .socialShare {
    margin-top: 30px;
  }
}
.blogDetailsMain .sectionInner .rightPan .socialShare .socialTitle {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  color: #949EB0;
}
.blogDetailsMain .sectionInner .rightPan .socialShare ul {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding: 0;
}
@media (max-width: 991.5px) {
  .blogDetailsMain .sectionInner .rightPan .socialShare ul {
    margin-left: 20px;
  }
}
.blogDetailsMain .sectionInner .rightPan .socialShare ul li {
  margin-right: 22px;
  padding: 0;
}
.blogDetailsMain .sectionInner .rightPan .socialShare ul li:last-child {
  margin-right: 0;
}
.blogDetailsMain .sectionInner .rightPan .socialShare ul li a {
  color: #091E3F;
  font-size: 16px;
}
.blogDetailsMain .sectionInner .rightPan h2 {
  font-size: 20px;
  line-height: 28.4px;
  margin-bottom: 30px;
  font-weight: 600;
  color: #000000;
}
.blogDetailsMain .sectionInner .rightPan .scrollPyMenu {
  position: static;
  background: none;
  margin-bottom: 55px;
}
.blogDetailsMain .sectionInner .rightPan .scrollPyMenu ul {
  list-style: none;
}
.blogDetailsMain .sectionInner .rightPan .scrollPyMenu ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 22.7px;
  margin-bottom: 28px;
  color: #949EB0;
  position: relative;
}
.blogDetailsMain .sectionInner .rightPan .scrollPyMenu ul li:last-child {
  margin-bottom: 0;
}
.blogDetailsMain .sectionInner .rightPan .scrollPyMenu ul li.active a:after {
  height: 100%;
}
.blogDetailsMain .sectionInner .rightPan .scrollPyMenu ul li a {
  color: #949EB0;
}
.blogDetailsMain .sectionInner .rightPan .scrollPyMenu ul li a:hover {
  color: #4CDDD4;
}
.blogDetailsMain .sectionInner .rightPan .scrollPyMenu ul li a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -24px;
  width: 2px;
  z-index: 1;
  background-color: #4CDDD4;
  margin: auto;
  display: block;
  height: 0;
  transition: 0.3s;
}
.blogDetailsMain .sectionInner .rightPan .rightInner {
  padding-left: 24px;
  border-left: 1px solid #ABC4B7;
}
@media (max-width: 991.5px) {
  .blogDetailsMain .sectionInner .rightPan .rightInner {
    display: none;
  }
}

.relatedTopSec .comnStyle-swiper-button {
  width: auto;
  margin-left: auto;
}

.relatedBlog {
  position: relative;
  z-index: 0;
}
.relatedBlog.whitebg {
  background: #ffffff;
}
.relatedBlog .bgimg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 782px;
  max-width: 50%;
  opacity: 1;
}
.relatedBlog .bgimg img {
  width: 100%;
  height: auto;
}
.relatedBlog .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 479.5px) {
  .innerPage-banner-sec.solar-banner .banner-image-height {
    min-height: 470px;
  }
}

.solarService {
  background-color: #091E3F;
  font-weight: 400;
  color: #ffffff;
}
.solarService .secctionMain {
  align-items: center;
}
.solarService .contentBox {
  margin-right: 20px;
  max-width: 496px;
}
@media (max-width: 991.5px) {
  .solarService .contentBox {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 35px;
  }
}
.solarService .contentBox h2 {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 16px;
}
@media screen and (min-width: 576px) {
  .solarService .contentBox h2 {
    font-size: 28px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .solarService .contentBox h2 {
    font-size: 30px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .solarService .contentBox h2 {
    font-size: 30px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1200px) {
  .solarService .contentBox h2 {
    font-size: 32px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1400px) {
  .solarService .contentBox h2 {
    font-size: 32px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1800px) {
  .solarService .contentBox h2 {
    font-size: 32px;
    line-height: 1.3;
  }
}
.solarService .contentBox p {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 22px;
}
.solarService .contentBox p:last-child {
  margin-bottom: 0;
}
.solarService .contentBox ul {
  list-style: none;
  font-size: 18px;
  line-height: 24px;
}
.solarService .contentBox ul li {
  background: url("../images/icons/check_circle_red.svg") no-repeat 0 2px;
  padding-left: 32px;
  margin-bottom: 14px;
}
.solarService .contentBox ul li:last-child {
  margin-bottom: 0;
}
.solarService .imageBox {
  margin-left: 5px;
}
@media (max-width: 991.5px) {
  .solarService .imageBox {
    margin-left: 0;
  }
}
.solarService .imageBox figure {
  width: 100%;
  height: 0;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  padding-top: 83.2487309645%;
  z-index: 0;
}
.solarService .imageBox figure img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.otherService .sec-heading-wrap {
  max-width: 610px;
  margin-bottom: 40px;
}
.otherService .otherSliderWrap .othersArrow {
  position: absolute;
  right: 0;
  top: -90px;
  z-index: 1;
  width: auto;
  justify-content: end;
}
@media (max-width: 991.5px) {
  .otherService .otherSliderWrap .othersArrow {
    position: static;
    justify-content: inherit;
    margin-bottom: 30px;
  }
}
.otherService .otherSliderWrap .solarslider .listItem .listInner {
  position: relative;
  z-index: 0;
  width: 100%;
}
.otherService .otherSliderWrap .solarslider .listItem .listInner:hover figure img {
  transform: scale3d(1.1, 1.1, 1);
}
.otherService .otherSliderWrap .solarslider .listItem .listInner figure {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 100.7772020725%;
  border-radius: 12px;
}
.otherService .otherSliderWrap .solarslider .listItem .listInner figure:after {
  content: "";
  background: linear-gradient(96.49deg, rgba(0, 0, 0, 0.6) 24.12%, rgba(0, 0, 0, 0.384) 137.78%);
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.otherService .otherSliderWrap .solarslider .listItem .listInner figure img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
  transform: scale3d(1, 1, 1);
}
.otherService .otherSliderWrap .solarslider .listItem .listInner .textBox {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  padding: 40px 50px 40px;
  display: flex;
  flex-direction: column;
}
.otherService .otherSliderWrap .solarslider .listItem .listInner .textBox h3 {
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #ffffff;
}
.otherService .otherSliderWrap .solarslider .listItem .listInner .textBox .arrowLink {
  margin-top: auto;
}
.otherService .otherSliderWrap .solarslider .listItem .listInner .textBox .arrowLink:after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.ourExpertise .sec-heading-wrap .heading-dscText ul {
  padding: 0px 0px 0px 20px;
  margin: 10px 0px 0px 0px;
}
.ourExpertise .expertRow:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border: none;
}
@media (max-width: 1199.8px) {
  .ourExpertise .expertRow {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ACACAC;
  }
}
.ourExpertise .tabTitleHead {
  display: none;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0;
  padding-bottom: 0;
  transition: 0.3s;
  cursor: pointer;
  position: relative;
  z-index: 0;
  padding-right: 30px;
  color: #091E3F;
}
.ourExpertise .tabTitleHead:after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: 5px;
  bottom: 3px;
  font-size: 80%;
  transform: rotate(0deg);
}
.ourExpertise .tabTitleHead.active {
  padding-bottom: 16px;
  color: #AB1E2D;
}
.ourExpertise .tabTitleHead.active:after {
  transform: rotate(180deg);
  bottom: 17px;
}
@media (max-width: 1199.8px) {
  .ourExpertise .tabTitleHead {
    display: block;
  }
}
@media (max-width: 1199.8px) {
  .ourExpertise .tabNav {
    display: none;
  }
}
.ourExpertise .swiper-scrollbar-nav {
  height: 8px;
  background: #e3e3e3;
  margin-top: 4px;
  border-radius: 10px;
  transition-duration: 0ms;
}
@media (max-width: 1199.8px) {
  .ourExpertise .swiper-scrollbar-nav {
    display: none;
  }
}
.ourExpertise .swiper-scrollbar-nav .swiper-scrollbar-drag {
  background: #a1a2a5 !important;
}
.ourExpertise .navSlider .swiper-slide {
  width: auto !important;
  font-size: 18px;
  font-weight: 600;
  margin: 0px 67px 0 0;
  cursor: pointer;
  transition: color 0.3s;
  color: #091E3F;
  position: relative;
  padding: 6px 0;
}
.ourExpertise .navSlider .swiper-slide:hover {
  color: #AB1E2D;
}
.ourExpertise .navSlider .swiper-slide:after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  width: 0;
  bottom: 0;
  height: 2px;
  display: block;
  margin: auto;
  transition: 0.3s;
  width: 0;
  background-color: #AB1E2D;
}
.ourExpertise .navSlider .swiper-slide.active {
  color: #AB1E2D;
}
.ourExpertise .navSlider .swiper-slide.active:after {
  width: 100%;
}
.ourExpertise .navSlider .swiper-slide:last-child {
  margin-right: 0 !important;
}
@media screen and (max-width: 1299.8px) {
  .ourExpertise .navSlider .swiper-slide {
    margin: 0px 42px 0 0;
  }
}
.ourExpertise .sectionMain {
  width: 100%;
}
@media screen and (max-width: 991px) {
  .ourExpertise .sectionMain {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(171, 196, 183, 0.5) 100%);
  }
}
.ourExpertise .sectionMain .scrollSec {
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .ourExpertise .sectionMain .scrollSec {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(171, 196, 183, 0.5) 100%);
  }
}
.ourExpertise .sectionMain .scrollSec .patternBg-img-holder {
  width: 88.5%;
  left: -1%;
  bottom: -8%;
  position: absolute;
  max-width: 1100px;
}
.ourExpertise .sectionMain .scrollSec .patternBg-img-holder img {
  width: 100%;
  height: auto;
}
.ourExpertise .sectionMain .scrollSec:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .ourExpertise .sectionMain .scrollSec:not(:last-child) .patternBg-img-holder {
    display: none;
  }
}
.ourExpertise .sectionMain .scrollSec .leftPan {
  margin-right: 3px;
  font-weight: 400;
  padding: 23px 20px;
  box-shadow: 0px 4px 16px 0px rgba(196, 224, 209, 0.49);
  border: 1px solid #AB1E2D;
  border-radius: 12px;
  background-color: #ffffff;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .ourExpertise .sectionMain .scrollSec .leftPan {
    margin-right: 25px;
    padding: 30px 24px;
  }
}
.ourExpertise .sectionMain .scrollSec .leftPan h3 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  color: #091E3F;
  margin-bottom: 8px;
}
@media screen and (min-width: 992px) {
  .ourExpertise .sectionMain .scrollSec .leftPan h3 {
    font-size: 24px;
    line-height: 34px;
  }
}
.ourExpertise .sectionMain .scrollSec .leftPan p,
.ourExpertise .sectionMain .scrollSec .leftPan ul,
.ourExpertise .sectionMain .scrollSec .leftPan ol {
  font-size: 17px;
  line-height: 22px;
  margin-bottom: 18px;
}
@media screen and (min-width: 992px) {
  .ourExpertise .sectionMain .scrollSec .leftPan p,
  .ourExpertise .sectionMain .scrollSec .leftPan ul,
  .ourExpertise .sectionMain .scrollSec .leftPan ol {
    font-size: 18px;
    line-height: 25px;
  }
}
.ourExpertise .sectionMain .scrollSec .leftPan p:last-child,
.ourExpertise .sectionMain .scrollSec .leftPan ul:last-child,
.ourExpertise .sectionMain .scrollSec .leftPan ol:last-child {
  margin-bottom: 0;
}
.ourExpertise .sectionMain .scrollSec .leftPan ul {
  padding-left: 19px;
}
.ourExpertise .sectionMain .scrollSec .blockImg-wrap .blockImg-holder {
  padding-top: 102.0725388601%;
}
.ourExpertise .sectionMain .scrollSec .blockImg-wrap .blockImg-holder img {
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .ourExpertise .sectionMain .scrollSec .rightPan {
    margin-left: 25px;
  }
}
.ourExpertise .sectionMain .scrollSec .rightPan ul {
  list-style: none;
  color: #091E3F;
}
.ourExpertise .sectionMain .scrollSec .rightPan ul li {
  background: url("../images/icons/check_circle_red.svg") no-repeat 0 2px;
  padding-left: 32px;
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 24px;
  font-weight: 600;
}
@media screen and (min-width: 992px) {
  .ourExpertise .sectionMain .scrollSec .rightPan ul li {
    font-size: 18px;
  }
}
.ourExpertise .sectionMain .scrollSec .rightPan ul li:last-child {
  margin-bottom: 0;
}

body.single .wraper-header {
  position: relative;
}
body.single .wraper-header.i-am-sticky {
  position: fixed;
}
body.single .wraper-header-main .header-main .brand-logo img {
  filter: none;
}
body.single .wraper-header-main .header-main #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
  color: #091E3F;
  font-weight: 600 !important;
}
@media (max-width: 767.8px) {
  body.single .wraper-header-main .header-main .header-mobilemenu-trigger img {
    filter: brightness(1) invert(1);
  }
}
body.single .wraper-header-main .header-right .btn.btn-border-white {
  color: #091E3F;
  border-color: #091E3F;
  background-color: transparent;
}
body.single .wraper-header-main .header-right .btn.btn-border-white:before {
  background-color: #091E3F;
}
body.single .wraper-header-main .header-right .btn.btn-border-white:after {
  background-color: #0f336c;
}
body.single .wraper-header-main .header-right .btn.btn-border-white:hover {
  background-color: #091E3F;
  color: #ffffff;
  border: 2px solid #091E3F;
}

.listingTypeMenu {
  background-color: #091E3F;
  z-index: 1000;
  position: sticky;
  top: 60px;
  transition: visibility 0.3s linear, opacity 0.3s linear;
}
.listingTypeMenu.notVisible {
  visibility: hidden;
  opacity: 0;
}
.listingTypeMenu .menuWrap {
  max-width: 835px;
  margin: 0 auto;
}
.listingTypeMenu .menuWrap ul {
  list-style: none;
  white-space: nowrap;
  display: flex;
  min-width: 100%;
  justify-content: center;
  border: none;
}
@media screen and (min-width: 992px) {
  .listingTypeMenu .menuWrap ul {
    justify-content: space-between;
  }
}
@media screen and (max-width: 991px) {
  .listingTypeMenu .menuWrap ul {
    display: block;
    text-align: center;
  }
}
.listingTypeMenu .menuWrap ul li {
  display: inline-block;
  position: relative;
  z-index: 0;
  padding: 0 12px;
}
@media screen and (min-width: 768px) {
  .listingTypeMenu .menuWrap ul li {
    padding: 0 20px;
  }
}
@media screen and (min-width: 992px) {
  .listingTypeMenu .menuWrap ul li {
    padding: 0 30px;
  }
}
.listingTypeMenu .menuWrap ul li:last-child {
  margin-right: 0;
}
.listingTypeMenu .menuWrap ul li a {
  display: block;
  color: #ffffff;
  padding: 16px 0px;
  font-size: 18px;
  font-weight: 400;
  line-height: 33px;
  position: relative;
  background-color: transparent;
  border: none;
}
.listingTypeMenu .menuWrap ul li a:hover {
  color: #4CDDD4;
}
.listingTypeMenu .menuWrap ul li a:after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.3s;
  height: 2px;
  margin: auto;
  width: 0;
  background-color: #ffffff;
}
.listingTypeMenu .menuWrap ul li a.active {
  font-weight: 700;
  background-color: transparent;
  color: #4CDDD4;
}
.listingTypeMenu .menuWrap ul li a.active:after {
  width: 100%;
}

.blogListing-sec {
  width: 100%;
  background: linear-gradient(180deg, #abc4b7 -39.57%, #ffffff 49.54%, #abc4b7 113.51%);
}
.blogListing-sec .blogListing-content-wrap {
  margin-top: 30px;
}
.blogListing-sec .blogListing-sec-top .alm-filters-container {
  margin-bottom: 0;
}
.blogListing-sec .blogListing-sec-top .alm-filters-container .alm-filter--inner {
  padding: 0;
}
.blogListing-sec .blogListing-sec-top .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: auto;
}
.blogListing-sec .blogListing-sec-top .alm-filters-container button[type=button],
.blogListing-sec .blogListing-sec-top .alm-filters-container button[type=reset] {
  border: 1px solid #c4ceca;
  font-size: 16px;
  font-weight: 400;
  color: #535353;
  background-color: #c4ceca;
  border-radius: 8px;
  height: 51px !important;
  line-height: 51px !important;
  width: 280px !important;
}
.blogListing-sec .blogListing-sec-top .alm-filters-container button[type=button]:before,
.blogListing-sec .blogListing-sec-top .alm-filters-container button[type=reset]:before {
  display: none;
}
.blogListing-sec .blogListing-sec-top .alm-filters-container button[type=button]:after,
.blogListing-sec .blogListing-sec-top .alm-filters-container button[type=reset]:after {
  display: none;
}
.blogListing-sec .blogListing-sec-top .alm-filters-container button[type=button] .filter-option:before,
.blogListing-sec .blogListing-sec-top .alm-filters-container button[type=reset] .filter-option:before {
  content: "";
  position: absolute;
  right: 15px;
  background-image: url(../images/icons/filter-icon.svg);
  background-size: contain;
  width: 16px;
  height: 16px;
  top: 16px;
}
.blogListing-sec .blogListing-sec-top .bootstrap-select .dropdown-toggle:focus,
.blogListing-sec .blogListing-sec-top .bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
  outline: none !important;
}
.blogListing-sec .blogListing-sec-top .alm-filters-container button[type=button]:focus,
.blogListing-sec .blogListing-sec-top .alm-filters-container button[type=button]:hover {
  background-color: #c4ceca !important;
  border: 1px solid #c4ceca !important;
}
.blogListing-sec .blogListing-sec-top .dropdown-item.active, .blogListing-sec .blogListing-sec-top .dropdown-item:active {
  background-color: #091E3F;
}

.blogListing-item {
  width: 100%;
  overflow: hidden;
}
.blogListing-item .inner-block {
  display: block;
}
.blogListing-item .inner-block .img-holder-wrap {
  width: 100%;
  position: relative;
}
.blogListing-item .inner-block .img-holder-wrap .tagBox-holder {
  position: absolute;
  right: 10px;
  top: 16px;
  z-index: 2;
}
.blogListing-item .inner-block .img-holder-wrap .tagBox-holder .tagBox {
  font-size: 12px;
  font-weight: 700;
  padding: 8px 20px;
  display: inline-block;
  border-radius: 8px;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.1;
  letter-spacing: 0.2em;
}
.blogListing-item .inner-block .img-holder-wrap .img-holder {
  width: 100%;
  padding-top: 76.3157894737%;
  position: relative;
  display: block;
  overflow: hidden;
}
.blogListing-item .inner-block .img-holder-wrap .img-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: transform 0.3s ease-in-out;
}
.blogListing-item .inner-block .dataInfo-content-block {
  position: relative;
  padding-top: 25px;
}
.blogListing-item .inner-block .dataInfo-content-block .dateText {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #737373;
}
.blogListing-item .inner-block .dataInfo-content-block .dscText p {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  margin: 0;
  color: #000000;
}
.blogListing-item .inner-block:hover .img-holder-wrap .img-holder img {
  transform: scale3d(1.1, 1.1, 1);
}

.servicePlatform-sec {
  width: 100%;
  position: relative;
}
.servicePlatform-sec .patternBg-img-holder {
  width: 320px;
  left: 0;
  bottom: auto;
  top: 30px;
  position: absolute;
}
@media screen and (min-width: 576px) {
  .servicePlatform-sec .patternBg-img-holder {
    width: 420px;
  }
}
@media screen and (min-width: 768px) {
  .servicePlatform-sec .patternBg-img-holder {
    width: 480px;
  }
}
@media screen and (min-width: 992px) {
  .servicePlatform-sec .patternBg-img-holder {
    width: 557px;
  }
}
.servicePlatform-sec .patternBg-img-holder img {
  width: 100%;
  height: auto;
}
.servicePlatform-sec .servicePlatform-dscContent-block {
  max-width: 507px;
  width: 100%;
}
.servicePlatform-sec .infoWithIcon-list-holder .infoWithIcon-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: -20px;
  margin-left: -10px;
  margin-right: -10px;
}
@media screen and (min-width: 576px) {
  .servicePlatform-sec .infoWithIcon-list-holder .infoWithIcon-list {
    margin-top: -25px;
  }
}
@media screen and (min-width: 1200px) {
  .servicePlatform-sec .infoWithIcon-list-holder .infoWithIcon-list {
    margin-top: -35px;
  }
}
.servicePlatform-sec .infoWithIcon-list-holder .infoWithIcon-list li {
  width: 100%;
  display: flex;
  margin-top: 20px;
}
@media screen and (min-width: 576px) {
  .servicePlatform-sec .infoWithIcon-list-holder .infoWithIcon-list li {
    margin-top: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .servicePlatform-sec .infoWithIcon-list-holder .infoWithIcon-list li {
    margin-top: 35px;
  }
}
@media screen and (min-width: 576px) {
  .servicePlatform-sec .infoWithIcon-list-holder .infoWithIcon-list li {
    width: 50%;
  }
}
.servicePlatform-sec .infoWithIcon-list-holder .infoWithIcon-list li .infoWithIcon-block {
  width: 100%;
  display: flex;
  padding: 0 10px;
}
.servicePlatform-sec .infoWithIcon-list-holder .infoWithIcon-list li .infoWithIcon-block .iconBox {
  width: 24px;
  height: 24px;
}
.servicePlatform-sec .infoWithIcon-list-holder .infoWithIcon-list li .infoWithIcon-block .iconBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.servicePlatform-sec .infoWithIcon-list-holder .infoWithIcon-list li .infoWithIcon-block .infoText {
  flex: 0 1 auto;
  padding-left: 12px;
  color: #091E3F;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (min-width: 576px) {
  .servicePlatform-sec .infoWithIcon-list-holder .infoWithIcon-list li .infoWithIcon-block .infoText {
    font-size: 18px;
  }
}
@media screen and (min-width: 1200px) {
  .servicePlatform-sec .infoWithIcon-list-holder .infoWithIcon-list li .infoWithIcon-block .infoText {
    font-size: 20px;
  }
}
.servicePlatform-sec .servicePlatform-right-block {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .servicePlatform-sec .servicePlatform-right-block .blockImg-wrap {
    max-width: 540px;
    margin-left: auto;
  }
}
.servicePlatform-sec .servicePlatform-right-block .blockImg-wrap .blockImg-holder {
  padding-top: 93.3333333333%;
}

.blogListing-content-wrap .alm-btn-wrap {
  margin-top: 30px !important;
}
.blogListing-content-wrap .alm-btn-wrap:has(.alm-load-more-btn.done) {
  margin-top: 0 !important;
}
.blogListing-content-wrap .alm-btn-wrap .alm-load-more-btn.done, .blogListing-content-wrap .alm-btn-wrap .alm-load-more-btn:disabled {
  height: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
}
.blogListing-content-wrap .alm-load-more-btn {
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  padding: 14px 20px !important;
  cursor: pointer !important;
  border-radius: 0 !important;
  transition: all ease-in-out 300ms !important;
  position: relative !important;
  min-width: 120px !important;
  overflow: hidden !important;
  color: #091e3f !important;
  border: 2px solid #091e3f !important;
  background-color: transparent !important;
  height: auto !important;
}
.blogListing-content-wrap .alm-load-more-btn:before {
  content: "";
  width: 0% !important;
  height: 100% !important;
  display: block;
  position: absolute;
  left: -10%;
  opacity: 1;
  top: 0;
  z-index: 2;
  transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  background-color: #091E3F !important;
}
.blogListing-content-wrap .alm-load-more-btn:after {
  content: "";
  width: 0%;
  height: 100%;
  display: block;
  position: absolute;
  left: -10%;
  opacity: 0;
  top: 0;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  background-color: #091E3F !important;
}
.blogListing-content-wrap .alm-load-more-btn:hover {
  background-color: #091E3F !important;
  color: #ffffff !important;
}
.blogListing-content-wrap .alm-load-more-btn:hover:before {
  opacity: 1 !important;
  width: 0 !important;
}
.blogListing-content-wrap .alm-layouts .alm-listing.row {
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.journey-sec {
  width: 100%;
  background: linear-gradient(180deg, #14418f 0%, #091d3f 100%);
  position: relative;
}
.journey-sec .sec-heading-wrap {
  max-width: 410px;
}
.journey-sec .patternBg-img-holder {
  width: 88.5%;
  left: -1%;
  bottom: -5%;
  position: absolute;
  max-width: 1100px;
  opacity: 0.4 !important;
}
.journey-sec .patternBg-img-holder img {
  width: 100%;
  height: auto;
}
.journey-sec .journey-content-wrap {
  width: 100%;
}
.journey-sec .journey-content-wrap .journey-slider-holder {
  width: 100%;
  padding-top: 15px;
}
.journey-sec .journey-content-wrap .journey-slider-holder .journeyYear-swiper-holder {
  width: 100%;
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
}
.journey-sec .journey-content-wrap .journey-slider-holder .journeyYear-swiper-holder .swiper-button-next:after,
.journey-sec .journey-content-wrap .journey-slider-holder .journeyYear-swiper-holder .swiper-rtl .swiper-button-prev:after {
  background-image: url(../images/about/arrow_next.svg);
  content: "";
  background-size: contain;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
}
.journey-sec .journey-content-wrap .journey-slider-holder .journeyYear-swiper-holder .swiper-button-prev:after,
.journey-sec .journey-content-wrap .journey-slider-holder .journeyYear-swiper-holder .swiper-rtl .swiper-button-next:after {
  background-image: url(../images/about/arrow_prev.svg);
  content: "";
  background-size: contain;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
}
.journey-sec .journey-content-wrap .journey-slider-holder .journeyYear-swiper-holder .swiper-button-next,
.journey-sec .journey-content-wrap .journey-slider-holder .journeyYear-swiper-holder .swiper-button-prev {
  width: 45px;
  height: 45px;
  line-height: 45px;
  padding: 0;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 0;
  color: #091E3F;
  transition: all ease-in-out 300ms;
  -webkit-transition: all ease-in-out 300ms;
  -moz-transition: all ease-in-out 300ms;
  -ms-transition: all ease-in-out 300ms;
  opacity: 1;
  border-radius: 100%;
}
@media screen and (max-width: 767px) {
  .journey-sec .journey-content-wrap .journey-slider-holder .journeyYear-swiper-holder .swiper-button-next,
  .journey-sec .journey-content-wrap .journey-slider-holder .journeyYear-swiper-holder .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}
.journey-sec .journey-content-wrap .journey-slider-holder .journeyYear-swiper-holder .swiper-button-next:after,
.journey-sec .journey-content-wrap .journey-slider-holder .journeyYear-swiper-holder .swiper-button-prev:after {
  font-size: 18px;
}
.journey-sec .journey-content-wrap .journey-slider-holder .journeyYear-swiper-holder .swiper-button-next:hover,
.journey-sec .journey-content-wrap .journey-slider-holder .journeyYear-swiper-holder .swiper-button-prev:hover {
  color: #091E3F;
}
.journey-sec .journey-content-wrap .journey-slider-holder .journeyYear-swiper-holder .swiper-button-next:not(.swiper-button-disabled),
.journey-sec .journey-content-wrap .journey-slider-holder .journeyYear-swiper-holder .swiper-button-prev:not(.swiper-button-disabled) {
  background-color: #ffffff;
}
.journey-sec .journey-content-wrap .journey-slider-holder .journeyYear-swiper-holder .swiper-button-next:not(.swiper-button-disabled):hover,
.journey-sec .journey-content-wrap .journey-slider-holder .journeyYear-swiper-holder .swiper-button-prev:not(.swiper-button-disabled):hover {
  background-color: #ffffff;
}
.journey-sec .journey-content-wrap .journey-slider-holder .journeyYear-swiper-holder .journeyYearSwiper {
  width: 100%;
  height: 90px;
  position: relative;
  padding-left: 25px;
  padding-right: 25px;
}
.journey-sec .journey-content-wrap .journey-slider-holder .journeyYear-swiper-holder .journeyYearSwiper:before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #495567;
  left: 0;
  right: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.journey-sec .journey-content-wrap .journey-slider-holder .journeyYear-swiper-holder .journeyYearSwiper .swiper-slide {
  cursor: pointer;
}
.journey-sec .journey-content-wrap .journey-slider-holder .journeyYear-swiper-holder .journeyYearSwiper .swiper-slide.swiper-slide-thumb-active .journeyYear-slide-item {
  transform: translateY(-18px);
}
.journey-sec .journey-content-wrap .journey-slider-holder .journeyYear-swiper-holder .journeyYearSwiper .swiper-slide.swiper-slide-thumb-active .journeyYear-slide-item .yearText {
  color: #4CDDD4;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  padding-bottom: 10px;
}
.journey-sec .journey-content-wrap .journey-slider-holder .journeyYear-swiper-holder .journeyYearSwiper .swiper-slide.swiper-slide-thumb-active .journeyYear-slide-item .dotStyle {
  width: 22px;
  height: 22px;
  background-color: #ffffff;
  box-shadow: 0 0 0 8px #4CDDD4;
  border: 6px solid #4CDDD4;
}
.journey-sec .journey-content-wrap .journey-slider-holder .journeyYear-swiper-holder .journeyYearSwiper .swiper-slide .journeyYear-slide-item {
  width: 100%;
  text-align: center;
  height: 75px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-11px);
}
.journey-sec .journey-content-wrap .journey-slider-holder .journeyYear-swiper-holder .journeyYearSwiper .swiper-slide .journeyYear-slide-item .yearText {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #949eb0;
  padding-bottom: 7px;
  transition: all 0.2s linear;
}
.journey-sec .journey-content-wrap .journey-slider-holder .journeyYear-swiper-holder .journeyYearSwiper .swiper-slide .journeyYear-slide-item .dotStyle {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #7a91b5;
  margin: 0 auto;
  transition: all 0.3s linear;
  border: 6px solid transparent;
}
.journey-sec .journey-content-wrap .journey-slider-holder .journeyInfoContent-swiper-holder {
  width: 100%;
}
.journey-sec .journey-content-wrap .journey-slider-holder .journeyInfoContent-swiper-holder .journeyInfoContent-slide-item {
  width: 100%;
  margin-top: 20px;
}
@media screen and (min-width: 992px) {
  .journey-sec .journey-content-wrap .journey-slider-holder .journeyInfoContent-swiper-holder .journeyInfoContent-slide-item {
    margin-top: 40px;
  }
}
.journey-sec .journey-content-wrap .journey-slider-holder .journeyInfoContent-swiper-holder .journeyInfoContent-slide-item .slide-item-container {
  width: 100%;
  max-width: 1085px;
  margin: 0 auto;
}
.journey-sec .journey-content-wrap .journey-slider-holder .journeyInfoContent-swiper-holder .journeyInfoContent-slide-item .slide-item-container .iconDscTextBox-item {
  width: 100%;
  max-width: 436px;
  margin: 0 auto;
}
.journey-sec .journey-content-wrap .journey-slider-holder .journeyInfoContent-swiper-holder .journeyInfoContent-slide-item .slide-item-container .iconDscTextBox-item .box-inner .icon-holder {
  width: 75px;
  height: 75px;
  flex-shrink: 0;
  border-radius: 12px;
  background-color: #4CDDD4;
}
@media screen and (min-width: 992px) {
  .journey-sec .journey-content-wrap .journey-slider-holder .journeyInfoContent-swiper-holder .journeyInfoContent-slide-item .slide-item-container .iconDscTextBox-item .box-inner .icon-holder {
    width: 88px;
    height: 88px;
  }
}
.journey-sec .journey-content-wrap .journey-slider-holder .journeyInfoContent-swiper-holder .journeyInfoContent-slide-item .slide-item-container .iconDscTextBox-item .box-inner .icon-holder .iconImg-box {
  width: 100%;
  height: 100%;
}
.journey-sec .journey-content-wrap .journey-slider-holder .journeyInfoContent-swiper-holder .journeyInfoContent-slide-item .slide-item-container .iconDscTextBox-item .box-inner .icon-holder .iconImg-box img {
  max-width: 100%;
  max-height: 100%;
  width: 80%;
  height: 80%;
  margin: 10%;
  -o-object-fit: contain;
     object-fit: contain;
}
.journey-sec .journey-content-wrap .journey-slider-holder .journeyInfoContent-swiper-holder .journeyInfoContent-slide-item .slide-item-container .iconDscTextBox-item .box-inner .dscContent-holder {
  flex: 0 1 auto;
  padding-left: 20px;
}
@media screen and (min-width: 992px) {
  .journey-sec .journey-content-wrap .journey-slider-holder .journeyInfoContent-swiper-holder .journeyInfoContent-slide-item .slide-item-container .iconDscTextBox-item .box-inner .dscContent-holder {
    padding-left: 30px;
  }
}
.journey-sec .journey-content-wrap .journey-slider-holder .journeyInfoContent-swiper-holder .journeyInfoContent-slide-item .slide-item-container .iconDscTextBox-item .box-inner .dscContent-holder .headingText {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}
@media screen and (max-width: 1199px) {
  .journey-sec .journey-content-wrap .journey-slider-holder .journeyInfoContent-swiper-holder .journeyInfoContent-slide-item .slide-item-container .iconDscTextBox-item .box-inner .dscContent-holder .headingText {
    font-size: 18px;
  }
}
.journey-sec .journey-content-wrap .journey-slider-holder .journeyInfoContent-swiper-holder .journeyInfoContent-slide-item .slide-item-container .iconDscTextBox-item .box-inner .dscContent-holder .dscText {
  margin-top: 6px;
}
.journey-sec .journey-content-wrap .journey-slider-holder .journeyInfoContent-swiper-holder .journeyInfoContent-slide-item .slide-item-container .iconDscTextBox-item .box-inner .dscContent-holder .dscText p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #8f98a8;
  margin: 0;
}

.ourTeam-sec {
  width: 100%;
  position: relative;
}
.ourTeam-sec .sec-heading-wrap {
  max-width: 425px;
}
.ourTeam-sec .ourTeam-content-wrap {
  width: 100%;
}

.ourTeam-info-item {
  width: 100%;
}
.ourTeam-info-item .inner-body {
  width: 100%;
  display: flex;
  height: 212px;
  position: relative;
}
@media screen and (max-width: 575px) {
  .ourTeam-info-item .inner-body {
    flex-direction: column;
    height: auto;
  }
}
.ourTeam-info-item .inner-body .arrowIconBox {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 16px;
  right: 15px;
  padding: 5px;
  line-height: 15px;
  transition: all 0.3s 0s linear;
}
.ourTeam-info-item .inner-body .arrowIconBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 575px) {
  .ourTeam-info-item .inner-body .arrowIconBox {
    display: none;
  }
}
.ourTeam-info-item .inner-body .ourTeam-img-block {
  width: 58%;
  height: 212px;
  flex-shrink: 0;
  transition: all 0.3s linear;
}
@media screen and (max-width: 575px) {
  .ourTeam-info-item .inner-body .ourTeam-img-block {
    width: 100%;
    height: 200px;
  }
}
.ourTeam-info-item .inner-body .ourTeam-img-block .img-holder {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  .ourTeam-info-item .inner-body .ourTeam-img-block .img-holder {
    border-radius: 12px 12px 0 0;
  }
}
.ourTeam-info-item .inner-body .ourTeam-img-block .img-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ourTeam-info-item .inner-body .ourTeam-dscContent-block {
  width: 42%;
  padding-left: 8px;
  height: 100%;
  flex: 0 1 auto;
  transition: all 0.3s linear;
}
@media screen and (max-width: 575px) {
  .ourTeam-info-item .inner-body .ourTeam-dscContent-block {
    width: 100%;
    padding-left: 0;
    height: auto;
  }
}
.ourTeam-info-item .inner-body .ourTeam-dscContent-block .inner-box {
  background-color: #EFF0F0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  .ourTeam-info-item .inner-body .ourTeam-dscContent-block .inner-box {
    border-radius: 0 0 12px 12px;
    overflow: auto;
    height: auto;
  }
}
.ourTeam-info-item .inner-body .ourTeam-dscContent-block .inner-box .headingInfoText {
  width: 100%;
}
.ourTeam-info-item .inner-body .ourTeam-dscContent-block .inner-box .headingInfoText .nameText {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #091E3F;
  margin: 0 0 2px;
}
.ourTeam-info-item .inner-body .ourTeam-dscContent-block .inner-box .headingInfoText .dText {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #737373;
  margin: 0;
}
.ourTeam-info-item .inner-body .ourTeam-dscContent-block .inner-box .dscText {
  width: 100%;
  padding-top: 10px;
  height: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s linear;
  transition-delay: 0s;
  overflow: hidden;
  transform: translateX(10px);
}
@media screen and (max-width: 575px) {
  .ourTeam-info-item .inner-body .ourTeam-dscContent-block .inner-box .dscText {
    overflow: auto;
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    height: auto;
  }
}
.ourTeam-info-item .inner-body .ourTeam-dscContent-block .inner-box .dscText p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}
.ourTeam-info-item .inner-body .ourTeam-dscContent-block .inner-box .dscText p strong {
  font-weight: 600;
}
@media screen and (min-width: 576px) {
  .ourTeam-info-item:hover .inner-body .arrowIconBox {
    transform: rotate(180deg);
    filter: brightness(0.1) invert(0.2);
  }
  .ourTeam-info-item:hover .inner-body .ourTeam-img-block {
    width: 40%;
  }
  .ourTeam-info-item:hover .inner-body .ourTeam-dscContent-block {
    width: 60%;
  }
  .ourTeam-info-item:hover .inner-body .ourTeam-dscContent-block .inner-box .dscText {
    height: 130px;
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.3s 0.4s linear, visibility 0.3s 0.4s linear, height 0.2s 0.2s linear, transform 0.7s 0.5s linear;
    overflow: auto;
  }
}

.missionVision-sec {
  width: 100%;
}
.missionVision-sec .missionVision-right-block .blockImg-wrap {
  border-radius: 12px;
}
.missionVision-sec .missionVision-right-block .blockImg-wrap .blockImg-holder {
  padding-top: 83.7563451777%;
  border-radius: 12px;
}
.missionVision-sec .missionVision-right-block .blockImg-wrap .blockImg-holder img {
  border-radius: 12px;
}
.missionVision-sec .missionVision-iconDscTextBox-holder {
  row-gap: 25px;
}
@media screen and (min-width: 1200px) {
  .missionVision-sec .missionVision-iconDscTextBox-holder {
    row-gap: 32px;
  }
}
.missionVision-sec .missionVision-iconDscTextBox-holder .iconDscTextBox-item .box-inner .icon-holder {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  margin-top: 4px;
}
.missionVision-sec .missionVision-iconDscTextBox-holder .iconDscTextBox-item .box-inner .icon-holder img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.missionVision-sec .missionVision-iconDscTextBox-holder .iconDscTextBox-item .box-inner .dscContent-holder {
  flex: 0 1 auto;
}
.missionVision-sec .missionVision-iconDscTextBox-holder .iconDscTextBox-item .box-inner .dscContent-holder .headingText {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 5px;
}
@media screen and (max-width: 1199px) {
  .missionVision-sec .missionVision-iconDscTextBox-holder .iconDscTextBox-item .box-inner .dscContent-holder .headingText {
    font-size: 16px;
  }
}
.missionVision-sec .missionVision-iconDscTextBox-holder .iconDscTextBox-item .box-inner .dscContent-holder .dscText p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #9eadc3;
  margin: 0;
}

.awards-sec {
  width: 100%;
  position: relative;
}
.awards-sec .awards-list-wrap {
  width: 100%;
}
.awards-sec .awards-list-wrap .awards-list-row + .awards-list-row {
  margin-top: 15px;
}
.awards-sec .awards-list-wrap .awards-list-row {
  width: 100%;
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 15px;
}
.awards-sec .awards-list-wrap-smScreen {
  width: 100%;
}
.awards-sec .awards-list-wrap-smScreen .swiper {
  padding-left: 15px;
  padding-right: 15px;
}
.awards-sec .awards-list-wrap-smScreen .swiper-slide {
  width: 185px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.awards-sec .awards-img-wrap {
  width: 185px;
  height: 152px;
  box-shadow: -5px 0 16px rgba(99, 119, 109, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1300px) {
  .awards-sec .awards-img-wrap {
    width: 200px;
  }
}
.awards-sec .awards-img-wrap .awards-img-holder {
  width: 100%;
  max-width: 150px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.awards-sec .awards-img-wrap .awards-img-holder img {
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.aboutCounter-sec {
  width: 100%;
  position: relative;
}
.aboutCounter-sec .backgroundImg-holder {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.7;
}
.aboutCounter-sec .backgroundImg-holder:after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(181.94deg, rgba(171, 196, 183, 0.117) -28.23%, rgba(171, 196, 183, 0.9) 38.49%);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
}
.aboutCounter-sec .backgroundImg-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutCounter-sec .aboutCounter-content-wrap {
  z-index: 2;
}
.aboutCounter-sec .aboutCounter-content-wrap .sec-heading-wrap {
  max-width: 472px;
}
.aboutCounter-sec .successStories-bannerBottom-counter-sec {
  margin-top: 0;
}
.aboutCounter-sec .successStories-bannerBottom-counter-sec .bannerBottom-counter-content {
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .aboutCounter-sec .successStories-bannerBottom-counter-sec .bannerBottom-counter-content {
    padding: 0 0;
  }
}
.aboutCounter-sec .successStories-bannerBottom-counter-sec .bannerBottom-counter-content .counter-content-block-holder .counter-content-block .counter-content .counter-infoText {
  padding-left: 0;
}

.innerPage-banner-sec.method-banner .banner-image-wrap::before {
  background-color: #091E3F;
  opacity: 0.65;
}
.innerPage-banner-sec.method-banner .banner-dsc-content {
  max-width: 768px;
}

.methodTopSec .sectionInner:after {
  content: "";
  display: table;
  clear: both;
}
.methodTopSec .leftPan {
  position: sticky;
  top: 60px;
  padding-left: 24px;
  border-left: 1px solid #ABC4B7;
  width: 284px;
  float: left;
}
@media (max-width: 991.5px) {
  .methodTopSec .leftPan {
    display: none;
  }
}
.methodTopSec .leftPan h2 {
  font-size: 20px;
  line-height: 28.4px;
  margin-bottom: 30px;
  font-weight: 600;
  color: #000000;
}
.methodTopSec .leftPan .scrollPyMenu {
  position: static;
  background: none;
}
.methodTopSec .leftPan .scrollPyMenu ul {
  list-style: none;
}
.methodTopSec .leftPan .scrollPyMenu ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 22.7px;
  margin-bottom: 28px;
  color: #949EB0;
  position: relative;
}
.methodTopSec .leftPan .scrollPyMenu ul li:last-child {
  margin-bottom: 0;
}
.methodTopSec .leftPan .scrollPyMenu ul li.active a:after {
  height: 100%;
}
.methodTopSec .leftPan .scrollPyMenu ul li a {
  color: #949EB0;
}
.methodTopSec .leftPan .scrollPyMenu ul li a:hover {
  color: #4CDDD4;
}
.methodTopSec .leftPan .scrollPyMenu ul li a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -24px;
  width: 2px;
  z-index: 1;
  background-color: #4CDDD4;
  margin: auto;
  display: block;
  height: 0;
  transition: 0.3s;
}
.methodTopSec .rightPan {
  width: calc(100% - 284px);
  padding-left: 23px;
  float: right;
}
@media (max-width: 991.5px) {
  .methodTopSec .rightPan {
    width: 100%;
    padding-left: 0;
  }
}
.methodTopSec .rightPan .dinFramework {
  position: relative;
  z-index: 0;
}
.methodTopSec .rightPan .dinFramework figure {
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-radius: 12px;
  padding-top: 48.275862069%;
  height: 0;
  width: 100%;
}
@media (max-width: 991.5px) {
  .methodTopSec .rightPan .dinFramework figure {
    border-radius: 12px 12px 0 0;
  }
}
.methodTopSec .rightPan .dinFramework figure img {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.methodTopSec .rightPan .dinFramework .contentBox {
  position: absolute;
  z-index: 1;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(9, 30, 63, 0.8980392157);
  padding: 24px 32px;
  border-radius: 8px;
  color: #949EB0;
  font-weight: 400;
}
@media (max-width: 991.5px) {
  .methodTopSec .rightPan .dinFramework .contentBox {
    border-radius: 0 0 8px 8px;
    position: static;
    padding: 25px 20px;
    background-color: #091E3F;
  }
}
.methodTopSec .rightPan .dinFramework .contentBox h2 {
  color: #ffffff;
}
.methodTopSec .rightPan .dinFramework .contentBox .dscText p {
  margin-bottom: 0;
}
.methodTopSec .rightPan .repeatSec {
  width: 100%;
}
.methodTopSec .rightPan .repeatSec .textBox {
  width: 100%;
}
.methodTopSec .rightPan .repeatSec .textBox h2 {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 12px;
  color: #091E3F;
}
@media screen and (min-width: 576px) {
  .methodTopSec .rightPan .repeatSec .textBox h2 {
    font-size: 28px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .methodTopSec .rightPan .repeatSec .textBox h2 {
    font-size: 30px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 992px) {
  .methodTopSec .rightPan .repeatSec .textBox h2 {
    font-size: 30px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1200px) {
  .methodTopSec .rightPan .repeatSec .textBox h2 {
    font-size: 32px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1400px) {
  .methodTopSec .rightPan .repeatSec .textBox h2 {
    font-size: 32px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1800px) {
  .methodTopSec .rightPan .repeatSec .textBox h2 {
    font-size: 32px;
    line-height: 1.3;
  }
}
.methodTopSec .rightPan .repeatSec .textBox h3 {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (min-width: 576px) {
  .methodTopSec .rightPan .repeatSec .textBox h3 {
    font-size: 24px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .methodTopSec .rightPan .repeatSec .textBox h3 {
    font-size: 26px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  .methodTopSec .rightPan .repeatSec .textBox h3 {
    font-size: 26px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1200px) {
  .methodTopSec .rightPan .repeatSec .textBox h3 {
    font-size: 28px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1400px) {
  .methodTopSec .rightPan .repeatSec .textBox h3 {
    font-size: 28px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1800px) {
  .methodTopSec .rightPan .repeatSec .textBox h3 {
    font-size: 28px;
    line-height: 1.4;
  }
}
.methodTopSec .rightPan .repeatSec .textBox h4 {
  font-size: 21px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (min-width: 576px) {
  .methodTopSec .rightPan .repeatSec .textBox h4 {
    font-size: 21px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .methodTopSec .rightPan .repeatSec .textBox h4 {
    font-size: 24px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 992px) {
  .methodTopSec .rightPan .repeatSec .textBox h4 {
    font-size: 24px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1200px) {
  .methodTopSec .rightPan .repeatSec .textBox h4 {
    font-size: 24px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1400px) {
  .methodTopSec .rightPan .repeatSec .textBox h4 {
    font-size: 24px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1800px) {
  .methodTopSec .rightPan .repeatSec .textBox h4 {
    font-size: 24px;
    line-height: 1.4;
  }
}
.methodTopSec .rightPan .repeatSec .textBox p {
  font-size: 18px;
  line-height: 25.6px;
  margin-bottom: 18px;
}
.methodTopSec .rightPan .repeatSec .textBox p:last-child {
  margin-bottom: 0;
}
.methodTopSec .rightPan .repeatSec .textBox ul,
.methodTopSec .rightPan .repeatSec .textBox ol {
  list-style: none;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}
.methodTopSec .rightPan .repeatSec .textBox ul li,
.methodTopSec .rightPan .repeatSec .textBox ol li {
  background: url("../images/icons/check_circle_red.svg") no-repeat 0 2px;
  padding-left: 32px;
  margin-bottom: 14px;
}
.methodTopSec .rightPan .repeatSec .textBox ul li:last-child,
.methodTopSec .rightPan .repeatSec .textBox ol li:last-child {
  margin-bottom: 0;
}
.methodTopSec .rightPan .repeatSec .textBox .tableCont .accordianNew .accList {
  margin-bottom: 18px;
}
.methodTopSec .rightPan .repeatSec .textBox .tableCont .accordianNew .accList .accTitle {
  cursor: pointer;
}
.methodTopSec .rightPan .repeatSec .textBox .tableCont .accordianNew .accList .accTitle h3 {
  font-size: 18px;
  line-height: 25.6px;
  font-weight: 700;
  margin-bottom: 0;
  background-image: url(../images/faq/icons/add.svg);
  background-size: 13px auto;
  background-repeat: no-repeat;
  background-position: right 6px;
  padding-right: 20px;
}
.methodTopSec .rightPan .repeatSec .textBox .tableCont .accordianNew .accList .accTitle.active h3 {
  background-image: url(../images/faq/icons/remove-1.svg);
  background-position: right 13px;
}
.methodTopSec .rightPan .repeatSec .textBox .tableCont .accordianNew .accList .accCont {
  padding-top: 18px;
}
.methodTopSec .rightPan .repeatSec .textBox .tableCont .accordianNew .accList .accCont:first-child {
  padding-top: 0;
}
.methodTopSec .rightPan .repeatSec .textBox .tableCont .accordianNew .accList:last-child {
  margin-bottom: 0;
}
.methodTopSec .rightPan .repeatSec .textBox .tableCont .listItem {
  display: flex;
  color: #091E3F;
  line-height: 1;
  margin-bottom: 12px;
}
.methodTopSec .rightPan .repeatSec .textBox .tableCont .listItem:last-child {
  margin-bottom: 0;
}
.methodTopSec .rightPan .repeatSec .textBox .tableCont .listItem figure {
  margin-top: 4px;
}
.methodTopSec .rightPan .repeatSec .textBox .tableCont .listItem figure img {
  width: 20px;
  height: 20px;
}
.methodTopSec .rightPan .repeatSec .textBox .tableCont .listItem p {
  line-height: 28px;
  font-weight: 600;
  font-size: 20px;
  width: calc(100% - 36px);
  margin-left: auto;
}
.methodTopSec .rightPan .repeatSec .imageBox {
  width: calc(50% - 26px);
}
@media (max-width: 767.5px) {
  .methodTopSec .rightPan .repeatSec .imageBox {
    width: 100%;
  }
}
.methodTopSec .rightPan .repeatSec .imageBox figure {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 80.1401869159%;
  border-radius: 12px;
}
.methodTopSec .rightPan .repeatSec .imageBox figure img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.processWork .sec-heading-wrap {
  max-width: 910px;
  margin-bottom: 40px;
}
.processWork .sec-heading-wrap.w-100 {
  max-width: 100%;
}
@media (max-width: 991.9px) {
  .processWork .processRow {
    flex-wrap: wrap;
  }
}
.processWork .sectionMain {
  position: relative;
  z-index: 0;
}
.processWork .sectionMain .processArrow {
  position: absolute;
  right: 0;
  top: -90px;
  z-index: 1;
  width: auto;
  justify-content: end;
}
@media (max-width: 991.9px) {
  .processWork .sectionMain .processArrow {
    position: static;
    justify-content: inherit;
    margin-bottom: 30px;
  }
}
.processWork .sectionMain .listItem {
  width: 25%;
  transition: 0.5s;
}
@media (max-width: 991.9px) {
  .processWork .sectionMain .listItem {
    width: 50%;
  }
}
@media (max-width: 767.9px) {
  .processWork .sectionMain .listItem {
    width: 100% !important;
  }
}
.processWork .sectionMain .listItem:hover {
  width: 500px;
}
@media (max-width: 1299.5px) {
  .processWork .sectionMain .listItem:hover {
    width: 402px;
  }
}
@media (max-width: 1199.5px) {
  .processWork .sectionMain .listItem:hover {
    width: 458px;
  }
}
@media (max-width: 991.9px) {
  .processWork .sectionMain .listItem:hover {
    width: 50%;
  }
}
@media (max-width: 767.9px) {
  .processWork .sectionMain .listItem:hover {
    width: 100%;
  }
}
.processWork .sectionMain .listItem:hover .listInner figure:after {
  opacity: 0.3;
}
.processWork .sectionMain .listItem:hover .listInner .listContent .textBox {
  padding-top: 13px;
  font-size: 16px;
  line-height: 24.7px;
  width: 100%;
}
.processWork .sectionMain .listItem:hover .listInner .listContent .linkArrow {
  height: 0;
  width: 0;
  margin-top: 0;
}
.processWork .sectionMain .listItem.small {
  width: 214px;
}
.processWork .sectionMain .listItem .listInner {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 348px;
  background-color: #e7edea;
}
.processWork .sectionMain .listItem .listInner .backgroundImg {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  height: 348px;
}
.processWork .sectionMain .listItem .listInner .backgroundImg:before {
  content: "";
  background: linear-gradient(11.54deg, #07162D 7.59%, rgba(24, 79, 165, 0.25) 88.46%);
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.processWork .sectionMain .listItem .listInner .backgroundImg:after {
  content: "";
  background: #091E3F;
  transition: 0.3s;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.processWork .sectionMain .listItem .listInner .backgroundImg img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.processWork .sectionMain .listItem .listInner .listContent {
  pointer-events: none;
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 33px;
  color: #ffffff;
  line-height: 1;
}
.processWork .sectionMain .listItem .listInner .listContent .logoImg {
  width: 100%;
  max-width: 150px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.processWork .sectionMain .listItem .listInner .listContent .logoImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
  -o-object-position: bottom left;
     object-position: bottom left;
}
.processWork .sectionMain .listItem .listInner .listContent h3 {
  font-size: 24px;
  line-height: 34px;
  color: #091E3F;
}
.processWork .sectionMain .listItem .listInner .listContent .linkArrow {
  margin-top: 13px;
  display: block;
  overflow: hidden;
  transition: 0.3s;
  height: 14px;
  width: 28px;
}
.processWork .sectionMain .listItem .listInner .listContent .linkArrow img {
  filter: brightness(1) invert(1);
}
.processWork .sectionMain .listItem .listInner .listContent .textBox {
  font-weight: 400;
  overflow: hidden;
  transition: 0.5s;
  padding-top: 0;
  font-size: 0;
  line-height: 0px;
  color: #484D55;
}
.processWork .sectionMain .listItem .listInner .listContent .textBox p {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin-bottom: 0;
  color: #484D55;
}

.processRow {
  margin: 0 -12px;
}
.processRow .listItem {
  margin-bottom: 30px;
  padding: 0 12px;
}
.processRow .listItem:hover ~ .listItem {
  width: 310px;
}

.pb001-sec {
  width: 100%;
  position: relative;
}
.pb001-sec .sec-heading-wrap {
  max-width: 425px;
}
.pb001-sec .pb001-content-wrap .blockImg-wrap {
  border-radius: 10px;
}
.pb001-sec .pb001-content-wrap .blockImg-wrap .blockImg-holder {
  padding-top: 120.1388888889%;
  border-radius: 10px;
}
.pb001-sec .pb001-content-wrap .pb001-iconDscTextBox-holder {
  row-gap: 17px;
}
@media screen and (min-width: 1200px) {
  .pb001-sec .pb001-content-wrap .pb001-iconDscTextBox-holder {
    row-gap: 24px;
  }
}
.pb001-sec .pb001-content-wrap .pb001-iconDscTextBox-holder .iconDscTextBox-item .box-inner .icon-holder {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}
.pb001-sec .pb001-content-wrap .pb001-iconDscTextBox-holder .iconDscTextBox-item .box-inner .icon-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.pb001-sec .pb001-content-wrap .pb001-iconDscTextBox-holder .iconDscTextBox-item .box-inner .dscContent-holder {
  flex: 0 1 auto;
}
.pb001-sec .pb001-content-wrap .pb001-iconDscTextBox-holder .iconDscTextBox-item .box-inner .dscContent-holder .headingText {
  color: #091E3F;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 5px;
}
@media screen and (max-width: 1199px) {
  .pb001-sec .pb001-content-wrap .pb001-iconDscTextBox-holder .iconDscTextBox-item .box-inner .dscContent-holder .headingText {
    font-size: 16px;
  }
}
.pb001-sec .pb001-content-wrap .pb001-iconDscTextBox-holder .iconDscTextBox-item .box-inner .dscContent-holder .dscText p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #737373;
  margin: 0;
}

.whyUsSec.pb002-sec {
  background: linear-gradient(180deg, #abc4b7 -39.57%, #ffffff 49.54%, #abc4b7 113.51%);
}
.whyUsSec.pb002-sec .sec-heading-wrap {
  max-width: 733px;
}
.whyUsSec.pb002-sec .whyUsImage-wrap .workWithImg .blockImg-holder {
  padding-top: 61.0576923077%;
  border-radius: 0;
}

.cta-sec.pb-cta-sec:after {
  background-color: rgba(139, 149, 166, 0.5);
}

.ourModels-sec {
  width: 100%;
  position: relative;
}
.ourModels-sec .sec-heading-wrap {
  max-width: 750px;
  position: relative;
  z-index: 1;
}
.ourModels-sec .patternBg-img-holder {
  width: 427px;
  left: 0;
  bottom: auto;
  top: 0;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .ourModels-sec .patternBg-img-holder {
    width: 290px;
  }
}
.ourModels-sec .patternBg-img-holder img {
  width: 100%;
  height: auto;
}
.ourModels-sec .ourModels-content-wrap {
  width: 100%;
  position: relative;
  z-index: 1;
}
.ourModels-sec .ourModels-content-wrap .accordion.ourModels-accordion .accordion-item {
  border-color: #949EB0;
  background-color: transparent;
}
.ourModels-sec .ourModels-content-wrap .accordion.ourModels-accordion .accordion-item .accordion-header .accordion-button {
  padding-left: 0;
  padding-right: 0;
  padding-top: 22px;
  padding-bottom: 22px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  color: #ACACAC;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .ourModels-sec .ourModels-content-wrap .accordion.ourModels-accordion .accordion-item .accordion-header .accordion-button {
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 20px;
  }
}
.ourModels-sec .ourModels-content-wrap .accordion.ourModels-accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.ourModels-sec .ourModels-content-wrap .accordion.ourModels-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  padding-bottom: 20px;
  color: #ffffff;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .ourModels-sec .ourModels-content-wrap .accordion.ourModels-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    padding-bottom: 10px;
  }
}
.ourModels-sec .ourModels-content-wrap .accordion.ourModels-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url(../images/icons/down-arrow-white.svg);
  transform-origin: 11px 4px;
  filter: none;
}
.ourModels-sec .ourModels-content-wrap .accordion.ourModels-accordion .accordion-item .accordion-header .accordion-button::after {
  background-image: url(../images/icons/down-arrow-white.svg);
  background-size: 20px auto;
  filter: brightness(0.4) invert(1);
}
.ourModels-sec .ourModels-content-wrap .accordion.ourModels-accordion .accordion-item .accordion-body {
  padding: 0 0 30px;
}
.ourModels-sec .ourModels-content-wrap .accordion.ourModels-accordion .accordion-item .accordion-body .accordion-body-inner .ourModels-accordion-dscBlockList {
  width: 100%;
  margin-top: 35px;
}
.ourModels-sec .ourModels-content-wrap .accordion.ourModels-accordion .accordion-item .accordion-body .accordion-body-inner .ourModels-accordion-dscBlockList .ourUsps-slide-item .dscText-holder .headingText {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}
.ourModels-sec .ourModels-content-wrap .accordion.ourModels-accordion .accordion-item .accordion-body .accordion-body-inner .ourModels-accordion-dscBlockList .ourUsps-slide-item .dscText-holder .dscText p {
  font-size: 16px;
}
.ourModels-sec .ourModels-content-wrap .accordion.ourModels-accordion .accordion-item .accordion-body .accordion-body-inner .dscText > *:last-child {
  margin-bottom: 0;
}
.ourModels-sec .ourModels-content-wrap .accordion.ourModels-accordion .accordion-item .accordion-body .accordion-body-inner .dscText p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 25px;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .ourModels-sec .ourModels-content-wrap .accordion.ourModels-accordion .accordion-item .accordion-body .accordion-body-inner .dscText p {
    font-size: 16px;
  }
}
.ourModels-sec .ourModels-content-wrap .accordion.ourModels-accordion .accordion-item .accordion-body .accordion-body-inner .dscText ul {
  list-style: none;
  margin: 0 0 25px;
  padding: 0;
}
.ourModels-sec .ourModels-content-wrap .accordion.ourModels-accordion .accordion-item .accordion-body .accordion-body-inner .dscText ul li {
  padding-left: 25px;
  position: relative;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .ourModels-sec .ourModels-content-wrap .accordion.ourModels-accordion .accordion-item .accordion-body .accordion-body-inner .dscText ul li {
    font-size: 16px;
  }
}
.ourModels-sec .ourModels-content-wrap .accordion.ourModels-accordion .accordion-item .accordion-body .accordion-body-inner .dscText ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  will-change: transform;
  background-color: #ffffff;
}
.ourModels-sec .ourModels-content-wrap .accordion.ourModels-accordion .accordion-item .accordion-body .accordion-body-inner .dscText ul li:first-child {
  margin-top: 0;
}
.ourModels-sec .ourModels-content-wrap .accordion.ourModels-accordion .accordion-item .accordion-body .accordion-body-inner .dscText ul li p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .ourModels-sec .ourModels-content-wrap .accordion.ourModels-accordion .accordion-item .accordion-body .accordion-body-inner .dscText ul li p {
    font-size: 16px;
  }
}

.pb004-sec {
  width: 100%;
  position: relative;
}
.pb004-sec .patternBg-img-holder {
  width: 290px;
  left: 0;
  bottom: auto;
  top: 30px;
  position: absolute;
}
@media screen and (min-width: 576px) {
  .pb004-sec .patternBg-img-holder {
    width: 320px;
  }
}
@media screen and (min-width: 768px) {
  .pb004-sec .patternBg-img-holder {
    width: 400px;
  }
}
@media screen and (min-width: 992px) {
  .pb004-sec .patternBg-img-holder {
    width: 433px;
  }
}
.pb004-sec .patternBg-img-holder img {
  width: 100%;
  height: auto;
}
.pb004-sec .pb004-dscContent-block {
  max-width: 570px;
  width: 100%;
}
.pb004-sec .pb004-dscContent-block .icon-circleBox {
  width: 64px;
  height: 64px;
  padding: 6px;
  background-color: #ffffff;
  border-radius: 100%;
  margin-bottom: 20px;
  box-shadow: -3px 9px 31px 0px rgba(196, 224, 209, 0.7);
}
.pb004-sec .pb004-dscContent-block .icon-circleBox .icon-holder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pb004-sec .pb004-dscContent-block .icon-circleBox .icon-holder img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 28px;
}
.pb004-sec .pb004-dscContent-block .counter-content {
  width: 100%;
  padding-left: 30px;
}
@media screen and (max-width: 1199px) {
  .pb004-sec .pb004-dscContent-block .counter-content {
    padding-left: 20px;
  }
}
.pb004-sec .pb004-dscContent-block .counter-content .counter-infoText p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #091E3F;
  margin: 0;
}
@media screen and (max-width: 575px) {
  .pb004-sec .pb004-dscContent-block .counter-content .counter-infoText p {
    font-size: 16px;
    line-height: 20px;
  }
}
.pb004-sec .pb004-dscContent-block .counter-content .counter-number {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #091E3F;
}
@media screen and (min-width: 1200px) {
  .pb004-sec .pb004-dscContent-block .counter-content .counter-number {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .pb004-sec .pb004-dscContent-block .counter-content .counter-number {
    text-align: left;
    width: 80px;
  }
}
.pb004-sec .pb004-img-block {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .pb004-sec .pb004-img-block .blockImg-wrap {
    max-width: 540px;
  }
}
.pb004-sec .pb004-img-block .blockImg-wrap .blockImg-holder {
  padding-top: 93.3333333333%;
}

/* ======================
END OF MAIN SCSS FILE FOR ASTRO WEBSITE
====================== *//*# sourceMappingURL=style.css.map */